@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:  #150a08;
      --dark:      #1e0e0a;
      --mahogany:  #2a1410;
      --ember:     #3d1c15;
      --clay:      #c4b49a;
      --sand:      #e8e2d8;
      --stone:     #f5f2ed;
      --white:     #fafaf8;
      --warm:      #9c8468;
      --accent:    #7a6248;
      --salmon:    #e8a99a;   /* CTA button colour from screenshots */
      --ink:       #0e0e0c;
      --mid:       #6b6560;
      --serif:     'Cormorant Garamond', Georgia, serif;
      --sans:      'Heebo', sans-serif;
      --latin:     'DM Sans', 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.5;
    }

    ::-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.3);
      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(21,10,8,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(--mono);
      font-size: 0.95rem;
      font-weight: 400;
      letter-spacing: 0.03em;
      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: 400; }
    .nav-logo .logo-pipe  { color: var(--salmon); margin: 0 14px; }
    .nav-logo .logo-bold  { font-weight: 700; }

    .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.4);
      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: 2px;
      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: flex-end;
      padding-bottom: 80px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      object-fit: cover; object-position: center 60%; width: 100%; height: 100%;
      transform-origin: center bottom;
      animation: kenburns 22s ease-in-out infinite alternate;
    }
    @keyframes kenburns {
      from { transform: scale(1);    background-position: center 60%; }
      to   { transform: scale(1.08); background-position: center 45%; }
    }

    .hero-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(21,10,8,0.55) 0%, rgba(21,10,8,0.1) 40%, rgba(21,10,8,0.0) 60%, rgba(21,10,8,0.65) 100%),
        linear-gradient(to right,  rgba(21,10,8,0.6) 0%,  rgba(21,10,8,0.0) 60%);
    }

    .hero-content {
      position: relative; z-index: 2;
      padding-right: 68px;
      padding-left: 24px;
      max-width: 680px;
    }
    body.en .hero-content { padding-right: 24px; padding-left: 68px; }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 300;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 24px;
    }
    .hero-title em { font-style: italic; color: var(--clay); }
    .hero-title .keyword-line {
      display: block;
      font-family: var(--latin);
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--salmon);
      margin-top: 18px;
      opacity: 0.85;
    }

    .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: var(--salmon);
      color: var(--espresso);
      font-family: var(--latin);
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 2px;
      transition: all 0.3s var(--ease);
    }
    .hero-cta:hover { background: var(--clay); gap: 18px; }
    .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
    ═══════════════════════════════════════ */
    #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; }

    /* Slider — external flanking arrows */
    .slider-row {
      display: flex;
      align-items: stretch;
      padding-right: var(--side-w); /* clear fixed RTL side-nav */
    }
    body.en .slider-row { padding-right: 0; padding-left: var(--side-w); }

    .slider-outer { position: relative; overflow: hidden; background: var(--dark); flex: 1; }
    .slider-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
    }
    .slide {
      flex: 0 0 100%; min-width: 100%;
      height: 72vh; min-height: 440px; max-height: 700px;
      overflow: hidden;
    }
    .slide img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
      filter: brightness(0.88) saturate(0.9);
      transition: transform 1s ease;
    }
    .slide:hover img { transform: scale(1.025); }

    .slider-arrow {
      flex-shrink: 0;
      width: 56px;
      background: var(--dark);
      border: none;
      border-left: 1px solid rgba(196,180,154,0.12);
      color: rgba(196,180,154,0.45);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      font-size: 18px; user-select: none;
      transition: all 0.25s;
    }
    .slider-arrow:first-child { border-left: none; border-right: 1px solid rgba(196,180,154,0.12); }
    .slider-arrow:hover { background: var(--mahogany); color: var(--salmon); }

    .slider-counter {
      position: absolute; bottom: 14px; left: 20px;
      font-family: var(--mono); font-size: 10px;
      color: rgba(196,180,154,0.5); letter-spacing: 0.12em;
      pointer-events: none;
    }
    .slider-dots {
      display: flex; gap: 8px; justify-content: center;
      padding: 18px 0 60px;
    }
    .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(196,180,154,0.25); cursor: pointer; transition: all 0.3s;
    }
    .dot.active { background: var(--salmon); width: 22px; border-radius: 3px; }

    /* ═══════════════════════════════════════
       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;
    }

    #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(--stone);
      border: none;
      padding: 15px 32px;
      font-family: var(--latin);
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 2px;
      transition: all 0.35s var(--ease);
    }
    .submit-btn:hover { background: var(--accent); gap: 18px; }
    .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: 2px;
      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-inner {
      display: flex; align-items: center;
      justify-content: space-between;
      padding-bottom: 28px;
      margin-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-logo {
      font-family: var(--mono);
      font-size: 0.9rem; font-weight: 400;
      letter-spacing: 0.03em;
      color: var(--stone); text-decoration: none;
      display: flex; align-items: center;
      direction: ltr; white-space: nowrap;
    }
    .footer-logo .logo-light { font-weight: 400; }
    .footer-logo .logo-pipe  { color: var(--salmon); margin: 0 12px; }
    .footer-logo .logo-bold  { font-weight: 700; }
    .footer-links { display: flex; gap: 28px; list-style: none; }
    .footer-links a {
      font-family: var(--latin); font-size: 0.62rem;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(245,242,237,0.3); text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--clay); }
    .footer-copy {
      text-align: center;
      font-family: var(--latin);
      font-size: 0.65rem; letter-spacing: 0.08em;
      color: rgba(245,242,237,0.2);
    }
    .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: 0.78rem; }
      .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;
      }
      .slider-row { padding-right: 0; }
      body.en .slider-row { padding-left: 0; }
      .slide { height: 60vw; min-height: 260px; }
      .slider-arrow { width: 44px; font-size: 15px; }

      /* 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-inner { flex-direction: column; gap: 20px; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
      .footer-logo { font-size: 0.78rem; }
      .footer-logo .logo-pipe { margin: 0 8px; }

      /* 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: 0.88rem; }

      /* 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 */
      .slide { height: 70vw; min-height: 220px; }
      .slider-arrow { width: 36px; font-size: 13px; }
      .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-links { gap: 16px; }
      .footer-logo .logo-pipe,
      .footer-logo .logo-bold { display: none; }
    }

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

/* ═══════════════════════════════════════
   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; } }
