@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Jost:wght@300;400;500;600&family=Alex+Brush&display=swap');

:root {
  --color-bg: #EDE7DC;
  --color-bg-alt: #DCD2C0;
  --color-text: #35322B;
  --color-text-light: #625D50;
  --color-accent: #A8724F;
  --color-accent-2: #7C8A70;
  --color-dark: #2B2822;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.25;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

.eyebrow {
  display: block;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--color-accent);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 38px;
  border: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .3s ease;
  background: transparent;
}
.btn-light { color: #fff; }
.btn-light:hover { background: #fff; color: var(--color-dark); }
.btn-dark { color: var(--color-dark); border-color: var(--color-dark); }
.btn-dark:hover { background: var(--color-dark); color: #fff; }
.btn-accent { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-accent:hover { opacity: .85; }
.btn-small { padding: 10px 22px; }
.btn-group { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo span { color: var(--color-accent); }
.main-nav ul { display: flex; gap: 42px; }
.main-nav a {
  font-size: 16.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--color-accent); }

.nav-right { display: flex; align-items: center; gap: 26px; }
.lang-toggle { display: flex; gap: 6px; align-items: center; }
.lang-toggle button {
  background: none; border: none;
  font-size: 18px; letter-spacing: 1px;
  color: var(--color-text-light);
  padding: 4px 6px;
  border-bottom: 1px solid transparent;
}
.lang-toggle button.active { color: var(--color-dark); font-weight: 500; border-bottom-color: var(--color-accent); }
.lang-toggle .divider { color: rgba(0,0,0,0.2); font-size: 17px; }
.site-header .btn { font-size: 18px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span { width: 22px; height: 1px; background: var(--color-dark); transition: .3s; }

/* ---------- Placeholder images ---------- */
.img-placeholder {
  position: relative;
  background: linear-gradient(135deg, #efe8d9, #e2d9c5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.035) 0 2px, transparent 2px 16px);
}
.img-placeholder .placeholder-label {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #9c9182;
}
.img-placeholder .placeholder-label svg { width: 30px; height: 30px; margin-bottom: 8px; opacity: .55; }
.img-placeholder .placeholder-label span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ratio-hero { aspect-ratio: 16 / 9; }
.ratio-portrait { aspect-ratio: 4 / 5; }
.ratio-square { aspect-ratio: 1 / 1; }
.ratio-wide { aspect-ratio: 3 / 2; }
.ratio-banner { aspect-ratio: 21 / 8; }

/* ---------- Real photos (portfolio, hero, editorial) ---------- */
.photo-fill { position: relative; overflow: hidden; background: var(--color-bg-alt); }
.photo-fill img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.portfolio-photo:hover img { transform: scale(1.045); }
.photo-cycle .cycle-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
}
.photo-cycle .cycle-slide.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .photo-cycle .cycle-slide { transition: none; }
  .photo-cycle .cycle-slide:not(:first-child) { display: none; }
  .photo-cycle .cycle-slide:first-child { opacity: 1; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s cubic-bezier(.19,1,.22,1), transform 1s cubic-bezier(.19,1,.22,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Badges ---------- */
.badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--color-accent-2);
  color: #fff;
  font-weight: 500;
  vertical-align: middle;
}
.service-card .badge { margin-left: 10px; }

.badge-monthly { background: #A85C4C; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #2b2a25, #171610);
}
.hero .photo-fill { position: absolute; inset: 0; }
.hero .photo-fill img { opacity: .35; filter: saturate(.85); }
.hero .photo-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,22,17,0.55), rgba(24,22,17,0.88));
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 720px; padding: 0 24px; }
.hero-content .eyebrow { color: var(--color-accent); }
.hero-content h1 { font-size: 54px; color: #fff; margin-bottom: 22px; }
.hero-content p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 40px; font-weight: 300; }

/* ---------- Service area banner ---------- */
.service-area-banner { background: var(--color-accent); color: #fff; }
.service-area-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0;
  text-align: center;
  font-size: 13.5px;
  letter-spacing: .3px;
}
.service-area-inner svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 170px 0 90px;
  text-align: center;
  background: var(--color-bg-alt);
}
.page-header h1 { font-size: 44px; margin-bottom: 16px; }
.page-header p { color: var(--color-text-light); max-width: 560px; margin: 0 auto; }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
section.tight { padding: 80px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head.wide { max-width: 820px; }
.section-head h2 { font-size: 36px; }
.section-head p { color: var(--color-text-light); margin-top: 16px; font-size: 15px; }
.bg-alt { background: var(--color-bg-alt); }

/* ---------- Portfolio grid (homepage teaser) ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.portfolio-item figcaption { margin-top: 16px; text-align: left; }
.portfolio-item .restaurant-name { font-family: var(--font-heading); font-size: 17px; display: block; }
.portfolio-item .location {
  font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--color-text-light); margin-top: 4px; display: block;
}

/* ---------- Portfolio scroll galleries ---------- */
.portfolio-section-head { margin-bottom: 34px; }
.portfolio-section-head h2 { font-size: 32px; }
.scroll-block { margin-bottom: 54px; }
.scroll-block:last-child { margin-bottom: 0; }
.scroll-label {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 18px;
}
.scroll-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) transparent;
}
.scroll-row::-webkit-scrollbar { height: 6px; }
.scroll-row::-webkit-scrollbar-track { background: transparent; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--color-bg-alt); border-radius: 10px; }
.scroll-item {
  flex: 0 0 auto;
  height: 380px;
  scroll-snap-align: start;
  background: var(--color-bg-alt);
  overflow: hidden;
}
.scroll-item img { height: 100%; width: auto; display: block; }
.section-footer { text-align: center; margin-top: 60px; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.service-card {
  background: #fff;
  padding: 46px 34px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all .3s ease;
}
.service-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(0,0,0,0.06);
}
.service-card .service-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.service-card .icon { width: 30px; height: 30px; color: var(--color-accent); flex-shrink: 0; }
.service-card h3 { font-size: 18px; margin-bottom: 0; }
.service-card .service-badge-row { display: flex; justify-content: center; margin-bottom: 14px; }
.service-card p { font-size: 14px; color: var(--color-text-light); }
.service-card.featured { background: var(--color-bg-alt); border-color: var(--color-accent); }

