@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Cabin:ital,wght@0,400;0,500;0,600;1,400&display=swap');

    /* ─── Tokens ─────────────────────────────────────── */
    :root {
      --bg:        #FAF7F2;
      --surface:   #F5EDE0;
      --card:      #FFFFFF;
      --fg:        #2C1810;
      --fg-muted:  #7A5A4E;
      --accent:    #B85C38;
      --accent-lt: #D4845A;
      --accent-bg: #F2E2D4;
      --border:    #E4D5C3;
      --nav-h:     72px;

      --font-head: 'Amatic SC', cursive;
      --font-body: 'Cabin', sans-serif;

      --ease: cubic-bezier(.4,0,.2,1);
      --shadow-sm: 0 1px 3px rgba(44,24,16,.08);
      --shadow-md: 0 4px 20px rgba(44,24,16,.12);
      --shadow-lg: 0 12px 40px rgba(44,24,16,.16);
    }

    /* ─── Reset ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      background: var(--bg);
      color: var(--fg);
      font-family: var(--font-body);
      line-height: 1.65;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; font-family: inherit; }

    /* ─── Utility ─────────────────────────────────────── */
    .container { width: min(90%, 1200px); margin-inline: auto; }
    .section-label {
      display: inline-block;
      font-family: var(--font-body);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--fg);
    }

    /* ─── Scroll progress bar ─────────────────────────── */
    #progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: var(--accent);
      z-index: 1000;
      transition: width .1s linear;
    }

    /* ─── Navbar ──────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      background: rgba(250,247,242,.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      z-index: 100;
      transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
    }
    nav.scrolled {
      border-color: var(--border);
      box-shadow: var(--shadow-sm);
    }
    .nav-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-family: var(--font-head);
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--fg);
      letter-spacing: .02em;
    }
    .nav-logo span { color: var(--accent); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      font-size: .875rem;
      font-weight: 500;
      color: var(--fg-muted);
      letter-spacing: .04em;
      position: relative;
      transition: color .25s var(--ease);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 2px;
      background: var(--accent);
      border-radius: 99px;
      transition: width .3s var(--ease);
    }
    .nav-links a:hover { color: var(--accent); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      padding: .5rem 1.25rem;
      background: var(--fg);
      color: var(--bg) !important;
      border-radius: 999px;
      font-size: .875rem;
      font-weight: 600;
      transition: background .25s var(--ease), transform .2s var(--ease) !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--accent) !important; transform: translateY(-1px); }
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 4px;
    }
    .burger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--fg);
      border-radius: 2px;
      transition: transform .3s var(--ease), opacity .3s var(--ease);
    }
    .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ─── Mobile menu ─────────────────────────────────── */
    .mobile-menu {
      position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: rgba(250,247,242,.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 5%;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      z-index: 99;
      transform: translateY(-110%);
      transition: transform .35s var(--ease);
    }
    .mobile-menu.open { transform: translateY(0); }
    .mobile-menu a {
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--fg);
      padding: .25rem 0;
      border-bottom: 1px solid var(--border);
    }

    /* ─── Hero ────────────────────────────────────────── */
    #hero {
      min-height: 100svh;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(20,10,5,.45) 0%,
        rgba(20,10,5,.55) 60%,
        rgba(20,10,5,.75) 100%
      );
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: calc(var(--nav-h) + 2rem) 0 2rem;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .75rem;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent-lt);
      margin-bottom: 1.75rem;
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      width: 32px; height: 1px;
      background: rgba(212,132,90,.6);
    }
    .hero-name {
      font-family: var(--font-head);
      font-size: clamp(4rem, 10vw, 8.5rem);
      font-weight: 700;
      line-height: 1;
      letter-spacing: .02em;
      color: #fff;
      text-shadow: 0 2px 24px rgba(0,0,0,.4);
      margin-bottom: 1.25rem;
    }
    .hero-tagline {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: rgba(255,255,255,.8);
      max-width: 42ch;
      margin: 0 auto 2.75rem;
      font-style: italic;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .btn-primary {
      padding: .85rem 2rem;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 999px;
      font-size: .9rem;
      font-weight: 600;
      letter-spacing: .04em;
      transition: background .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
      box-shadow: 0 4px 14px rgba(184,92,56,.5);
    }
    .btn-primary:hover { background: #A0522D; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,92,56,.6); }
    .btn-secondary {
      padding: .85rem 2rem;
      background: rgba(255,255,255,.12);
      color: #fff;
      border: 1.5px solid rgba(255,255,255,.45);
      border-radius: 999px;
      font-size: .9rem;
      font-weight: 500;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      transition: background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
    }
    .btn-secondary:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .5rem;
      color: rgba(255,255,255,.6);
      font-size: .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
      animation: pulse-line 2s ease-in-out infinite;
    }
    @keyframes pulse-line {
      0%, 100% { opacity: .4; transform: scaleY(.85); }
      50% { opacity: 1; transform: scaleY(1); }
    }

    /* ─── Stats bar ───────────────────────────────────── */
    .stats-bar {
      background: var(--fg);
      padding: 1.75rem 0;
    }
    .stats-inner {
      display: flex;
      align-items: center;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .stat { text-align: center; }
    .stat-number {
      font-family: var(--font-head);
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--accent-lt);
      line-height: 1;
    }
    .stat-label {
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(250,247,242,.55);
      margin-top: .25rem;
    }
    .stat-sep {
      width: 1px;
      height: 40px;
      background: rgba(250,247,242,.15);
    }

    /* ─── Gallery ─────────────────────────────────────── */
    #gallery {
      padding: 7rem 0 5rem;
    }
    .gallery-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 3.5rem;
    }
    .filter-tabs {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
    }
    .filter-tab {
      padding: .45rem 1.1rem;
      border: 1.5px solid var(--border);
      border-radius: 999px;
      background: transparent;
      font-size: .8rem;
      font-weight: 500;
      color: var(--fg-muted);
      letter-spacing: .04em;
      transition: all .25s var(--ease);
    }
    .filter-tab:hover, .filter-tab.active {
      border-color: var(--accent);
      background: var(--accent);
      color: #fff;
    }
    .gallery-grid {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .gallery-col {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .gallery-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: transparent;
      cursor: pointer;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    }
    .gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .art-frame {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(44,24,16,.75) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .3s var(--ease);
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-info { color: #fff; }
    .gallery-info h3 {
      font-family: var(--font-head);
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1.1;
    }
    .gallery-info p { font-size: .8rem; opacity: .8; margin-top: .2rem; }
    .gallery-tag {
      position: absolute;
      top: 1rem; right: 1rem;
      padding: .3rem .75rem;
      background: rgba(250,247,242,.88);
      border-radius: 999px;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--accent);
    }

    /* ─── CSS Art ─────────────────────────────────────── */

    /* Vase 1 — tall narrow */
    .art-vase1 {
      width: 110px; height: 220px;
      position: relative;
    }
    .art-vase1::before {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
      width: 90px; height: 190px;
      background: linear-gradient(160deg, #C4865A 0%, #8B4513 50%, #6B2F0D 100%);
      border-radius: 50% 50% 40% 40% / 20% 20% 45% 45%;
      clip-path: polygon(20% 0%, 80% 0%, 95% 100%, 5% 100%);
    }
    .art-vase1::after {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 70px; height: 30px;
      background: linear-gradient(to right, #C4865A, #A0622A, #C4865A);
      border-radius: 50%;
    }

    /* Bowl 1 */
    .art-bowl1 {
      width: 180px; height: 90px;
      position: relative;
    }
    .art-bowl1::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 180px; height: 90px;
      background: linear-gradient(to bottom, #D4956A 0%, #9A5228 60%, #7A3A18 100%);
      border-radius: 0 0 50% 50% / 0 0 100% 100%;
      border-top: 5px solid #E8B48A;
    }

    /* Sculpture abstract */
    .art-sculpt1 {
      width: 100px; height: 240px;
      position: relative;
    }
    .art-sculpt1::before {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
      width: 80px; height: 60px;
      background: #7A3A18;
      border-radius: 8px;
    }
    .art-sculpt1::after {
      content: '';
      position: absolute;
      bottom: 55px; left: 50%; transform: translateX(-50%);
      width: 30px; height: 180px;
      background: linear-gradient(to top, #8B4513, #C4865A, #D4956A);
      border-radius: 15px 15px 5px 5px;
    }
    .art-sculpt1 .head {
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 60px; height: 60px;
      background: radial-gradient(circle at 40% 35%, #E8B48A, #C4865A 60%, #8B4513);
      border-radius: 50%;
    }

    /* Wide piece — flat slab */
    .art-slab {
      width: 340px; height: 160px;
      position: relative;
    }
    .art-slab::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 300px; height: 120px;
      background: linear-gradient(135deg, #C4865A, #8B4513 50%, #6B2F0D);
      border-radius: 20px;
      box-shadow: inset 0 4px 20px rgba(0,0,0,.2), inset -4px -4px 12px rgba(255,255,255,.08);
    }
    .art-slab::after {
      content: '';
      position: absolute;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 200px; height: 80px;
      border: 2px solid rgba(232,180,138,.35);
      border-radius: 14px;
    }

    /* Vase 2 */
    .art-vase2 {
      width: 130px; height: 200px;
      position: relative;
    }
    .art-vase2::before {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
      width: 120px; height: 160px;
      background: linear-gradient(160deg, #E8B48A 0%, #B06030 45%, #7A3A18 100%);
      border-radius: 50% 50% 35% 35% / 15% 15% 40% 40%;
    }
    .art-vase2::after {
      content: '';
      position: absolute;
      bottom: 155px; left: 50%; transform: translateX(-50%);
      width: 50px; height: 55px;
      background: linear-gradient(to bottom, #D4956A, #B06030);
      border-radius: 50% 50% 10% 10% / 35% 35% 10% 10%;
    }
    .art-vase2 .ring {
      position: absolute;
      bottom: 70px; left: 50%; transform: translateX(-50%);
      width: 110px; height: 12px;
      background: rgba(44,24,16,.2);
      border-radius: 50%;
    }

    /* Plate / dish */
    .art-plate {
      width: 180px; height: 40px;
      position: relative;
    }
    .art-plate::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 180px; height: 30px;
      background: linear-gradient(to right, #C4865A, #E8B48A 30%, #C4865A 70%, #9A5228);
      border-radius: 50%;
    }
    .art-plate::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
      width: 120px; height: 16px;
      background: linear-gradient(to right, #8B4513, #C4865A, #8B4513);
      border-radius: 50%;
    }

    /* ─── Gallery images ─────────────────────────────── */
    .art-frame {
      background: transparent;
    }
    .art-frame img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform .4s var(--ease), opacity .3s var(--ease);
    }
    .gallery-item { cursor: zoom-in; }
    .gallery-item:hover .art-frame img { transform: scale(1.03); opacity: .92; }

    /* ─── Lightbox ────────────────────────────────────── */
    #lightbox {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s var(--ease);
    }
    #lightbox.open {
      opacity: 1;
      pointer-events: all;
    }
    .lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(15,7,3,.88);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .lightbox-img-wrap {
      position: relative;
      z-index: 1;
      max-width: min(92vw, 1400px);
      max-height: 90svh;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: scale(.92);
      transition: transform .35s var(--ease);
    }
    #lightbox.open .lightbox-img-wrap { transform: scale(1); }
    #lightbox-img {
      display: block;
      max-width: 100%;
      max-height: 90svh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 24px 80px rgba(0,0,0,.6);
    }
    .lightbox-close {
      position: fixed;
      top: 1.25rem;
      right: 1.25rem;
      z-index: 2;
      width: 44px; height: 44px;
      background: rgba(255,255,255,.12);
      border: 1.5px solid rgba(255,255,255,.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s var(--ease), transform .2s var(--ease);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .lightbox-close:hover { background: rgba(255,255,255,.25); transform: scale(1.1); }
    .lightbox-close svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }
    .lightbox-caption {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      text-align: center;
      color: rgba(255,255,255,.75);
      font-size: .875rem;
      font-style: italic;
      pointer-events: none;
    }

    /* ─── About ───────────────────────────────────────── */
    #about {
      padding: 6rem 0;
      background: var(--surface);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .about-portrait {
      position: relative;
    }
    .portrait-frame {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .portrait-figure {
      width: 68%;
      height: 85%;
      position: relative;
    }
    /* Simplified human silhouette */
    .portrait-figure::before {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
      width: 80%; height: 65%;
      background: linear-gradient(to top, rgba(44,24,16,.7), rgba(44,24,16,.4));
      border-radius: 40% 40% 5% 5% / 15% 15% 5% 5%;
    }
    .portrait-figure::after {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 46%; height: 38%;
      background: radial-gradient(circle at 45% 35%, #E8B48A, #C4865A 60%, #8B4513);
      border-radius: 50%;
    }
    .portrait-accent {
      position: absolute;
      bottom: -1.5rem; right: -1.5rem;
      width: 140px; height: 140px;
      border-radius: 50%;
      background: var(--accent-bg);
      border: 3px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1rem;
    }
    .portrait-accent strong {
      font-family: var(--font-head);
      font-size: 2rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }
    .portrait-accent span {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--fg-muted);
      margin-top: .25rem;
    }
    .about-text { }
    .about-text p {
      color: var(--fg-muted);
      margin-bottom: 1.25rem;
      font-size: 1.0625rem;
    }
    .about-text p:first-of-type { color: var(--fg); font-size: 1.125rem; }
    .quote-block {
      margin: 2rem 0;
      padding: 1.5rem 2rem;
      border-left: 4px solid var(--accent);
      background: var(--accent-bg);
      border-radius: 0 12px 12px 0;
    }
    .quote-block p {
      font-style: italic;
      font-size: 1.125rem;
      color: var(--fg) !important;
      margin: 0 !important;
      line-height: 1.6;
    }
    .skills-row {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      margin-top: 2rem;
    }
    .skill-chip {
      padding: .4rem 1rem;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 999px;
      font-size: .8rem;
      font-weight: 500;
      color: var(--fg);
    }

    /* ─── Process ─────────────────────────────────────── */
    #process {
      padding: 7rem 0;
    }
    .process-header { text-align: center; margin-bottom: 4rem; }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      position: relative;
    }
    .process-grid::before {
      content: '';
      position: absolute;
      top: 2.75rem; left: 12.5%; right: 12.5%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border) 15%, var(--border) 85%, transparent);
    }
    .process-step { text-align: center; }
    .step-icon {
      width: 56px; height: 56px;
      margin: 0 auto 1.5rem;
      background: var(--accent-bg);
      border: 2px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }
    .step-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.75; }
    .step-num {
      position: absolute;
      top: -6px; right: -6px;
      width: 20px; height: 20px;
      background: var(--accent);
      border-radius: 50%;
      font-size: .65rem;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .step-title {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: .5rem;
    }
    .step-desc { font-size: .875rem; color: var(--fg-muted); line-height: 1.6; }

    /* ─── Testimonials ────────────────────────────────── */
    #testimonials {
      padding: 6rem 0;
      background: var(--fg);
      overflow: hidden;
    }
    .testimonials-header { text-align: center; margin-bottom: 3.5rem; }
    .testimonials-header .section-label { color: var(--accent-lt); }
    .testimonials-header .section-title { color: var(--bg); }
    .testimonials-track {
      display: flex;
      gap: 1.5rem;
      animation: scroll-track 30s linear infinite;
      width: max-content;
    }
    .testimonials-track:hover { animation-play-state: paused; }
    @keyframes scroll-track {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .testimonial-card {
      width: 340px;
      flex-shrink: 0;
      background: rgba(250,247,242,.06);
      border: 1px solid rgba(250,247,242,.1);
      border-radius: 16px;
      padding: 2rem;
    }
    .stars { display: flex; gap: 4px; margin-bottom: 1rem; }
    .star { width: 16px; height: 16px; fill: var(--accent-lt); }
    .testimonial-card p {
      color: rgba(250,247,242,.8);
      font-style: italic;
      line-height: 1.65;
      margin-bottom: 1.5rem;
      font-size: .95rem;
    }
    .reviewer { display: flex; align-items: center; gap: .75rem; }
    .reviewer-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }
    .reviewer-name { font-weight: 600; color: var(--bg); font-size: .9rem; }
    .reviewer-loc { font-size: .775rem; color: rgba(250,247,242,.5); }

    /* ─── Contact ─────────────────────────────────────── */
    #contact {
      padding: 7rem 0;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: start;
    }
    .contact-info .section-title { margin-bottom: 1.25rem; }
    .contact-info > p { color: var(--fg-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }
    .contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
    .contact-row {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .contact-icon {
      width: 44px; height: 44px;
      background: var(--accent-bg);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.75; }
    .contact-row-label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-muted); }
    .contact-row-val { font-size: .95rem; color: var(--fg); margin-top: .1rem; }

    /* Form */
    .contact-form {
      background: var(--card);
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1.25rem; }
    .form-group label {
      display: block;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--fg);
      margin-bottom: .5rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: .75rem 1rem;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: .95rem;
      color: var(--fg);
      transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
      outline: none;
      appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--fg-muted); opacity: .6; }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(184,92,56,.15);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A5A4E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
    .form-submit {
      width: 100%;
      padding: 1rem;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: .04em;
      transition: background .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
      box-shadow: 0 4px 14px rgba(184,92,56,.3);
      margin-top: .5rem;
    }
    .form-submit:hover { background: #A0522D; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,92,56,.4); }
    .form-note { text-align: center; font-size: .775rem; color: var(--fg-muted); margin-top: 1rem; }

    /* ─── Footer ──────────────────────────────────────── */
    footer {
      background: var(--fg);
      color: rgba(250,247,242,.65);
      padding: 4rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(250,247,242,.1);
    }
    .footer-brand .nav-logo { color: var(--bg); margin-bottom: 1rem; }
    .footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 30ch; }
    .footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
    .social-btn {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: rgba(250,247,242,.08);
      border: 1px solid rgba(250,247,242,.1);
      display: flex; align-items: center; justify-content: center;
      transition: background .25s var(--ease), border-color .25s var(--ease);
    }
    .social-btn:hover { background: rgba(184,92,56,.3); border-color: var(--accent-lt); }
    .social-btn svg { width: 16px; height: 16px; stroke: var(--bg); fill: none; stroke-width: 1.75; }
    .footer-col h4 {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(250,247,242,.9);
      margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
    .footer-col ul a {
      font-size: .875rem;
      color: rgba(250,247,242,.55);
      transition: color .25s var(--ease);
    }
    .footer-col ul a:hover { color: var(--accent-lt); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 2rem;
      font-size: .8rem;
    }

    /* ─── Toast ───────────────────────────────────────── */
    #toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      padding: 1rem 1.5rem;
      background: var(--fg);
      color: var(--bg);
      border-radius: 12px;
      font-size: .9rem;
      font-weight: 500;
      box-shadow: var(--shadow-lg);
      border-left: 4px solid var(--accent);
      transform: translateY(120%) scale(.95);
      opacity: 0;
      transition: transform .35s var(--ease), opacity .35s var(--ease);
      z-index: 999;
    }
    #toast.show { transform: translateY(0) scale(1); opacity: 1; }

    /* ─── Animations on scroll ────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s var(--ease), transform .65s var(--ease);
    }
    .reveal.in-view { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ─── Responsive ──────────────────────────────────── */
    @media (max-width: 1024px) {
      .gallery-grid { flex-wrap: wrap; }
      .gallery-col { flex: 1 1 calc(50% - .75rem); }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid::before { display: none; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .burger { display: flex; }
      .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .portrait-accent { right: 1rem; bottom: -1rem; }
      .gallery-col { flex: 1 1 calc(50% - .75rem); }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .form-row { grid-template-columns: 1fr; }
      .stat-sep { display: none; }
      .process-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .gallery-col { flex: 1 1 100%; }
      .process-grid { grid-template-columns: 1fr; }
      .contact-form { padding: 1.5rem; }
      .hero-name { font-size: 3.5rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }

    /* ─── Contact Form 7 compatibility ───────────────────
       CF7 wraps each field in <span class="wpcf7-form-control-wrap">.
       These rules keep the inputs full-width and style CF7's own
       validation tips / response messages to match the design. */
    .form-group .wpcf7-form-control-wrap { display: block; width: 100%; }
    .contact-form .wpcf7-form-control.form-submit { width: 100%; }
    .wpcf7 .wpcf7-spinner { display: block; margin: .75rem auto 0; }
    .wpcf7-response-output {
      margin: 1rem 0 0 !important;
      padding: .75rem 1rem !important;
      border-radius: 10px;
      border-width: 1.5px !important;
      font-size: .85rem;
      font-family: var(--font-body);
    }
    .wpcf7-not-valid-tip { color: var(--accent); font-size: .75rem; margin-top: .35rem; }
    .form-group .wpcf7-form-control.wpcf7-not-valid { border-color: var(--accent); }

