@font-face { font-family: 'Miriam Mono CLM'; src: local('Miriam Mono CLM'), local('MiriamMonoCLM'); font-display: swap; }

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

    :root {
      /* Dark palette from screenshots */
      --espresso:  #fdfdfb;
      --dark:      #f5f1ea;
      --mahogany:  #efe9e0;
      --ember:     #e7e1d6;
      --clay:      #6f675e;
      --sand:      #2a231d;
      --stone:     #1d1814;
      --white:     #1d1814;
      --warm:      #8a8278;
      --accent:    #7a6248;
      --salmon:    #bf7259;   /* LAVAN terracotta (AA-safe on white) */
      --ink:       #0e0e0c;
      --mid:       #8a8278;
      --serif:     'Libre Caslon Text', 'Frank Ruhl Libre', Georgia, serif;
      --sans:      'Heebo', sans-serif;
      --latin:     'Inter', sans-serif;
      --mono:      'Miriam Mono CLM', 'Courier Prime', 'Courier New', monospace;
      --ease:      cubic-bezier(0.25, 0.1, 0.25, 1);
      --slow:      cubic-bezier(0.16, 1, 0.3, 1);
      --side-w:    44px;
    }

    html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

    body {
      font-family: var(--sans);
      font-weight: 200;
      background: var(--espresso);
      color: var(--stone);
      overflow-x: hidden;
      max-width: 100vw;
      -webkit-font-smoothing: antialiased;
    }
    body.en { font-family: var(--latin); direction: ltr; }
    body.en * { direction: ltr; }

    /* Noise grain */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999; opacity: 0.32;
    }

    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--espresso); }
    ::-webkit-scrollbar-thumb { background: var(--ember); border-radius: 2px; }

    /* ═══════════════════════════════════════
       SIDE NAV (vertical rotated labels)
    ═══════════════════════════════════════ */
    .side-nav {
      position: fixed;
      top: 0; right: 0;
      width: var(--side-w);
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
      z-index: 900;
      border-right: 1px solid rgba(196,180,154,0.12);
    }
    body.en .side-nav { right: auto; left: 0; border-right: none; border-left: 1px solid rgba(196,180,154,0.12); }

    .side-nav a {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-family: var(--latin);
      font-size: 0.58rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(245,242,237,0.55);
      text-decoration: none;
      transition: color 0.3s var(--ease);
      cursor: pointer;
    }
    body.en .side-nav a { writing-mode: vertical-lr; transform: rotate(180deg); }
    .side-nav a:hover,
    .side-nav a.active { color: var(--clay); }

    .side-label {
      font-family: var(--latin);
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(245,242,237,0.15);
      writing-mode: vertical-rl;
      position: absolute;
      bottom: 32px;
    }

    /* ═══════════════════════════════════════
       TOP NAV
    ═══════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 68px 0 24px;
      z-index: 800;
      transition: background 0.5s var(--ease);
    }
    body.en nav { padding: 0 24px 0 68px; }
    nav.scrolled {
      background: rgba(41,26,21,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(196,180,154,0.08);
    }

    .nav-logo {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--stone);
      text-decoration: none;
      line-height: 1;
      white-space: nowrap;
      display: flex;
      align-items: center;
      direction: ltr;
    }
    .nav-logo .logo-light { font-weight: 500; }
    .nav-logo .logo-pipe  { color: var(--salmon); margin: 0 14px; font-family: var(--latin); }
    .nav-logo .logo-bold  {
      font-family: var(--latin);
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex; align-items: center; gap: 36px; list-style: none;
    }
    .nav-links a {
      font-family: var(--latin);
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245,242,237,0.55);
      text-decoration: none;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--stone); }

    .nav-right { display: flex; align-items: center; gap: 20px; }

    .lang-toggle {
      display: flex; align-items: center;
      border: 1px solid rgba(196,180,154,0.25);
      border-radius: 20px;
      overflow: hidden;
    }
    .lang-btn {
      background: none; border: none; cursor: pointer;
      font-family: var(--latin); font-size: 0.62rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(245,242,237,0.6);
      padding: 5px 12px;
      transition: all 0.3s;
    }
    .lang-btn.active {
      background: var(--clay);
      color: var(--espresso);
      font-weight: 500;
    }

    .inquire-btn {
      font-family: var(--latin);
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--espresso);
      background: var(--salmon);
      border: none;
      padding: 9px 22px;
      cursor: pointer;
      text-decoration: none;
      border-radius: 0;
      transition: background 0.3s, transform 0.3s;
      display: inline-block;
    }
    .inquire-btn:hover { background: var(--clay); transform: translateY(-1px); }

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

    /* ═══════════════════════════════════════
       MOBILE MENU
    ═══════════════════════════════════════ */
    .mobile-menu {
      position: fixed; inset: 0;
      background: var(--espresso);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 32px; z-index: 1200;
      transform: translateX(100%);
      transition: transform 0.5s var(--slow);
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu a {
      font-family: var(--serif);
      font-size: 2rem; font-weight: 300;
      color: var(--stone); text-decoration: none;
      letter-spacing: 0.08em;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--salmon); }
    .mobile-close {
      position: absolute; top: 24px; left: 24px;
      background: none; border: none; cursor: pointer;
      color: var(--stone); font-size: 1.6rem; line-height: 1;
    }
    body.en .mobile-close { left: auto; right: 24px; }

    /* ═══════════════════════════════════════
       CONTAINER
    ═══════════════════════════════════════ */
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 80px 0 60px;
    }
    body.en .container { padding: 0 60px 0 80px; }

    /* ═══════════════════════════════════════
       REVEAL ANIMATIONS
    ═══════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.9s var(--slow), transform 0.9s var(--slow);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.12s; }
    .reveal-delay-2 { transition-delay: 0.24s; }
    .reveal-delay-3 { transition-delay: 0.36s; }

    /* ═══════════════════════════════════════
       SECTION LABELS
    ═══════════════════════════════════════ */
    .eyebrow {
      font-family: var(--latin);
      font-size: 0.6rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--clay);
      display: block;
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--serif);
      font-weight: 300;
      line-height: 1.12;
      color: var(--stone);
    }
    .section-title em { font-style: normal; color: inherit; }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    #home {
      position: relative;
      height: 100vh; min-height: 600px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      object-fit: cover; object-position: center 42%; width: 100%; height: 100%;
      transform: scale(1.03);
      animation: heroSettle 3.5s var(--slow) forwards;
    }
    @keyframes heroSettle {
      from { transform: scale(1.08); opacity: 0; }
      to   { transform: scale(1.03); opacity: 1; }
    }
    @media (prefers-reduced-motion: reduce) { .hero-bg { animation: none; opacity: 1; } }

    .hero-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(41,26,21,0.15) 0%, rgba(41,26,21,0.02) 35%, rgba(41,26,21,0.05) 65%, rgba(41,26,21,0.55) 100%);
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 760px;
      margin: 0 auto;
      padding: 0 68px;
      text-align: center;
    }
    body.en .hero-content { padding: 0 68px; }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(2.6rem, 6vw, 4.6rem);
      font-weight: 400;
      line-height: 1.15;
      color: #fdfcfa;
      text-shadow: 0 2px 24px rgba(41,26,21,0.25);
      margin-bottom: 22px;
    }
    .hero-title em { font-style: italic; color: var(--salmon); }
    .hero-title .keyword-line {
      display: block;
      font-family: var(--latin);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: #fdfcfa;
      margin-top: 20px;
      opacity: 0.92;
    }

    .hero-sub {
      font-size: 0.95rem;
      font-weight: 300;
      color: rgba(245,242,237,0.65);
      line-height: 1.7;
      max-width: 380px;
      margin-bottom: 36px;
    }

    .hero-cta {
      display: inline-flex; align-items: center; gap: 12px;
      background: transparent;
      border: 1px solid #fdfcfa;
      color: #fdfcfa;
      font-family: var(--latin);
      font-weight: 500;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 15px 32px;
      border-radius: 0;
      transition: all 0.4s var(--ease);
    }
    .hero-cta:hover { background: #fdfcfa; color: #291a15; gap: 18px; border-color: #fdfcfa; }
    .hero-cta svg { transition: transform 0.3s; }
    body:not(.en) .hero-cta:hover svg { transform: translateX(-4px); }
    body.en .hero-cta:hover svg { transform: translateX(4px); }

    /* Vertical quote */
    .hero-vertical {
      position: absolute;
      top: 50%; right: var(--side-w);
      transform: translateY(-50%);
      writing-mode: vertical-rl;
      font-family: var(--latin);
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(196,180,154,0.35);
      z-index: 2;
    }
    body.en .hero-vertical { right: auto; left: var(--side-w); writing-mode: vertical-lr; transform: translateY(-50%) rotate(180deg); }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 32px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      z-index: 2;
    }
    .hero-scroll span {
      font-family: var(--latin);
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(196,180,154,0.4);
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--clay), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%,100% { opacity: 0.3; transform: scaleY(1); }
      50%      { opacity: 0.8; transform: scaleY(1.2); }
    }

    /* ═══════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════ */
    #about {
      padding: 120px 0;
      background: var(--dark);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-image-wrap {
      position: relative;
    }
    .about-img {
      width: 100%; aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
      filter: brightness(0.9) contrast(1.05);
    }
    .about-frame {
      position: absolute;
      top: 20px; right: -20px;
      bottom: -20px; left: 20px;
      border: 1px solid rgba(196,180,154,0.2);
      pointer-events: none;
      z-index: 0;
    }
    body.en .about-frame { right: 20px; left: -20px; }

    .about-badge {
      position: absolute;
      bottom: -24px; left: -24px;
      width: 96px; height: 96px;
      background: var(--salmon);
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 2px;
      z-index: 2;
    }
    body.en .about-badge { left: auto; right: -24px; }
    .about-badge .num {
      font-family: var(--serif);
      font-size: 1.7rem; font-weight: 300;
      color: var(--espresso);
      line-height: 1;
    }
    .about-badge .lbl {
      font-family: var(--latin);
      font-size: 0.5rem; letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(21,10,8,0.7);
      text-align: center; line-height: 1.2;
    }

    .about-text { padding: 20px 0; }
    .about-name {
      font-family: var(--sans);
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      font-weight: 200; line-height: 1.1;
      color: var(--stone);
      margin-bottom: 8px;
    }
    .about-role {
      font-family: var(--latin);
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--clay);
      margin-bottom: 28px;
    }
    .about-body {
      font-family: var(--sans);
      font-size: 0.92rem;
      font-weight: 200;
      line-height: 1.85;
      color: rgba(245,242,237,0.6);
      margin-bottom: 18px;
    }
    .about-cta {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--latin);
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--clay);
      text-decoration: none;
      margin-top: 16px;
      border-bottom: 1px solid rgba(196,180,154,0.3);
      padding-bottom: 4px;
      transition: all 0.3s;
    }
    .about-cta:hover { color: var(--stone); border-color: var(--stone); gap: 16px; }

    /* ═══════════════════════════════════════
       PHILOSOPHY / VALUES
    ═══════════════════════════════════════ */
    #values {
      padding: 120px 0;
      background: var(--mahogany);
      position: relative;
      overflow: hidden;
    }
    #values::before {
      content: 'PHILOSOPHY';
      position: absolute;
      top: 60px; left: 50%; transform: translateX(-50%);
      font-family: var(--latin);
      font-size: clamp(4rem, 10vw, 9rem);
      font-weight: 200;
      letter-spacing: 0.15em;
      color: rgba(196,180,154,0.04);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }

    .values-header { margin-bottom: 72px; }
    .values-header .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-top: 12px; }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(196,180,154,0.1);
    }
    .value-card {
      padding: 40px 32px;
      background: var(--mahogany);
      border-top: 2px solid transparent;
      transition: border-color 0.4s, background 0.4s;
    }
    .value-card:hover {
      border-color: var(--salmon);
      background: rgba(61,28,21,0.6);
    }
    .value-num {
      font-family: var(--latin);
      font-size: 0.62rem;
      letter-spacing: 0.3em;
      color: var(--salmon);
      margin-bottom: 20px;
    }
    .value-title {
      font-family: var(--serif);
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--stone);
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .value-body {
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(245,242,237,0.5);
    }

    /* ═══════════════════════════════════════
       PROJECTS — masonry gallery (LAVAN/Stitch)
    ═══════════════════════════════════════ */
    #projects {
      padding: 120px 0 60px;
      background: var(--espresso);
    }

    .projects-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 40px;
      padding: 0 80px 0 60px;
    }
    .projects-header .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-top: 12px; }

    .masonry-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 32px;
      padding: 0 80px 0 60px;
    }
    .masonry-item {
      display: block;
      text-decoration: none;
      grid-column: span 12;
    }
    .masonry-item.span-4  { grid-column: span 4; }
    .masonry-item.span-5  { grid-column: span 5; }
    .masonry-item.span-7  { grid-column: span 7; }
    .masonry-item.span-8  { grid-column: span 8; }
    .masonry-item.span-12 { grid-column: span 12; }
    .masonry-item.offset-down    { margin-top: 80px; }
    .masonry-item.offset-down-sm { margin-top: 48px; }
    .masonry-item.offset-up      { margin-top: -48px; }
    .masonry-item.offset-up-sm   { margin-top: -32px; }

    .masonry-img {
      overflow: hidden;
      background: var(--dark);
      border: 1px solid var(--ember);
      aspect-ratio: var(--ar, 4/3);
      margin-bottom: 20px;
    }
    .masonry-img img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
      filter: grayscale(20%);
      transition: transform 0.7s var(--slow), filter 0.7s var(--slow);
    }
    .masonry-item:hover .masonry-img img,
    .masonry-item:focus-visible .masonry-img img {
      transform: scale(1.05);
      filter: grayscale(0%);
    }

    .masonry-cap {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; padding: 0 2px;
    }
    .masonry-label {
      font-family: var(--latin);
      font-size: 0.62rem; font-weight: 500;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--clay);
    }
    .masonry-detail {
      font-family: var(--serif); font-style: italic;
      font-size: 0.9rem; color: var(--warm);
    }

    /* ═══════════════════════════════════════
       PRESS / ON THE NEWS
    ═══════════════════════════════════════ */
    #onthenews {
      padding: 120px 0;
      background: var(--dark);
    }
    .press-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .press-text .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-top: 12px; margin-bottom: 20px; }
    .press-text .about-body { max-width: 360px; }

    .press-card {
      position: relative;
      overflow: hidden;
    }
    .press-pub {
      font-family: var(--latin);
      font-size: 0.6rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--salmon);
      margin-bottom: 16px;
    }
    .press-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      filter: brightness(0.85) saturate(0.7);
      transition: filter 0.4s;
    }
    .press-card:hover .press-img { filter: brightness(1) saturate(1); }
    .press-headline {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--stone);
      margin: 20px 0 16px;
      line-height: 1.3;
    }
    .press-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--latin);
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--clay);
      text-decoration: none;
      border-bottom: 1px solid rgba(196,180,154,0.3);
      padding-bottom: 3px;
      transition: all 0.3s;
    }
    .press-link:hover { color: var(--stone); border-color: var(--stone); gap: 14px; }

    /* ═══════════════════════════════════════
       CONTACT — light section (screenshot 2)
    ═══════════════════════════════════════ */
    /* ── Testimonials ── */
    #testimonials {
      padding: 120px 0;
      background: var(--dark);
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .testi-card {
      padding: 32px 28px;
      border: 1px solid rgba(196,180,154,0.12);
      border-top: 2px solid var(--salmon);
      background: rgba(255,255,255,0.02);
    }
    .testi-quote {
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.75;
      color: var(--clay);
      margin: 0 0 20px;
    }
    .testi-name {
      font-family: var(--latin);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(196,180,154,0.45);
    }
    @media (max-width: 900px) {
      .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    }

    /* ── FAQ ── */
    #faq {
      padding: 120px 0;
      background: var(--espresso);
    }
    .faq-list {
      margin-top: 48px;
      max-width: 720px;
    }
    .faq-item {
      border-bottom: 1px solid rgba(196,180,154,0.12);
    }
    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: right;
      font-family: var(--sans);
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--stone);
      line-height: 1.5;
    }
    body.en .faq-q { text-align: left; flex-direction: row-reverse; }
    .faq-arrow {
      flex-shrink: 0;
      color: var(--salmon);
      transition: transform 0.3s ease;
    }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }
    .faq-a {
      display: none;
      padding: 0 0 22px;
    }
    .faq-item.open .faq-a { display: block; }
    .faq-a p {
      font-family: var(--sans);
      font-size: 0.875rem;
      font-weight: 300;
      line-height: 1.85;
      color: var(--clay);
      margin: 0;
    }

    /* ── STONE BAND — pull quote ── */
    .stone-band {
      position: relative;
      height: 46vh; min-height: 320px; max-height: 460px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .stone-band-bg {
      position: absolute; inset: 0;
      background-repeat: no-repeat;
      background-size: 260% auto;
      background-position: 18% 42%;
      filter: saturate(0.85);
    }
    .stone-band-overlay {
      position: absolute; inset: 0;
      background: rgba(29,24,20,0.5);
    }
    .stone-band-quote {
      position: relative; z-index: 1;
      font-family: var(--serif);
      font-style: italic; font-weight: 400;
      font-size: clamp(1.8rem, 4.2vw, 3rem);
      letter-spacing: 0.02em;
      color: #fdfcfa;
      text-align: center;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
      padding: 0 24px;
    }

    #contact {
      padding: 120px 0;
      background: var(--stone);
      color: var(--ink);
    }

    .contact-header { margin-bottom: 64px; }
    .contact-header .eyebrow { color: var(--accent); }
    .contact-header .section-title {
      font-size: clamp(2.4rem, 5vw, 4rem);
      color: var(--ink);
      margin-top: 16px;
      max-width: 640px;
      line-height: 1.15;
    }
    .contact-header .section-title em { color: inherit; font-style: normal; }

    .studio-address-block {
      border-bottom: 1px solid var(--sand);
      padding-bottom: 20px; margin-bottom: 24px;
    }
    .studio-address-text {
      font-family: var(--sans); font-size: 0.9rem; font-weight: 200;
      line-height: 1.85; color: var(--ink);
    }
    .map-wrap { border: 1px solid var(--sand); overflow: hidden; margin-top: 24px; }
    .map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; }
    .map-caption {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 14px; font-family: var(--latin);
      font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--mid); border-top: 1px solid var(--sand);
    }
    .map-pin { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
    .contact-header p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.75;
      max-width: 440px;
      margin-top: 20px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    /* Form (left) */
    .contact-form { display: flex; flex-direction: column; gap: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .field-wrap { position: relative; }
    .field-wrap label {
      display: block;
      font-family: var(--latin);
      font-size: 0.58rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 8px;
    }
    .field-wrap input,
    .field-wrap textarea {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--sand);
      padding: 10px 0;
      font-family: var(--sans);
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--ink);
      outline: none;
      resize: none;
      transition: border-color 0.3s;
    }
    body.en .field-wrap input,
    body.en .field-wrap textarea { font-family: var(--latin); }
    .field-wrap input:focus,
    .field-wrap textarea:focus { border-color: var(--accent); }
    .field-wrap textarea { height: 100px; }

    .submit-btn {
      align-self: flex-start;
      display: inline-flex; align-items: center; gap: 12px;
      background: var(--ink);
      color: var(--espresso);
      border: none;
      padding: 15px 32px;
      font-family: var(--latin);
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 0;
      transition: all 0.35s var(--ease);
    }
    .submit-btn:hover { background: var(--accent); gap: 18px; color: var(--espresso); }
    .submit-btn svg { transition: transform 0.3s; }
    body:not(.en) .submit-btn:hover svg { transform: translateX(-4px); }
    body.en .submit-btn:hover svg { transform: translateX(4px); }

    .form-status {
      padding: 12px 16px;
      border-radius: 0;
      font-size: 0.85rem;
      font-weight: 300;
      display: none;
    }
    .form-status.ok  { background: #edf7ed; color: #2e7d32; border: 1px solid #c8e6c9; display: block; }
    .form-status.err { background: #fdecea; color: #c62828; border: 1px solid #ffcdd2; display: block; }

    /* Info (right) */
    .contact-info-panel { padding-top: 8px; }
    .contact-info-panel .info-group { margin-bottom: 40px; }
    .info-group-label {
      font-family: var(--latin);
      font-size: 0.58rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 14px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--sand);
    }
    .contact-item {
      display: flex; align-items: center; gap: 14px;
      text-decoration: none;
      color: var(--ink);
      margin-bottom: 16px;
      transition: color 0.3s;
    }
    .contact-item:hover { color: var(--accent); }
    .contact-item .icon {
      width: 34px; height: 34px;
      border: 1px solid var(--sand);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: border-color 0.3s, background 0.3s;
    }
    .contact-item:hover .icon { border-color: var(--accent); background: var(--accent); color: var(--stone); }
    .contact-item .icon svg { width: 13px; height: 13px; }
    .item-label {
      font-family: var(--latin);
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--mid);
    }
    .item-val { font-size: 0.9rem; font-weight: 300; margin-top: 2px; }

    .social-row { display: flex; gap: 12px; }
    .social-pill {
      font-family: var(--latin);
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--mid);
      text-decoration: none;
      border: 1px solid var(--sand);
      padding: 6px 14px;
      border-radius: 20px;
      transition: all 0.3s;
    }
    .social-pill:hover { border-color: var(--accent); color: var(--accent); }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      background: var(--espresso);
      padding: 56px 0 28px;
      border-top: 1px solid rgba(196,180,154,0.08);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 40px;
      margin-bottom: 24px;
      border-bottom: 1px solid rgba(29,24,20,0.08);
    }
    .footer-brand { display: flex; flex-direction: column; gap: 14px; }
    .footer-logo {
      font-family: var(--serif);
      font-size: 1.5rem; font-weight: 400;
      letter-spacing: 0.03em;
      color: var(--stone); text-decoration: none;
      direction: ltr; white-space: nowrap;
    }
    .footer-tagline {
      font-family: var(--sans); font-weight: 300;
      font-size: 0.8rem; color: var(--clay);
      max-width: 240px; line-height: 1.6;
    }
    .footer-col { display: flex; flex-direction: column; gap: 12px; }
    .footer-col-title {
      font-family: var(--latin); font-size: 0.6rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(29,24,20,0.55);
      border-bottom: 1px solid rgba(29,24,20,0.12);
      padding-bottom: 10px; margin-bottom: 2px;
    }
    .footer-col a {
      font-family: var(--sans); font-weight: 300;
      font-size: 0.82rem;
      color: rgba(29,24,20,0.62); text-decoration: none;
      transition: color 0.3s;
      opacity: 0.9;
    }
    .footer-col a:hover { color: var(--salmon); opacity: 1; }
    .footer-bottom { display: flex; justify-content: center; }
    .footer-copy {
      text-align: center;
      font-family: var(--latin);
      font-size: 0.65rem; letter-spacing: 0.08em;
      color: rgba(29,24,20,0.45);
    }
    .footer-seo {
      text-align: center;
      font-family: var(--sans);
      font-size: 0.6rem;
      font-weight: 300;
      letter-spacing: 0.04em;
      color: rgba(245,242,237,0.12);
      margin-top: 8px;
      line-height: 1.8;
      direction: rtl;
    }

    /* ═══════════════════════════════════════
       WHATSAPP FLOAT
    ═══════════════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 28px; left: 28px;
      width: 50px; height: 50px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
      text-decoration: none; z-index: 500;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    body.en .wa-float { left: auto; right: 28px; }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
    .wa-float svg { width: 24px; height: 24px; }

    /* ═══════════════════════════════════════
       INSTAGRAM
    ═══════════════════════════════════════ */
    #instagram {
      padding: 120px 0;
      background: var(--mahogany);
    }
    .ig-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
    }
    .ig-header .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-top: 12px; }

    .ig-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 3px;
    }
    @media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 500px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

    .ig-item {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      display: block;
      text-decoration: none;
    }
    .ig-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.85) saturate(0.8);
      transition: filter 0.5s var(--slow), transform 0.6s var(--slow);
    }
    .ig-item:hover img {
      filter: brightness(1) saturate(1.1);
      transform: scale(1.06);
    }
    .ig-caption {
      position: absolute; inset: 0;
      background: rgba(21,10,8,0.7);
      display: flex; align-items: center; justify-content: center;
      padding: 16px;
      opacity: 0;
      transition: opacity 0.4s;
    }
    .ig-item:hover .ig-caption { opacity: 1; }
    .ig-caption p {
      font-size: 0.72rem;
      line-height: 1.5;
      color: rgba(245,242,237,0.85);
      text-align: center;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .ig-caption .ig-icon {
      position: absolute;
      top: 12px; left: 12px;
      opacity: 0.6;
    }

    /* Skeleton loader */
    .ig-skeleton {
      aspect-ratio: 1;
      background: linear-gradient(90deg, var(--ember) 25%, rgba(61,28,21,0.4) 50%, var(--ember) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.4s infinite;
    }
    @keyframes shimmer {
      from { background-position: 200% 0; }
      to   { background-position: -200% 0; }
    }

    /* Not configured */
    .ig-static-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      width: 100%;
    }
    .ig-static-item {
      display: block;
      aspect-ratio: 1;
      overflow: hidden;
    }
    .ig-static-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.88) saturate(0.9);
      transition: transform 0.5s ease, filter 0.5s ease;
    }
    .ig-static-item:hover img {
      transform: scale(1.04);
      filter: brightness(0.95) saturate(1);
    }
    @media (max-width: 600px) {
      .ig-static-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .ig-fallback {
      text-align: center;
      padding: 64px 24px;
      color: rgba(245,242,237,0.35);
      display: flex; flex-direction: column; align-items: center; gap: 16px;
    }
    .ig-fallback p { font-size: 0.85rem; font-weight: 300; max-width: 360px; line-height: 1.7; }

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 1024px) {
      .values-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 900px) {
      /* Nav */
      .side-nav { display: none; }
      nav { padding: 0 20px; height: 60px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .inquire-btn { display: none; }
      .nav-logo { font-size: 1rem; }
      .nav-logo .logo-pipe { margin: 0 8px; }

      /* Layout */
      .container { padding: 0 24px; }

      /* Hero */
      #home { padding-bottom: 60px; overflow: hidden; }
      .hero-content {
        width: 100%;
        max-width: 100%;
        padding-right: 20px;
        padding-left: 20px;
        box-sizing: border-box;
      }
      body.en .hero-content { padding-right: 20px; padding-left: 20px; }
      .hero-vertical { display: none; }

      /* Sections — reduce vertical padding */
      #about, #values, #projects, #onthenews, #instagram, #contact { padding-top: 80px; padding-bottom: 80px; }
      #projects { padding-bottom: 40px; }

      /* About */
      .about-grid, .press-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-image-wrap { max-width: 320px; margin: 0 auto; }
      .about-frame { display: none; }

      /* Values */
      .values-grid { grid-template-columns: 1fr 1fr; }
      .values-header { margin-bottom: 48px; }

      /* Projects */
      .projects-header {
        padding: 0 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
      .masonry-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 24px; }
      .masonry-item,
      .masonry-item.span-4, .masonry-item.span-5, .masonry-item.span-7,
      .masonry-item.span-8, .masonry-item.span-12 { grid-column: span 1; }
      .masonry-item.offset-down, .masonry-item.offset-down-sm,
      .masonry-item.offset-up, .masonry-item.offset-up-sm { margin-top: 0; }

      /* Instagram */
      .ig-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .ig-header .section-title { font-size: clamp(2rem, 5vw, 2.8rem); }

      /* Contact */
      .form-row { grid-template-columns: 1fr; }
      .contact-header .section-title { font-size: clamp(2rem, 6vw, 3rem); }
      .map-wrap iframe { height: 220px; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
      .footer-brand { grid-column: span 2; }
      .footer-logo { font-size: 1.3rem; }

      /* WhatsApp */
      .wa-float { bottom: 20px; left: 20px; width: 44px; height: 44px; }
      body.en .wa-float { left: auto; right: 20px; }
    }

    @media (max-width: 600px) {
      /* Nav logo — hide subtitle on very small screens */
      .nav-logo .logo-pipe,
      .nav-logo .logo-bold { display: none; }
      .nav-logo { font-size: 1.05rem; }

      /* Hero */
      .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
      .hero-sub { font-size: 0.85rem; }
      #home { padding-bottom: 48px; }

      /* Sections */
      #about, #values, #onthenews, #instagram, #contact { padding-top: 64px; padding-bottom: 64px; }
      .container { padding: 0 18px; }

      /* About */
      .about-name { font-size: clamp(2rem, 9vw, 2.6rem); }
      .about-image-wrap { max-width: 280px; }

      /* Values */
      .values-grid { grid-template-columns: 1fr; }
      .value-card { padding: 28px 20px; }

      /* Projects */
      .masonry-grid { padding: 0 18px; gap: 20px; }
      .projects-header { padding: 0 18px; }

      /* Press */
      .press-text .about-body { max-width: 100%; }

      /* Contact */
      .studio-address-block { padding-bottom: 16px; margin-bottom: 16px; }
      .map-wrap iframe { height: 190px; }
      .submit-btn { width: 100%; justify-content: center; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
      .footer-brand,
      .footer-col { align-items: center; }
      .footer-brand { grid-column: span 1; }
      .footer-tagline { max-width: none; }
      .footer-col-title { border-bottom: none; }
    }

    @media (max-width: 400px) {
      .hero-title { font-size: 1.9rem; }
      .container { padding: 0 16px; }
    }

/* ═══════════════════════════════════════
   LANDING / SERVICE PAGES (lp-)
═══════════════════════════════════════ */
.lp-hero {
  position: relative;
  min-height: 64vh;
  display: flex; align-items: flex-end;
  padding: 0 0 64px;
  overflow: hidden;
}
.lp-hero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.lp-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,10,8,0.55) 0%, rgba(21,10,8,0.82) 100%); }
.lp-hero-content { position: relative; z-index: 2; width: 100%; }
.lp-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  color: var(--stone);
  margin: 14px 0 0;
}
.lp-section { padding: 80px 0; }
.lp-section.alt { background: var(--dark); }
.lp-lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--sand);
  max-width: 760px;
}
.lp-prose p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--clay);
  margin: 0 0 22px;
  max-width: 760px;
}
.lp-prose strong { color: var(--stone); font-weight: 500; }
.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.lp-card {
  border: 1px solid var(--ember);
  padding: 28px 26px;
  background: rgba(42,20,16,0.35);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.lp-card:hover { border-color: var(--salmon); transform: translateY(-3px); }
.lp-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; color: var(--stone); margin: 0 0 10px; }
.lp-card p { font-size: 0.95rem; font-weight: 300; line-height: 1.7; color: var(--clay); margin: 0; }
.lp-steps { counter-reset: step; display: grid; gap: 26px; margin-top: 36px; max-width: 760px; }
.lp-step { position: relative; padding-inline-start: 56px; }
.lp-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; inset-inline-start: 0; top: -4px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--salmon); color: var(--salmon);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem;
}
.lp-step h3 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; color: var(--stone); margin: 0 0 6px; }
.lp-step p { font-size: 0.95rem; font-weight: 300; line-height: 1.7; color: var(--clay); margin: 0; }
.lp-cta-band { text-align: center; padding: 90px 0; background: var(--mahogany); }
.lp-cta-band h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--stone); margin: 0 0 26px; }
.lp-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.lp-cta-row a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; font-size: 0.9rem; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.3s var(--ease);
}
.lp-cta-row a.primary { background: var(--salmon); color: var(--ink); }
.lp-cta-row a.primary:hover { background: var(--clay); }
.lp-cta-row a.ghost { border: 1px solid var(--clay); color: var(--clay); }
.lp-cta-row a.ghost:hover { border-color: var(--salmon); color: var(--salmon); }
.lp-tagline { text-align: center; font-family: var(--serif); font-style: italic; color: var(--warm); letter-spacing: 0.3em; margin-top: 30px; font-size: 0.95rem; }
.lp-back { display: inline-flex; align-items: center; gap: 8px; color: var(--clay); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 26px; transition: color 0.3s; }
.lp-back:hover { color: var(--salmon); }
@media (max-width: 768px) { .lp-section { padding: 56px 0; } .lp-hero { min-height: 52vh; } }