/* ---------- Services page: centered blocks ---------- */
.services-centered { max-width: 1080px; margin: 0 auto; }
.service-block { text-align: center; }
.service-block .icon {
  width: 42px; height: 42px;
  color: var(--color-accent);
  margin: 0 auto 24px;
  display: block;
}
.service-block h3 {
  font-size: 27px;
  margin-bottom: 12px;
}
.service-badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.service-block p {
  color: var(--color-text-light);
  font-size: 15.5px;
  margin: 0 auto 26px;
  max-width: 1040px;
}
.service-block p.service-price {
  color: var(--color-accent);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}
.service-highlights {
  text-align: center;
  max-width: none;
  width: 100%;
}
.service-highlights li {
  display: inline;
  font-size: 11.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-text-light);
  line-height: 1.9;
}
.service-highlights li:nth-child(1)::after {
  content: '·';
  display: inline-block;
  color: var(--color-accent);
  margin: 0 16px;
  font-size: 15px;
  vertical-align: middle;
}
.service-highlights li:last-child {
  display: block;
  margin-top: 6px;
}
.service-highlights li:last-child::before {
  content: '·';
  display: inline-block;
  color: var(--color-accent);
  margin-right: 16px;
  font-size: 15px;
  vertical-align: middle;
}

.service-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 380px;
  margin: 78px auto;
}
.service-divider::before,
.service-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-bg-alt);
}
.service-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  margin: 0 20px;
  flex-shrink: 0;
}

