/* ═══════════════════════════════════════
   CONSTROLEUM — Interior Design Style
   Earth Tones · Terracota · Olive
   ═══════════════════════════════════════ */

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

:root {
  --bone:      #f0ebe2;   /* fondo base */
  --linen:     #e6ddd0;   /* fondo alt */
  --terra:     #a8522e;   /* terracota principal */
  --terra-dk:  #8a4123;   /* terracota oscura */
  --terra-lt:  #c4714a;   /* terracota clara */
  --olive:     #5c6645;   /* verde oliva */
  --olive-lt:  #7a8a5e;   /* oliva claro */
  --clay:      #c49870;   /* arcilla/ocre */
  --ink:       #2a2118;   /* casi negro cálido */
  --ink-md:    #5c4a38;   /* marrón medio */
  --ink-lt:    #9a8470;   /* marrón claro */
  --white:     #faf7f3;   /* blanco cálido */
}

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITIES ─── */
.eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--terra);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.06;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--terra);
}

/* ─── LANG BAR ─── */
.nav-lang-btn {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(250,247,243,0.9);
  border: 1px solid rgba(250,247,243,0.4);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
  background: rgba(250,247,243,0.08);
}
.nav-lang-btn:hover {
  color: var(--white);
  border-color: var(--terra-lt);
  background: rgba(180,90,50,0.18);
}
nav.scrolled .nav-lang-btn {
  color: var(--ink-md);
  border-color: var(--linen);
  background: transparent;
}
nav.scrolled .nav-lang-btn:hover { color: var(--terra); border-color: var(--terra); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3rem;
  transition: background 0.5s, padding 0.4s;
}

nav.scrolled {
  background: rgba(240, 235, 226, 0.94);
  backdrop-filter: blur(16px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(164, 148, 128, 0.25);
}

.nav-logo {
  height: 55px;
  color: white;
  width: auto;
  transition: filter 0.3s;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.8rem;
}

.nav-links a {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.82);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
nav.scrolled .nav-links a {
  color: var(--ink-md);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after { width: 100%; }

.nav-cta-btn {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--terra);
  padding: 0.55rem 1.4rem;
  transition: background 0.25s;
}
.nav-cta-btn:hover { background: var(--terra-dk); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 680px;
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.7) brightness(0.55);
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(26,16,8,0.75) 0%, rgba(26,16,8,0.15) 60%, transparent 100%),
    linear-gradient(to right, rgba(26,16,8,0.5) 0%, transparent 60%);
}

.hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 5rem;
  max-width: 860px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-line {
  display: block;
  width: 36px; height: 1px;
  background: var(--clay);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.96;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--clay);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(250,247,243,0.6);
  max-width: 320px;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-coords {
  position: absolute;
  bottom: 2rem; right: 3rem;
  z-index: 2;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(196,152,112,0.55);
  writing-mode: vertical-rl;
}

/* ─── BUTTONS ─── */
.btn-fill {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--terra);
  color: var(--white);
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-fill:hover { background: var(--terra-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(250,247,243,0.3);
  color: rgba(250,247,243,0.75);
  text-decoration: none;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--clay); color: var(--clay); }

/* ═══════════════════════════
   INTRO STRIP
═══════════════════════════ */
.intro-strip {
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 2.2rem 5rem;
}

.intro-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.intro-label {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.55);
}

.intro-divider {
  width: 1px;
  height: 36px;
  background: rgba(250,247,243,0.2);
  flex-shrink: 0;
}

/* ═══════════════════════════
   SERVICES
═══════════════════════════ */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "hdr  visual"
    "intro visual"
    "list  visual";
  gap: 0 0;
  min-height: 100vh;
}

.services-header {
  grid-area: hdr;
  padding: 6rem 4rem 1.5rem;
  background: var(--bone);
}

.services-intro-text {
  grid-area: intro;
  padding: 0 4rem 3rem;
  background: var(--bone);
}

.services-intro-text p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--ink-lt);
  max-width: 380px;
}