/* ── consultation landing extras ── */
.lp-card ul, .lp-list { list-style: none; margin: 14px 0 0; padding: 0; }
.lp-card ul li, .lp-list li {
  position: relative; padding-inline-start: 20px; margin-bottom: 9px;
  font-size: 0.95rem; font-weight: 300; line-height: 1.6; color: var(--clay);
}
.lp-card ul li::before, .lp-list li::before {
  content: ''; position: absolute; inset-inline-start: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--salmon);
}
.lp-list { max-width: 760px; }
.lp-price {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  border: 1px solid var(--salmon); padding: 26px 34px; margin-top: 24px;
}
.lp-price .amount { font-family: var(--serif); font-size: 2.6rem; color: var(--stone); line-height: 1; }
.lp-price .vat { font-size: 0.85rem; color: var(--clay); margin-top: 6px; letter-spacing: 0.05em; }
.lp-price .note { font-size: 0.85rem; color: var(--warm); margin-top: 14px; max-width: 380px; line-height: 1.6; }
.lp-terms { border-inline-start: 2px solid var(--ember); padding-inline-start: 20px; margin-top: 20px; max-width: 760px; }
.lp-terms p { font-size: 0.9rem; color: var(--clay); line-height: 1.7; margin-bottom: 10px; font-weight: 300; }
.lp-meta-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 24px; }
.lp-meta-row .item .lbl { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm); margin-bottom: 6px; }
.lp-meta-row .item .val { font-family: var(--serif); font-size: 1.2rem; color: var(--stone); }