/* ---------- About / philosophy section ---------- */
.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split-block .split-text { margin-top: -34px; }
.split-block.reverse .split-photo { order: 2; }
.split-block.reverse .split-text { order: 1; }
.split-text h2 { margin-bottom: 26px; }
.split-text p { color: var(--color-text-light); font-size: 15.5px; margin-bottom: 20px; }
.split-text p:last-of-type { margin-bottom: 0; }
.split-text .signature { margin-top: 22px; text-align: right; font-family: 'Alex Brush', cursive; font-size: 42px; line-height: 1; color: var(--color-dark); }
.split-text .signature span { display: block; font-family: var(--font-body); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-text-light); margin-top: 8px; }

/* ---------- Value prop / stats ---------- */
.value-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.value-text p { color: var(--color-text-light); font-size: 15.5px; margin-bottom: 28px; }
.value-points { display: grid; gap: 18px; }
.value-point { display: flex; gap: 16px; align-items: flex-start; }
.value-point .icon { width: 24px; height: 24px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.value-point span { font-size: 14.5px; }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.process-step .step-number {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--color-text-light); }

/* ---------- Contact section ---------- */
.contact-section { background: var(--color-dark); color: #fff; }
.contact-section .section-head h2 { color: #fff; }
.contact-section .section-head p { color: rgba(255,255,255,0.55); }

form.contact-form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-group input, .form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 10px 2px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--color-accent); }
.form-group textarea { resize: vertical; min-height: 110px; }
.checkbox-group, .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.checkbox-option {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  font-size: 14px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  cursor: pointer;
  color: rgba(255,255,255,0.75) !important;
}
.checkbox-option input { width: auto; border: none; accent-color: var(--color-accent); cursor: pointer; }
.conditional-input { display: none; margin-top: 4px; }
.conditional-input.show { display: block; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-hint { grid-column: 1 / -1; margin-top: -6px; font-size: 12.5px; color: rgba(255,255,255,0.45); }
.form-submit { grid-column: 1 / -1; text-align: center; margin-top: 6px; }
.form-status { grid-column: 1 / -1; text-align: center; font-size: 13px; color: #e8a2a2; display: none; }
.form-success { display: none; text-align: center; padding: 30px 0; }
.form-success.show { display: block; }
.form-success h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,0.6); }
.contact-form.hide { display: none; }

/* Contact page split layout */
.contact-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas: "form full" "form extra";
  column-gap: 80px;
  row-gap: 0;
}
.contact-form-wrap { grid-area: form; }
.contact-info { grid-area: full; }
.contact-extra { grid-area: extra; }
.contact-info-brief { display: none; }
.contact-info h3, .contact-info-brief h3 { font-size: 22px; margin-bottom: 20px; }
.contact-info p, .contact-info-brief p { color: var(--color-text-light); margin-bottom: 28px; font-size: 14.5px; }
.urgent-note { margin-top: -6px; margin-bottom: 14px; }
.whatsapp-btn { margin-bottom: 28px; }
.contact-section .contact-alt-note { text-align: center; color: rgba(255,255,255,0.55); font-size: 13.5px; margin-top: 36px; margin-bottom: 12px; }
.contact-section .whatsapp-btn { display: block; width: fit-content; margin: 0 auto; }
.contact-info-item { margin-bottom: 22px; }
.contact-info-item .label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--color-text-light); margin-bottom: 6px; display: block;
}
.contact-info-item a, .contact-info-item span.value { font-size: 15.5px; }
.contact-split .contact-form { max-width: none; }
.contact-split .form-group label { color: rgba(0,0,0,0.5); }
.contact-split .checkbox-option { color: var(--color-dark) !important; }
.contact-split .form-group input, .contact-split .form-group textarea {
  color: var(--color-dark);
  border-bottom: 1px solid rgba(0,0,0,0.18);
}
.contact-split .form-group input::placeholder, .contact-split .form-group textarea::placeholder { color: rgba(0,0,0,0.3); }
.contact-split .form-hint { color: rgba(0,0,0,0.4); }
.contact-split .form-success h3 { color: var(--color-dark); }
.contact-split .form-success p { color: var(--color-text-light); }