.services-visual {
  grid-area: visual;
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
  background: var(--linen);
}

.services-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
  transition: transform 0.8s ease;
}

.services-visual:hover img { transform: scale(1.03); }

.services-visual-caption {
  position: absolute;
  bottom: 2rem; left: 2rem;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.65);
}

.services-list {
  grid-area: list;
  background: var(--bone);
  padding: 0 4rem 6rem;
}

.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr 1.5rem;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(164,148,128,0.2);
  cursor: default;
  transition: background 0.2s;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s, transform 0.5s, background 0.2s;
}
.service-row.visible { opacity: 1; transform: translateX(0); }
.service-row:hover { background: rgba(168,82,46,0.04); margin: 0 -1.5rem; padding: 2rem 1.5rem; }
.service-row:first-child { border-top: 1px solid rgba(164,148,128,0.2); }

.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(168,82,46,0.25);
  line-height: 1.4;
  padding-top: 0.1rem;
}

.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.svc-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--ink-lt);
}

.svc-arrow {
  font-size: 0.9rem;
  color: var(--terra);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 0.2rem;
}
.service-row:hover .svc-arrow { opacity: 1; transform: translateX(3px); }

/* ═══════════════════════════
   MOODBOARD
═══════════════════════════ */
.moodboard {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.65fr;
  grid-template-rows: 560px;
  gap: 4px;
  background: var(--linen);
}

.mb-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mb-col-narrow {}

.mb-item {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.mb-large { height: 100%; }

.mb-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s;
  filter: saturate(0.8) brightness(0.88);
}
.mb-item:hover img { transform: scale(1.05); filter: saturate(0.92) brightness(0.94); }

.mb-text-block {
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  flex: 0 0 200px;
}

.mb-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.25;
  color: rgba(250,247,243,0.9);
  font-weight: 400;
}
.mb-quote em { font-style: italic; color: var(--clay); }

.mb-label {
  position: absolute;
  bottom: 0.9rem; left: 1rem;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.7);
  background: rgba(26,16,8,0.25);
  padding: 0.3rem 0.7rem;
}

/* ═══════════════════════════
   PHILOSOPHY
═══════════════════════════ */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.phil-left {
  background: var(--linen);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.phil-lead {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--ink-lt);
  max-width: 360px;
}

.phil-accent-img {
  margin-top: auto;
  height: 240px;
  overflow: hidden;
}
.phil-accent-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8) sepia(0.1);
  transition: transform 0.6s ease;
}
.phil-accent-img:hover img { transform: scale(1.04); }

.phil-right {
  background: var(--ink);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.pillar {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s;
}
.pillar:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.pillar.visible { opacity: 1; transform: translateY(0); }

.pillar-n {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--terra);
  opacity: 0.6;
  flex-shrink: 0;
  width: 2rem;
  padding-top: 0.1rem;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.pillar-text {
  font-size: 0.77rem;
  line-height: 1.75;
  color: rgba(230,221,208,0.45);
}

/* ═══════════════════════════
   BUDAPEST
═══════════════════════════ */
.budapest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.bp-visual {
  position: relative;
  overflow: hidden;
}

.bp-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.85) sepia(0.1);
  transition: transform 0.8s ease;
}
.bp-visual:hover img { transform: scale(1.04); }

.bp-coords {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196,152,112,0.65);
}