/* ═══════════════════════════════════════
   CONSULTATION PAGE — light "brochure" theme (body.consult)
   Redefines the palette to light + patches hardcoded darks.
═══════════════════════════════════════ */
body.consult {
  --espresso: #fdfdfb;   /* page bg */
  --dark:     #f5f2ec;   /* alt sections */
  --mahogany: #efeae2;   /* cta band */
  --stone:    #201b17;   /* primary dark text (flips headings/body) */
  --sand:     #2a2420;
  --white:    #201b17;
  --clay:     #6f675e;   /* muted text */
  --warm:     #9a9088;
  --ember:    #e4ded4;   /* light borders */
  background: var(--espresso);
  color: var(--stone);
}
body.consult::before { opacity: 0; }                 /* kill dark grain */

/* nav — solid light, dark text, readable on white from the top */
body.consult nav#mainNav,
body.consult nav#mainNav.scrolled {
  background: rgba(253,253,251,0.94);
  border-bottom: 1px solid #ece7df;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
body.consult .nav-logo { color: #201b17; }
body.consult .nav-links a { color: rgba(32,27,23,0.6); }
body.consult .nav-links a:hover { color: #201b17; }
body.consult .lang-toggle { border-color: rgba(32,27,23,0.2); }
body.consult .lang-btn { color: rgba(32,27,23,0.45); }
body.consult .lang-btn.active { background: #201b17; color: #fdfdfb; }
body.consult .hamburger span { background: #201b17; }

/* hero — drop the dark photo, clean centered title on light */
body.consult .lp-hero { min-height: auto; padding: 132px 0 24px; background: var(--espresso); align-items: center; }
body.consult .lp-hero .hero-bg,
body.consult .lp-hero .hero-overlay { display: none; }
body.consult .lp-hero-content { text-align: center; }
body.consult .lp-hero h1 { color: #201b17; }

/* centered brochure layout */
body.consult .lp-section { text-align: center; }
body.consult .lp-lead,
body.consult .lp-prose,
body.consult .lp-prose p,
body.consult .lp-list { margin-left: auto; margin-right: auto; }
body.consult .lp-list { max-width: 640px; }
body.consult .lp-list li,
body.consult .lp-card ul li { padding-inline-start: 0; }
body.consult .lp-list li::before,
body.consult .lp-card ul li::before { display: none; }

/* who-it's-for cards — light, centered */
body.consult .lp-card { background: #ffffff; border-color: var(--ember); text-align: center; }
body.consult .lp-card:hover { border-color: var(--salmon); }
body.consult .lp-card ul { display: inline-block; text-align: center; }

/* short centered divider between sections (brochure rhythm) */
body.consult .lp-section + .lp-section .container::before {
  content: ""; display: block; width: 46px; height: 1px;
  background: #cfc8bd; margin: 0 auto 46px;
}

/* price + terms + meta — centered */
body.consult .lp-price { display: flex; align-items: center; text-align: center; width: fit-content; margin: 24px auto 0; }
body.consult .lp-meta-row { justify-content: center; }
body.consult .lp-terms { border: 0; padding-inline-start: 0; text-align: center; margin-left: auto; margin-right: auto; max-width: 640px; }

/* cta band already uses --mahogany (now light); ghost button readable */
body.consult .lp-cta-band h2 { color: #201b17; }

/* footer — light to match */
body.consult footer { background: var(--espresso); border-top: 1px solid #ece7df; }
body.consult .footer-logo { color: #201b17; }
body.consult .footer-tagline,
body.consult .footer-col-title { color: rgba(32,27,23,0.55); }
body.consult .footer-col a { color: rgba(32,27,23,0.6); }
body.consult .footer-col a:hover { color: #201b17; }


/* ── a11y/visual loop fixes (2026-06-29) ── */
/* darker accent on the light consultation page (non-text contrast >=3:1) */
body.consult { --salmon: #bf7259; }

/* skip-to-content link (WCAG 2.4.1) */
.skip-link{position:absolute; inset-inline-start:-9999px; top:0; z-index:2000;
  background:var(--salmon); color:var(--ink); padding:10px 20px;
  font-family:var(--latin); font-size:0.85rem; letter-spacing:0.05em;}
.skip-link:focus{inset-inline-start:0;}

/* respect reduced motion (WCAG 2.3.3 / 2.2.2 support) */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:0.001ms !important; animation-iteration-count:1 !important;
    transition-duration:0.001ms !important; scroll-behavior:auto !important;
  }
  .reveal{opacity:1 !important; transform:none !important;}
}

/* ═══════════════════════════════════════════════════════════════
   LAVAN — white theme patches (2026-07-02)
   Palette flipped to light in :root above; this fixes the spots that
   were hardcoded dark, keeps the cinematic photo-hero legible, and
   adds the editorial "white" twist (hairlines + air).
═══════════════════════════════════════════════════════════════ */
body::before { opacity: 0; }                       /* no grain on white */
::-webkit-scrollbar-track { background: #fdfdfb; }
::-webkit-scrollbar-thumb { background: #d8d0c4; }

/* NAV: light text over the dark hero, solid white once scrolled */
.nav-logo { color: #f6f2ec; }
.nav-links a { color: rgba(246,242,236,0.78); }
.nav-links a:hover { color: #fff; }
.hamburger span { background: #f6f2ec; }
.lang-toggle { border-color: rgba(246,242,236,0.4); }
.lang-btn { color: rgba(246,242,236,0.72); }
nav.scrolled { background: rgba(253,253,251,0.94); border-bottom: 1px solid #e7e1d6;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
nav.scrolled .nav-logo { color: #1d1814; }
nav.scrolled .nav-links a { color: rgba(29,24,20,0.6); }
nav.scrolled .nav-links a:hover { color: #1d1814; }
nav.scrolled .hamburger span { background: #1d1814; }
nav.scrolled .lang-toggle { border-color: rgba(29,24,20,0.2); }
nav.scrolled .lang-btn { color: rgba(29,24,20,0.55); }

/* HERO stays a dark cinematic photo with light text (dramatic entry → white body) */
#home .hero-title, #home .hero-title .keyword-line { color: #f7f4ef; }
#home .hero-title em { color: var(--salmon); }
#home .hero-sub { color: rgba(247,244,239,0.88); }
#home .eyebrow { color: rgba(247,244,239,0.9); }
#home .hero-vertical, #home .hero-scroll { color: rgba(247,244,239,0.6); }
#home .scroll-line { background: rgba(247,244,239,0.4); }
/* landing-page heroes (photo + light H1) — keep light, except the consult page (body.consult handles itself) */
body:not(.consult) .lp-hero h1 { color: #f7f4ef; }
body:not(.consult) .lp-hero .eyebrow { color: rgba(247,244,239,0.9); }

/* side nav (desktop, decorative) — dark on the white body */
.side-nav a { color: rgba(29,24,20,0.4); }
.side-nav a:hover, .side-nav a.active { color: var(--salmon); }
.side-label { color: rgba(29,24,20,0.28); }

/* cards / panels that were hardcoded dark → white */
.lp-card { background: #ffffff; border-color: #e7e1d6; }

/* FOOTER → warm paper, dark text */
footer { background: #f5f1ea; border-top: 1px solid #e7e1d6; }
.footer-logo { color: #1d1814; }
.footer-tagline,
.footer-col-title { color: rgba(29,24,20,0.55); }
.footer-col a { color: rgba(29,24,20,0.62); }
.footer-col a:hover { color: #1d1814; }
.footer-copy { color: rgba(29,24,20,0.45); }

/* ── the "white" twist: editorial hairlines + more air ── */
#values, #projects, #onthenews, #instagram, #testimonials, #faq {
  border-top: 1px solid #ece6db;
}
#about, #values, #projects, #onthenews, #testimonials, #faq, #contact { padding-top: 8.5rem; padding-bottom: 8.5rem; }
.about-img, .project-slide img, .ig-static-item img { border: 1px solid #e7e1d6; }

/* LAVAN — content body text that was hardcoded light (now readable on white) */
.about-body { color: #4a423b; }
.value-body { color: #5a524a; }
.ig-fallback { color: #6f675e; }

/* LAVAN — contact section was a light "island" (bg used --stone, which is now dark). Restore light. */
#contact { background: #f5f1ea; color: var(--ink); }
#contact .contact-header .eyebrow { color: var(--salmon); }
.map-wrap { border-color: #e7e1d6; }