/* ---------- FAQ ---------- */
.faq-section { background: var(--color-bg-alt); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { padding: 26px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 18px; margin-bottom: 10px; }
.faq-item p { color: var(--color-text-light); font-size: 14.5px; line-height: 1.65; }
body.page-contact .faq-item h3,
body.page-services .faq-item h3 { font-size: 22px; }
body.page-contact .faq-item p,
body.page-services .faq-item p { font-size: 17px; }
@media (max-width: 760px) {
  body.page-contact .faq-item h3,
  body.page-services .faq-item h3 { font-size: 19px; }
  body.page-contact .faq-item p,
  body.page-services .faq-item p { font-size: 15px; }
}

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: var(--color-bg-alt); }
.cta-band h2 { font-size: 32px; margin-bottom: 24px; }

/* ---------- Footer ---------- */
footer { padding: 60px 0 40px; border-top: 1px solid rgba(0,0,0,0.06); }
.footer-inner { text-align: center; }
.footer-inner .logo { justify-content: center; margin-bottom: 16px; display: inline-block; }
.footer-inner p { color: var(--color-text-light); font-size: 13.5px; max-width: 420px; margin: 0 auto 22px; }
.footer-social { display: flex; justify-content: center; gap: 24px; margin-bottom: 26px; font-size: 13px; letter-spacing: .5px; }
.footer-social a { color: var(--color-text-light); }
.footer-social a:hover { color: var(--color-accent); }
.copyright { font-size: 12px; color: var(--color-text-light); opacity: .7; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .scroll-item { height: 320px; }
  .service-divider { margin: 56px auto; max-width: 260px; }
  .value-block, .split-block { grid-template-columns: 1fr; gap: 40px; }
  .contact-split {
    grid-template-columns: 1fr;
    grid-template-areas: "brief" "form" "extra";
    gap: 40px;
  }
  .contact-info { display: none; }
  .contact-info-brief { display: block; }
  .process-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 760px) {
  .nav-wrap { padding: 16px 24px; }
  .logo { font-size: 16px; letter-spacing: 0.3px; }
  .nav-right { gap: 12px; }
  .lang-toggle { gap: 4px; }
  .lang-toggle button { font-size: 14px; }
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 10px 24px 20px; }
  .main-nav ul li { border-bottom: 1px solid rgba(0,0,0,0.05); }
  .main-nav ul li a { display: block; padding: 14px 0; }
  .nav-right .btn-small { display: none; }
  .menu-toggle { display: flex; }
  .hero-content h1 { font-size: 34px; }
  .page-header { padding: 130px 0 60px; }
  .page-header h1 { font-size: 32px; }
  section { padding: 70px 0; }
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .scroll-item { height: 240px; }
  form.contact-form { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 28px; }
  .service-block h3 { font-size: 22px; }
  /* Any element with an inline nowrap style (footer taglines, section
     headings) should wrap normally on mobile instead of overflowing. */
  [style*="white-space: nowrap"],
  [style*="white-space:nowrap"] { white-space: normal !important; }
}

/* ---------- Services & Contact pages: fonts sized up +6px ---------- */
body.page-services,
body.page-contact {
  font-size: 22px;
}
body.page-services .btn,
body.page-contact .btn { font-size: 18px; }
body.page-services .page-header h1,
body.page-contact .page-header h1 { font-size: 44px; }
body.page-services .footer-inner p,
body.page-contact .footer-inner p { font-size: 19.5px; max-width: 850px; white-space: nowrap; }
body.page-services .page-header p,
body.page-contact .page-header p { font-size: 16px; max-width: 1050px; white-space: nowrap; }
body.page-services .eyebrow,
body.page-contact .eyebrow { font-size: 12px; }
body.page-services .footer-social,
body.page-contact .footer-social { font-size: 19px; }
body.page-services .copyright,
body.page-contact .copyright { font-size: 18px; }