.bp-content {
  background: var(--terra);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bp-content .eyebrow { color: rgba(250,247,243,0.55); }
.bp-content .eyebrow::before { background: rgba(250,247,243,0.35); }
.bp-content .section-title { color: var(--white); }
.bp-content .section-title em { color: var(--linen); }

.bp-points {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bp-point {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(250,247,243,0.12);
}
.bp-point:first-child { border-top: 1px solid rgba(250,247,243,0.12); }

.bp-point-header {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 0.6rem;
}

.bp-n {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: rgba(250,247,243,0.35);
  flex-shrink: 0;
}

.bp-point-header strong {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.bp-point p {
  font-size: 0.78rem;
  line-height: 1.75;
  color: rgba(250,247,243,0.55);
  padding-left: 2.4rem;
}

/* ═══════════════════════════
   CONTACT
═══════════════════════════ */
.contact {
  background: var(--linen);
  padding: 7rem 4rem;
}

.contact-head {
  margin-bottom: 4rem;
  max-width: 480px;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  display: contents;
}

/* Each ci-item becomes a card */
.ci-item {
  background: var(--bone);
  padding: 2rem;
  border-top: 2px solid var(--linen);
  transition: border-color 0.2s;
}

.ci-item:hover { border-color: var(--terra); }

/* CTA block below the info cards */
.contact-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bone);
  border-left: 3px solid var(--terra);
  padding: 2rem 2.5rem;
  gap: 2rem;
}

.contact-cta-text {
  font-size: 0.9rem;
  color: var(--ink-md);
  line-height: 1.6;
  margin: 0;
}

.contact-cta-btn {
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--terra);
  color: var(--white);
  text-decoration: none;
  padding: 0.9rem 2rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s;
}

.contact-cta-btn:hover { background: var(--olive); }

.ci-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.5rem;
}

.ci-val {
  font-size: 0.88rem;
  color: var(--ink-md);
  text-decoration: none;
  line-height: 1.65;
  transition: color 0.2s;
}
.ci-val:hover { color: var(--terra); }

.ci-social {
  display: flex;
  gap: 1.5rem;
}

.ci-social a {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-lt);
  border-bottom: 1px solid var(--linen);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.ci-social a:hover { color: var(--terra); border-color: var(--terra); }



/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
footer {
  background: var(--olive);
  padding: 2.5rem 4rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer-copy {
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.35);
}

.footer-addr {
  font-size: 0.52rem;
  font-style: normal;
  line-height: 1.85;
  color: rgba(250,247,243,0.35);
  text-align: right;
  letter-spacing: 0.04em;
}

.footer-addr a { color: inherit; text-decoration: none; }

/* ═══════════════════════════
   ANIMATIONS
═══════════════════════════ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1024px) {
  .services {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hdr"
      "intro"
      "visual"
      "list";
  }
  .services-visual { position: relative; height: 50vw; min-height: 320px; }
  .services-header, .services-intro-text, .services-list { padding-left: 2rem; padding-right: 2rem; }

  .philosophy { grid-template-columns: 1fr; }
  .phil-accent-img { height: 160px; }

  .budapest { grid-template-columns: 1fr; }
  .bp-visual { height: 52vw; min-height: 280px; }

  .moodboard { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 260px; }
  .mb-col-narrow { display: none; }
  .mb-large { grid-row: 1; grid-column: 1; }
  .mb-col:not(.mb-col-narrow) { grid-row: 1; grid-column: 2; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links, .nav-cta-btn, .nav-lang-btn { display: none; }
  .hamburger { display: flex; }

  nav.open {
    flex-wrap: wrap;
    background: rgba(240,235,226,0.97);
    padding-bottom: 2rem;
  }
  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    padding-top: 2rem;
  }
  nav.open .nav-links a { font-size: 1.1rem; letter-spacing: 0.1em; }
  nav.open .nav-cta-btn {
    display: block;
    margin-top: 1rem;
    text-align: center;
    padding: 1rem;
  }
  nav.open .nav-lang-btn {
    display: block;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.8rem 1rem;
  }

  .hero-body { padding: 0 1.5rem 4rem; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero-coords { display: none; }

  .intro-strip { flex-direction: column; gap: 0; }
  .intro-stat { padding: 1.8rem 2rem; width: 100%; }
  .intro-divider { width: 60%; height: 1px; }

  .contact { padding: 4rem 1.5rem; }
  .contact-body { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contact-cta { flex-direction: column; align-items: flex-start; }

  .moodboard { grid-template-columns: 1fr; grid-template-rows: 280px 200px; }
  .mb-col { flex-direction: row; }
  .mb-text-block { flex: 0 0 160px; }

  .phil-left, .phil-right { padding: 4rem 1.5rem; }
  .bp-content { padding: 4rem 1.5rem; }

  footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-addr { text-align: left; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 2.2rem; }
  .moodboard { grid-template-columns: 1fr; grid-template-rows: auto; }
  .mb-col { flex-direction: column; }
  .mb-item { min-height: 220px; }
  .contact-body { grid-template-columns: 1fr; }
}

/* ═══════════════════════════
   SEO TEXT BLOCK
═══════════════════════════ */
.seo-block {
  background: var(--bone);
  padding: 6rem 4rem;
  border-top: 1px solid rgba(164,148,128,0.2);
}

