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

    :root {
      --ink: #080706;
      --cream: #f0ebe0;
      --warm-white: #f7f4ee;
      --gold: #c9a84c;
      --gold-light: #e8c97e;
      --rust: #a8472a;
      --mid: #1e1b16;
      --mid2: #2a2520;
      --sp: 120px;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--ink);
      color: var(--cream);
      overflow-x: hidden
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9000;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.028'/%3E%3C/svg%3E")
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 26px 64px;
      gap: 20px;
      transition: background .5s, padding .4s, backdrop-filter .5s
    }

    nav.scrolled {
      background: rgba(8, 7, 6, .9);
      backdrop-filter: blur(18px);
      padding: 16px 64px;
      border-bottom: 1px solid rgba(201, 168, 76, .1)
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 44px
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 16px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--cream);
      letter-spacing: .06em;
      text-decoration: none;
      white-space: nowrap
    }

    .logo em {
      font-style: normal;
      color: var(--gold)
    }

    .logo-img {
      height: 42px;
      width: auto;
      object-fit: contain;
      transition: transform .3s ease
    }

    .logo:hover .logo-img {
      transform: scale(1.05)
    }

    /* HAMBURGER */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 210
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--gold);
      transition: transform .3s, opacity .3s
    }

    nav.mobile-active .menu-toggle span:nth-child(1) {
      transform: translateY(8px) rotate(45deg)
    }

    nav.mobile-active .menu-toggle span:nth-child(2) {
      opacity: 0
    }

    nav.mobile-active .menu-toggle span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg)
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 32px
    }

    nav ul a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(240, 235, 224, .5);
      text-decoration: none;
      transition: color .2s
    }

    nav ul a:hover {
      color: var(--gold)
    }

    .lang-toggle {
      display: flex;
      border: 1px solid rgba(201, 168, 76, .28);
      overflow: hidden;
      flex-shrink: 0
    }

    .lang-btn {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border: none;
      background: transparent;
      color: rgba(240, 235, 224, .38);
      cursor: pointer;
      transition: background .2s, color .2s
    }

    .lang-btn.active {
      background: var(--gold);
      color: var(--ink)
    }

    .nav-cta {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--gold);
      padding: 11px 24px;
      text-decoration: none;
      transition: background .25s;
      white-space: nowrap
    }

    .nav-cta:hover {
      background: var(--gold-light)
    }

    /* HERO */
    .hero-wrapper {
      position: relative;
      height: 500vh
    }

    .hero-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
      background: var(--ink)
    }

    .hero-sticky::before,
    .hero-sticky::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      z-index: 10;
      pointer-events: none;
      background: var(--ink);
      height: clamp(28px, 3.5vh, 52px)
    }

    .hero-sticky::before {
      top: 0
    }

    .hero-sticky::after {
      bottom: 0
    }

    .h-stage {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.1s cubic-bezier(.4, 0, .2, 1);
      pointer-events: none
    }

    .h-stage.active {
      opacity: 1;
      pointer-events: all
    }

    .h-photo {
      position: absolute;
      inset: 0;
      z-index: 0
    }

    .gallery-filters {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin: 40px 0;
      flex-wrap: wrap;
    }

    .filter-btn {
      border: 1px solid rgba(197, 168, 122, .2);
      background: transparent;
      color: var(--gold);
      padding: 10px 24px;
      font-family: var(--f-serif);
      font-size: .85rem;
      letter-spacing: .1em;
      cursor: pointer;
      transition: all .3s ease;
      text-transform: uppercase;
      border-radius: 4px;
    }

    .filter-btn:hover {
      background: rgba(197, 168, 122, .1);
      border-color: var(--gold);
    }

    .filter-btn.active {
      background: var(--gold);
      color: #000;
      font-weight: 600;
    }

    .gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      transition: all .5s ease;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      height: 350px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s cubic-bezier(.2, .6, .4, 1);
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-item.hide {
      display: none;
    }

    .gallery-item.g-tall {
      grid-row: span 2;
      height: 720px;
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, transparent 60%);
      display: flex;
      align-items: flex-end;
      padding: 24px;
      opacity: 0;
      transition: opacity .4s ease;
      transition-delay: .1s;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay span {
      color: #fff;
      font-family: var(--f-serif);
      font-size: 1.1rem;
      letter-spacing: .05em;
      font-style: italic;
      transform: translateY(10px);
      transition: transform .4s ease;
    }

    .gallery-item:hover .gallery-overlay span {
      transform: translateY(0);
    }

    /* Lightbox Styles */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .9);
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .4s ease;
      backdrop-filter: blur(8px);
    }

    .lightbox.active {
      display: flex;
      opacity: 1;
    }

    .lightbox-content {
      max-width: 90%;
      max-height: 90vh;
      border-radius: 4px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
      transform: scale(.95);
      transition: transform .4s cubic-bezier(.16, 1, .3, 1);
    }

    .lightbox.active .lightbox-content {
      transform: scale(1);
    }

    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 30px;
      background: none;
      border: none;
      color: #fff;
      font-size: 2.5rem;
      cursor: pointer;
      transition: transform .3s ease;
    }

    .lightbox-close:hover {
      transform: scale(1.1);
      color: var(--gold);
    }

    .lightbox-caption {
      position: absolute;
      bottom: 30px;
      right: 30px;
      background: rgba(0, 0, 0, .6);
      padding: 12px 24px;
      color: #fff;
      font-family: var(--f-serif);
      font-size: 1.1rem;
      border-left: 2px solid var(--gold);
      backdrop-filter: blur(4px);
      pointer-events: none;
      transition: transform .4s ease, opacity .4s ease;
      transform: translateY(10px);
      opacity: 0;
    }

    .lightbox.active .lightbox-caption {
      transform: translateY(0);
      opacity: 1;
      transition-delay: .2s;
    }

    @media(max-width:720px) {
      .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
      }

      .lightbox-caption {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 0.95rem;
        max-width: calc(100% - 40px);
      }
    }

    .h-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
      transform: scale(1.05);
      transition: transform 9s ease
    }

    .h-stage.active .h-photo img {
      transform: scale(1)
    }

    .h-stage::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to top, rgba(8, 7, 6, .96) 0%, rgba(8, 7, 6, .42) 36%, rgba(8, 7, 6, .0) 62%), linear-gradient(to right, rgba(8, 7, 6, .65) 0%, transparent 48%)
    }

    .h-s0 {
      background: #04091a
    }

    .h-s1 {
      background: #0a0906
    }

    .h-s2 {
      background: #0e0c0a
    }

    .h-s3 {
      background: #080706
    }

    .h-content {
      position: absolute;
      bottom: clamp(65px, 9vh, 120px);
      left: 0;
      z-index: 5;
      padding: 0 clamp(28px, 6vw, 80px);
      max-width: 720px
    }

    .h-chapter {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      opacity: .85
    }

    .h-chapter::before {
      content: '';
      display: inline-block;
      width: 36px;
      height: 1px;
      background: currentColor;
      flex-shrink: 0
    }

    .h-s0 .h-chapter {
      color: #6ab4f8
    }

    .h-s1 .h-chapter {
      color: #c8a46a
    }

    .h-s2 .h-chapter,
    .h-s3 .h-chapter {
      color: var(--gold)
    }

    .h-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 7.5vw, 6.8rem);
      font-weight: 300;
      line-height: .96;
      letter-spacing: -.01em;
      margin-bottom: 22px;
      color: var(--cream)
    }

    .h-title em {
      font-style: italic;
      color: var(--gold)
    }

    .h-s0 .h-title em {
      color: #6ab4f8
    }

    .h-s1 .h-title em {
      color: #c8a46a
    }

    .h-sub {
      font-size: clamp(.86rem, 1.3vw, 1rem);
      font-weight: 300;
      line-height: 1.78;
      color: rgba(240, 235, 224, .58);
      max-width: 440px;
      margin-bottom: 36px
    }

    .h-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap
    }

    .btn-primary {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--ink);
      padding: 15px 36px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background .25s, transform .2s;
      display: inline-block
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px)
    }

    .btn-ghost {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .76rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      border: 1px solid rgba(240, 235, 224, .28);
      color: rgba(240, 235, 224, .75);
      padding: 15px 36px;
      text-decoration: none;
      transition: border-color .25s, color .25s;
      display: inline-block
    }

    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold)
    }

    .h-stats {
      position: absolute;
      right: clamp(28px, 5vw, 72px);
      bottom: clamp(75px, 11vh, 130px);
      z-index: 5;
      display: flex;
      flex-direction: column;
      gap: 32px;
      text-align: right;
      transition: opacity .7s
    }

    .h-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.4rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -.02em;
      display: block
    }

    .h-stat-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .62rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(240, 235, 224, .38);
      margin-top: 2px
    }

    .h-progress {
      position: absolute;
      bottom: clamp(28px, 3.5vh, 52px);
      left: 0;
      right: 0;
      height: 1px;
      background: rgba(255, 255, 255, .05);
      z-index: 20
    }

    .h-progress-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, rgba(201, 168, 76, .3), var(--gold));
      transition: width .14s linear
    }

    .h-indicators {
      position: absolute;
      left: clamp(18px, 2.5vw, 36px);
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .h-ind {
      width: 1px;
      height: 30px;
      background: rgba(240, 235, 224, .12);
      cursor: pointer;
      transition: background .35s, height .35s;
      position: relative
    }

    .h-ind.active {
      background: var(--gold);
      height: 52px
    }

    .h-ind-label {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .58rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(240, 235, 224, .0);
      white-space: nowrap;
      transition: color .35s
    }

    .h-ind.active .h-ind-label {
      color: rgba(240, 235, 224, .45)
    }

    .h-scroll-cue {
      position: absolute;
      bottom: clamp(36px, 4.5vh, 65px);
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeIn .8s 1.5s ease forwards;
      transition: opacity .4s
    }

    .h-scroll-cue span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .58rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(240, 235, 224, .22)
    }

    .scroll-line {
      width: 1px;
      height: 38px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollDrop 2s ease-in-out infinite
    }

    @keyframes scrollDrop {
      0% {
        transform: scaleY(0);
        transform-origin: top
      }

      50% {
        transform: scaleY(1);
        transform-origin: top
      }

      51% {
        transform: scaleY(1);
        transform-origin: bottom
      }

      100% {
        transform: scaleY(0);
        transform-origin: bottom
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* TICKER */
    .ticker {
      background: var(--gold);
      overflow: hidden
    }

    .ticker-inner {
      display: flex;
      width: max-content;
      animation: ticker 26s linear infinite
    }

    @keyframes ticker {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .ticker-item {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--ink);
      padding: 14px 28px;
      white-space: nowrap
    }

    .ticker-item::after {
      content: '  ◆  ';
      opacity: .4
    }

    /* SHARED */
    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 12px
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 28px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4.5vw, 4.2rem);
      font-weight: 300;
      line-height: 1.04;
      letter-spacing: -.01em;
      margin-bottom: 28px
    }

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

    .body-text {
      font-size: .97rem;
      font-weight: 300;
      line-height: 1.84;
      color: rgba(240, 235, 224, .55);
      margin-bottom: 20px
    }

    /* SCROLL ANIMATIONS */
    .fade-up {
      opacity: 0;
      transform: translateY(38px);
      transition: opacity .95s cubic-bezier(.16, 1, .3, 1), transform .95s cubic-bezier(.16, 1, .3, 1)
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0)
    }

    .fade-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity .95s cubic-bezier(.16, 1, .3, 1), transform .95s cubic-bezier(.16, 1, .3, 1)
    }

    .fade-left.visible {
      opacity: 1;
      transform: translateX(0)
    }

    .fade-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity .95s cubic-bezier(.16, 1, .3, 1), transform .95s cubic-bezier(.16, 1, .3, 1)
    }

    .fade-right.visible {
      opacity: 1;
      transform: translateX(0)
    }

    .scale-in {
      opacity: 0;
      transform: scale(.93);
      transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1)
    }

    .scale-in.visible {
      opacity: 1;
      transform: scale(1)
    }

    /* ABOUT */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--ink);
      overflow: hidden
    }

    .about-photo {
      position: relative;
      height: 700px;
      overflow: hidden
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      filter: brightness(.85) saturate(.88);
      transition: transform 9s ease;
      transform: scale(1.04)
    }

    .about-photo:hover img {
      transform: scale(1)
    }

    .about-badge {
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 2;
      background: var(--gold);
      color: var(--ink);
      padding: 22px 28px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      line-height: 1.6
    }

    .about-badge strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.2rem;
      font-weight: 300;
      letter-spacing: -.02em;
      color: var(--ink);
      line-height: 1
    }

    .about-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 72px;
      background: var(--mid)
    }

    .signature {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 2.2rem;
      font-weight: 300;
      color: rgba(201, 168, 76, .5);
      margin-top: 36px
    }

    /* NUMBERS */
    .numbers-band {
      background: var(--ink);
      padding: 80px 64px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid rgba(201, 168, 76, .06);
      border-bottom: 1px solid rgba(201, 168, 76, .06)
    }

    .number-item {
      padding: 0 40px;
      border-left: 1px solid rgba(201, 168, 76, .08);
      text-align: center
    }

    .number-item:first-child {
      border-left: none
    }

    .number-big {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5vw, 5.5rem);
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -.02em;
      display: block;
      margin-bottom: 10px
    }

    .number-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(240, 235, 224, .3)
    }

    /* CREDENTIALS */
    .credentials {
      background: var(--mid);
      padding: var(--sp) 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background-color: rgba(201, 168, 76, .07)
    }

    .cred-card {
      background: var(--mid);
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
      transition: background .3s
    }

    .cred-card:hover {
      background: #252118
    }

    .cred-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      font-weight: 300;
      color: rgba(201, 168, 76, .07);
      position: absolute;
      top: 20px;
      right: 32px;
      line-height: 1
    }

    .cred-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 14px;
      line-height: 1.2
    }

    .cred-card p {
      font-size: .9rem;
      font-weight: 300;
      line-height: 1.78;
      color: rgba(240, 235, 224, .48)
    }

    .cred-line {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .55s cubic-bezier(.16, 1, .3, 1)
    }

    .cred-card:hover .cred-line {
      transform: scaleX(1)
    }

    /* PROCESS */
    .process {
      background: var(--ink);
      padding: var(--sp) 64px
    }

    .process-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-bottom: 72px;
      align-items: end
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(201, 168, 76, .07)
    }

    .step {
      background: var(--ink);
      padding: 48px 36px;
      transition: background .3s
    }

    .step:hover {
      background: #0d0c0a
    }

    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      font-weight: 300;
      color: rgba(201, 168, 76, .12);
      line-height: 1;
      margin-bottom: 22px;
      display: block
    }

    .step h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--gold);
      margin-bottom: 12px
    }

    .step p {
      font-size: .88rem;
      font-weight: 300;
      line-height: 1.78;
      color: rgba(240, 235, 224, .42)
    }

    /* SERVICES */
    .services {
      background: var(--mid);
      padding: var(--sp) 64px
    }

    .services-intro {
      margin-bottom: 64px
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(201, 168, 76, .07)
    }

    .service-card {
      background: var(--mid);
      padding: 48px 36px;
      position: relative;
      overflow: hidden;
      transition: background .3s
    }

    .service-card:hover {
      background: #252118
    }

    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 14px;
      line-height: 1.2
    }

    .service-card p {
      font-size: .88rem;
      font-weight: 300;
      line-height: 1.78;
      color: rgba(240, 235, 224, .45);
      margin-bottom: 20px
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px
    }

    .tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .63rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(201, 168, 76, .65);
      border: 1px solid rgba(201, 168, 76, .18);
      padding: 4px 10px
    }

    .service-line {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .55s cubic-bezier(.16, 1, .3, 1)
    }

    .service-card:hover .service-line {
      transform: scaleY(1)
    }

    /* GALLERY */
    .gallery {
      background: var(--ink);
      padding: var(--sp) 0
    }

    .gallery-header {
      padding: 0 64px;
      margin-bottom: 52px
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      grid-template-rows: 380px 300px;
      gap: 3px
    }

    .gallery-grid .g-tall {
      grid-row: 1/3
    }

    .gallery-secondary {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3px;
      margin-top: 3px;
      height: 240px
    }

    .gallery-item {
      overflow: hidden;
      position: relative;
      cursor: pointer
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .85s cubic-bezier(.16, 1, .3, 1), filter .85s;
      filter: brightness(.78) saturate(.82)
    }

    .gallery-item:hover img {
      transform: scale(1.06);
      filter: brightness(.92) saturate(1)
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8, 7, 6, .78) 0%, transparent 52%);
      opacity: 0;
      transition: opacity .4s;
      display: flex;
      align-items: flex-end;
      padding: 22px
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1
    }

    .gallery-overlay span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
      transform: translateY(6px);
      transition: transform .4s;
      display: block
    }

    .gallery-item:hover .gallery-overlay span {
      transform: translateY(0)
    }

    /* TESTIMONIALS */
    .testimonials {
      background: var(--mid);
      padding: var(--sp) 64px;
      position: relative;
      overflow: hidden
    }

    .testimonials::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 30rem;
      font-weight: 300;
      color: rgba(201, 168, 76, .03);
      position: absolute;
      top: -80px;
      left: 10px;
      line-height: 1;
      pointer-events: none
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: rgba(201, 168, 76, .07);
      margin-top: 60px
    }

    .testi-card {
      background: var(--mid);
      padding: 50px 44px;
      transition: background .3s
    }

    .testi-card:hover {
      background: #252118
    }

    .stars {
      color: var(--gold);
      font-size: .78rem;
      letter-spacing: 4px;
      margin-bottom: 20px
    }

    .testi-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.12rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.78;
      color: rgba(240, 235, 224, .78);
      margin-bottom: 26px
    }

    .testi-author {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold)
    }

    .testi-location {
      font-size: .8rem;
      font-weight: 300;
      color: rgba(240, 235, 224, .28);
      margin-top: 3px
    }

    .rating-strip {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-top: 52px;
      padding-top: 40px;
      border-top: 1px solid rgba(201, 168, 76, .08);
      flex-wrap: wrap
    }

    .rating-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4.2rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -.02em
    }

    .rating-sep {
      width: 1px;
      height: 50px;
      background: rgba(201, 168, 76, .14)
    }

    .review-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border: 1px solid rgba(201, 168, 76, .28);
      padding: 11px 22px;
      transition: background .25s, color .25s
    }

    .review-link:hover {
      background: var(--gold);
      color: var(--ink)
    }

    /* MAP */
    .map-section {
      background: var(--ink);
      padding: var(--sp) 64px
    }

    .map-wrap {
      display: grid;
      grid-template-columns: 1fr 1.9fr;
      gap: 56px;
      align-items: start;
      margin-top: 52px
    }

    .map-details {
      display: flex;
      flex-direction: column;
      gap: 0
    }

    .map-detail-item {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 22px 0;
      border-bottom: 1px solid rgba(201, 168, 76, .07)
    }

    .map-detail-item:first-child {
      padding-top: 0
    }

    .map-detail-item strong {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .66rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold)
    }

    .map-detail-item span,
    .map-detail-item a {
      font-size: .94rem;
      font-weight: 300;
      color: rgba(240, 235, 224, .55);
      text-decoration: none;
      transition: color .2s
    }

    .map-detail-item a:hover {
      color: var(--gold)
    }

    .map-iframe-wrap {
      border: 1px solid rgba(201, 168, 76, .12);
      overflow: hidden
    }

    .map-iframe-wrap iframe {
      display: block;
      width: 100%;
      height: 420px;
      border: none
    }

    .gmaps-link {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(240, 235, 224, .4);
      text-decoration: none;
      border-top: 1px solid rgba(201, 168, 76, .08);
      transition: color .2s
    }

    .gmaps-link:hover {
      color: var(--gold)
    }

    /* CTA */
    .cta-section {
      position: relative;
      overflow: hidden;
      background: var(--ink);
      padding: var(--sp) 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 55% 75% at 0% 50%, rgba(201, 168, 76, .04), transparent 65%)
    }

    .cta-section .section-title {
      color: var(--cream)
    }

    .cta-section>div>p {
      font-size: .97rem;
      font-weight: 300;
      color: rgba(240, 235, 224, .5);
      line-height: 1.82;
      margin-bottom: 32px
    }

    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .contact-info-item {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .74rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(240, 235, 224, .32)
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 7px
    }

    .form-field label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .63rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(240, 235, 224, .35)
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      background: rgba(255, 255, 255, .03);
      border: none;
      border-bottom: 1px solid rgba(240, 235, 224, .1);
      color: var(--cream);
      font-family: 'Barlow', sans-serif;
      font-size: .93rem;
      font-weight: 300;
      padding: 12px 4px;
      outline: none;
      transition: border-color .25s, background .25s
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: rgba(240, 235, 224, .18)
    }

    .form-field select option {
      background: #12100e;
      color: var(--cream)
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-bottom-color: var(--gold);
      background: rgba(201, 168, 76, .03)
    }

    .form-field textarea {
      resize: vertical;
      min-height: 96px
    }

    .btn-submit {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--ink);
      border: none;
      padding: 17px 44px;
      cursor: pointer;
      align-self: flex-start;
      transition: background .25s, transform .2s;
      margin-top: 8px
    }

    .btn-submit:hover {
      background: var(--gold-light);
      transform: translateY(-2px)
    }

    /* FOOTER */
    footer {
      background: #050504;
      padding: 72px 64px 44px;
      border-top: 1px solid rgba(201, 168, 76, .07)
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(240, 235, 224, .04)
    }

    .footer-brand .logo {
      font-size: 1.65rem;
      display: block;
      margin-bottom: 18px
    }

    .footer-brand p {
      font-size: .86rem;
      font-weight: 300;
      line-height: 1.82;
      color: rgba(240, 235, 224, .28);
      max-width: 280px
    }

    .footer-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .63rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px
    }

    .footer-col ul {
      list-style: none
    }

    .footer-col ul li {
      margin-bottom: 11px
    }

    .footer-col ul li a {
      font-size: .86rem;
      font-weight: 300;
      color: rgba(240, 235, 224, .32);
      text-decoration: none;
      transition: color .2s
    }

    .footer-col ul li a:hover {
      color: var(--gold)
    }

    .footer-bottom {
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .footer-bottom p {
      font-size: .74rem;
      color: rgba(240, 235, 224, .16)
    }

    .footer-bottom a {
      color: rgba(201, 168, 76, .38);
      text-decoration: none
    }

    .license-badge {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .63rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(240, 235, 224, .18);
      border: 1px solid rgba(240, 235, 224, .07);
      padding: 5px 14px
    }

    [data-t] {
      transition: opacity .14s ease
    }

    body.lang-switching [data-t] {
      opacity: 0 !important;
    }

    /* RESPONSIVE */
    @media (max-width: 1100px) {
      :root {
        --sp: 80px;
      }

      nav,
      nav.scrolled {
        padding: 18px 32px;
      }

      nav ul {
        gap: 20px;
      }

      .h-content {
        padding: 0 32px;
      }

      .h-stats {
        right: 32px;
      }

      .about {
        grid-template-columns: 1fr;
      }

      .about-photo {
        height: 480px;
      }

      .about-copy {
        padding: 60px 32px;
      }

      .numbers-band {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 40px 32px;
      }

      .number-item {
        padding: 28px 20px;
      }

      .credentials {
        padding: 60px 32px;
        grid-template-columns: 1fr;
      }

      .process {
        padding: 60px 32px;
      }

      .process-intro {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .services {
        padding: 60px 32px;
      }

      .services-grid {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-header {
        padding: 0 32px;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 220px;
      }

      .gallery-grid .g-tall {
        grid-row: 1/2;
      }

      .gallery-secondary {
        grid-template-columns: 1fr 1fr;
        height: auto;
      }

      .gallery-secondary .gallery-item {
        height: 200px;
      }

      .testimonials {
        padding: 60px 32px;
      }

      .testi-grid {
        grid-template-columns: 1fr;
      }

      .map-section {
        padding: 60px 32px;
      }

      .map-wrap {
        grid-template-columns: 1fr;
      }

      .cta-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 32px;
      }

      footer {
        padding: 56px 32px 36px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      :root {
        --sp: 60px;
      }

      .menu-toggle {
        display: flex;
      }

      nav {
        background: var(--ink);
        padding: 10px 16px !important;
        gap: 8px;
      }

      .nav-left {
        gap: 12px;
      }

      .nav-right {
        gap: 8px;
      }

      .logo-img {
        height: 28px;
      }

      .logo {
        font-size: 1.15rem;
      }

      .logo span {
        display: none;
      }

      .lang-toggle {
        display: none;
      }

      .nav-cta {
        padding: 7px 12px;
        font-size: .62rem;
        letter-spacing: .1em;
      }

      .nav-left ul {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: var(--ink);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 200;
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(.16, 1, .3, 1);
      }

      nav.mobile-active .nav-left ul {
        transform: translateX(0);
      }

      .nav-left ul a {
        font-size: 1.1rem;
        color: var(--cream);
      }

      .h-stats,
      .h-indicators {
        display: none;
      }

      .h-content {
        padding: 0 20px;
        bottom: 70px;
      }

      .h-title {
        font-size: clamp(2.1rem, 9.5vw, 3rem);
        margin-bottom: 12px;
      }

      .h-sub {
        font-size: .86rem;
        margin-bottom: 24px;
        line-height: 1.6;
      }

      .section-title {
        font-size: clamp(2.1rem, 8vw, 2.8rem);
      }

      .numbers-band {
        grid-template-columns: 1fr;
        padding: 24px 20px;
      }

      .number-item {
        padding: 16px 10px;
        border-left: none;
        border-bottom: 1px solid rgba(201, 168, 76, .08);
      }

      .number-item:last-child {
        border-bottom: none;
      }

      .steps-grid,
      .services-grid,
      .credentials,
      .testi-grid {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .gallery-grid .gallery-item {
        height: 240px;
      }

      .gallery-secondary {
        grid-template-columns: 1fr 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .about-badge strong {
        font-size: 2.2rem;
      }

      .contact-form {
        padding: 32px 20px;
      }

      .map-details {
        padding: 32px 20px;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .about-badge {
        padding: 12px 16px;
      }

      .testimonial-card {
        padding: 32px 24px;
      }

      input,
      select,
      textarea {
        width: 100% !important;
        font-size: 16px;
      }

      .map-container iframe {
        width: 100% !important;
        height: 300px !important;
        border: 0;
      }

      .form-group {
        width: 100% !important;
        margin-bottom: 20px;
      }
    }

    @media (max-width: 480px) {
      .nav-cta {
        display: none;
      }

      /* Hide CTA in header on very small screens to prevent overlap */
      .h-title {
        font-size: 1.85rem;
      }

      .h-ctas {
        flex-direction: column;
        width: 100%;
      }

      .btn-primary,
      .btn-ghost {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
      }

      .about-photo {
        height: 320px;
      }

      .section-title {
        font-size: 1.9rem;
      }
    }