body.page-services .badge { font-size: 16px; }
body.page-services .cta-band h2 { font-size: 38px; }
body.page-services .service-block h3 { font-size: 33px; }
body.page-services .service-block p { font-size: 21.5px; }
body.page-services .service-block p.service-price { font-size: 19.5px; }
body.page-services .service-highlights li { font-size: 12.5px; }
body.page-services .service-highlights li:nth-child(1)::after,
body.page-services .service-highlights li:last-child::before { font-size: 15px; }

body.page-contact .checkbox-option { font-size: 14px !important; }
body.page-contact .form-group label { font-size: 15px; }
body.page-contact .form-group input,
body.page-contact .form-group textarea { font-size: 19px; }
body.page-contact .form-hint { font-size: 16.5px; }
body.page-contact .form-status { font-size: 17px; }
body.page-contact .form-success h3 { font-size: 28px; }
body.page-contact .contact-info h3 { font-size: 26px; }
body.page-contact .contact-info p { font-size: 18.5px; }
body.page-contact .contact-info-item .label { font-size: 15px; }
body.page-contact .contact-info-item a,
body.page-contact .contact-info-item span.value { font-size: 19.5px; }

@media (max-width: 760px) {
  body.page-services .page-header h1,
  body.page-contact .page-header h1 { font-size: 32px; }
  body.page-services .service-block h3 { font-size: 28px; }
  body.page-services .service-block p { font-size: 17.5px; }
  body.page-services .page-header p,
  body.page-contact .page-header p,
  body.page-services .footer-inner p,
  body.page-contact .footer-inner p {
    white-space: normal;
    max-width: 90%;
  }
}

/* ---------- Blog ---------- */
.blog-empty {
  text-align: center;
  padding: 40px 20px 100px;
  color: var(--color-text-light);
}
.blog-empty svg { width: 48px; height: 48px; margin: 0 auto 20px; opacity: .4; display: block; }
.blog-empty p { font-size: 15px; }

.blog-filter { background: var(--color-bg); }
.blog-filter-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 40px 0;
}
body.page-blog .page-header { padding-bottom: 40px; }
.blog-filter + section { padding-top: 40px; }
.blog-filter-inner button {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  padding: 11px 26px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all .25s ease;
}
.blog-filter-inner button:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.blog-filter-inner button.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 6px 16px rgba(168,114,79,0.28);
}

.blog-empty-filter {
  display: none;
  text-align: center;
  color: var(--color-text-light);
  font-size: 15px;
  padding: 40px 0 20px;
}
.blog-empty-filter.show { display: block; }

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.blog-pagination button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-light);
  cursor: pointer;
}
.blog-pagination button:hover { border-color: var(--color-accent); color: var(--color-dark); }
.blog-pagination button.active {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 20px;
}
.blog-card {
  display: block;
  padding: 34px 30px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all .3s ease;
}
.blog-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(0,0,0,0.06);
}
.blog-card-date {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card p { color: var(--color-text-light); font-size: 14px; }

.blog-post-header { padding-bottom: 50px; }
.blog-post-date { display: block; }
.blog-post-body {
  max-width: 700px;
  margin: 0 auto;
}
.blog-post-body p {
  color: var(--color-text);
  font-size: 16.5px;
  line-height: 1.85;
  margin-bottom: 24px;
}
.blog-post-back { max-width: 700px; margin: 40px auto 0; }
.blog-post-back a {
  font-size: 13px;
  letter-spacing: .5px;
  color: var(--color-accent);
}
.blog-post-back a:hover { text-decoration: underline; }

body.page-blog .page-header p { max-width: 950px; white-space: nowrap; }

@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-body p { font-size: 15.5px; }
  body.page-blog .page-header p { white-space: normal; max-width: 90%; }
  .blog-filter-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 18px 24px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }
  .blog-filter-inner button { flex-shrink: 0; }
}