.seo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.seo-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.seo-col p {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--ink-lt);
  margin-bottom: 1rem;
}

.seo-col p:last-child { margin-bottom: 0; }
.seo-col strong { color: var(--ink-md); font-weight: 400; }

/* ═══════════════════════════
   FAQ
═══════════════════════════ */
.faq-section {
  background: var(--linen);
  padding: 6rem 4rem;
}

.faq-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-head { position: sticky; top: 5rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(164,148,128,0.25);
}
.faq-item:first-child { border-top: 1px solid rgba(164,148,128,0.25); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--terra); }

.faq-icon {
  font-size: 1.3rem;
  color: var(--terra);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
  line-height: 1;
}

.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--terra); }

.faq-answer {
  padding: 0 0 1.8rem;
  animation: fadeDown 0.3s ease;
}

.faq-answer p {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--ink-lt);
}

.faq-answer strong { color: var(--ink-md); font-weight: 400; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════
   FORM STATUS + SPINNER
═══════════════════════════ */
.form-status {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(92,102,69,0.1);
  border-left: 3px solid var(--olive);
  color: var(--olive);
}

.form-status.error {
  display: block;
  background: rgba(168,82,46,0.1);
  border-left: 3px solid var(--terra);
  color: var(--terra-dk);
}

.btn-submit {
  position: relative;
  min-width: 180px;
}

.btn-submit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-spinner { letter-spacing: 0.3em; }

/* ═══ RESPONSIVE ADDITIONS ═══ */
@media (max-width: 1024px) {
  .seo-inner { grid-template-columns: 1fr; gap: 2rem; }
  .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-head { position: static; }
}

@media (max-width: 768px) {
  .seo-block { padding: 4rem 1.5rem; }
  .faq-section { padding: 4rem 1.5rem; }
}

/* ═══════════════════════════
   PROCESS SECTION
═══════════════════════════ */
.process-section {
  background: var(--terra);
  padding: 7rem 4rem;
}

.process-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.process-head {
  position: sticky;
  top: 5rem;
}

.process-section .eyebrow {
  color: rgba(250,247,243,0.55);
}
.process-section .eyebrow::before {
  background: rgba(250,247,243,0.35);
}

.process-section .section-title {
  color: var(--white);
}
.process-section .section-title em {
  color: var(--linen);
  font-style: italic;
}

.process-lead {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(250,247,243,0.6);
  margin-top: 1.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(250,247,243,0.12);
  align-items: start;
}
.step:first-child {
  border-top: 1px solid rgba(250,247,243,0.12);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(250,247,243,0.3);
  line-height: 1.5;
  flex-shrink: 0;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.step-desc {
  font-size: 0.8rem;
  line-height: 1.78;
  color: rgba(250,247,243,0.55);
}

/* Moodboard quote bilingual tweak */
.mb-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.3;
  color: rgba(250,247,243,0.9);
  font-weight: 400;
}
.mb-quote em { color: var(--clay); font-style: italic; }

/* ═══ RESPONSIVE PROCESS ═══ */
@media (max-width: 1024px) {
  .process-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-head { position: static; }
}

@media (max-width: 768px) {
  .process-section { padding: 4rem 1.5rem; }
  .step { grid-template-columns: 2.5rem 1fr; gap: 1.2rem; }
}
