:root {
      --bg: #090c0b;
      --bg-2: #0f1412;
      --bg-3: #151b18;
      --surface: #121714;
      --surface-2: #19201c;
      --cream: #f4f0e8;
      --muted: #a8aea9;
      --muted-2: #737b75;
      --gold: #e2c892;
      --gold-2: #b89a63;
      --green: #2f7d65;
      --green-2: #4fa589;
      --line: rgba(226, 200, 146, .18);
      --white-line: rgba(255,255,255,.10);
      --shadow: 0 24px 80px rgba(0,0,0,.34);
      --radius: 26px;
      --radius-sm: 16px;
      --container: 1220px;
      --nav-h: 86px;
      --ease: cubic-bezier(.2,.8,.2,1);
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--nav-h) + 24px);
    }

    body {
      font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--cream);
      line-height: 1.65;
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
    }

    body.nav-open,
    body.modal-open {
      overflow: hidden;
    }

    img,
    video {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ::selection {
      background: var(--gold);
      color: #17140e;
    }

    .container {
      width: min(var(--container), calc(100% - 48px));
      margin-inline: auto;
    }

    .section {
      position: relative;
      padding: 118px 0;
    }

    .section--light {
      background: #f2efe8;
      color: #151815;
    }

    .section--cream {
      background: #e9e3d8;
      color: #151815;
    }

    .section--dark {
      background: var(--bg-2);
    }

    .section--black {
      background: #070908;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: var(--gold);
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 42px;
      height: 1px;
      background: currentColor;
    }

    .section--light .eyebrow,
    .section--cream .eyebrow {
      color: #8a6f3e;
    }

    .section-title {
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(2.35rem, 5vw, 5.2rem);
      line-height: 1.03;
      letter-spacing: -.035em;
      font-weight: 500;
      max-width: 980px;
    }

    .section-title em {
      color: var(--gold);
      font-weight: 500;
    }

    .section--light .section-title em,
    .section--cream .section-title em {
      color: #8c6f3a;
    }

    .section-lead {
      margin-top: 26px;
      max-width: 700px;
      color: var(--muted);
      font-size: clamp(1rem, 1.6vw, 1.2rem);
    }

    .section--light .section-lead,
    .section--cream .section-lead {
      color: #5e655f;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 58px;
      padding: 0 28px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      cursor: pointer;
      transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--gold);
      color: #18150e;
      box-shadow: 0 14px 34px rgba(226, 200, 146, .18);
    }

    .btn-primary:hover {
      background: #eed7a7;
    }

    .btn-outline {
      border-color: rgba(255,255,255,.25);
      color: var(--cream);
      background: rgba(7,9,8,.22);
      backdrop-filter: blur(10px);
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(7,9,8,.46);
    }

    .btn-dark {
      background: #111512;
      color: var(--cream);
    }

    .btn-dark:hover {
      background: #202821;
    }

    .btn svg {
      width: 18px;
      height: 18px;
    }

    .arrow {
      font-size: 1.1rem;
      transform: translateY(-1px);
    }

    /* HEADER */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--nav-h);
      z-index: 1000;
      border-bottom: 1px solid transparent;
      transition: background .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease), height .3s var(--ease);
    }

    .site-header.scrolled {
      height: 74px;
      background: rgba(8, 11, 9, .88);
      backdrop-filter: blur(18px);
      border-color: rgba(255,255,255,.08);
    }

    .nav {
      width: min(var(--container), calc(100% - 48px));
      height: 100%;
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .brand-mark {
      width: 56px;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(226,200,146,.65);
      color: var(--gold);
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.15rem;
      font-weight: 600;
      letter-spacing: .02em;
      background: rgba(10,13,11,.42);
    }

    .brand-copy {
      display: grid;
      line-height: 1.1;
    }

    .brand-copy strong {
      font-size: .92rem;
      letter-spacing: .16em;
    }

    .brand-copy small {
      margin-top: 7px;
      color: #a8ada9;
      font-size: .62rem;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: clamp(18px, 2.2vw, 36px);
      margin-left: auto;
    }

    .nav-menu a {
      position: relative;
      color: rgba(244,240,232,.84);
      font-size: .9rem;
      font-weight: 600;
      padding: 14px 0;
      transition: color .2s ease;
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 7px;
      width: 100%;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .28s var(--ease);
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: var(--cream);
    }

    .nav-menu a:hover::after,
    .nav-menu a.active::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-cta {
      min-height: 48px;
      padding-inline: 22px;
      border: 1px solid rgba(226,200,146,.55);
      border-radius: 999px;
      font-size: .88rem;
      font-weight: 700;
      color: var(--gold);
      transition: background .25s ease, color .25s ease, transform .25s ease;
    }

    .nav-cta:hover {
      background: var(--gold);
      color: #18150e;
      transform: translateY(-1px);
    }

    .menu-toggle {
      width: 48px;
      height: 48px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 50%;
      display: none;
      background: rgba(8,11,9,.4);
      color: var(--cream);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }

    .menu-toggle span {
      display: block;
      width: 19px;
      height: 1px;
      background: currentColor;
      transition: transform .25s ease, opacity .25s ease;
    }

    .menu-toggle.is-open span:first-child {
      transform: translateY(3px) rotate(45deg);
    }

    .menu-toggle.is-open span:last-child {
      transform: translateY(-3px) rotate(-45deg);
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100svh;
      display: grid;
      align-items: end;
      isolation: isolate;
      overflow: hidden;
      background: #0b0f0d;
    }

    .hero-media,
    .hero-media::before,
    .hero-media::after {
      position: absolute;
      inset: 0;
    }

    .hero-media {
      z-index: -3;
      background:
        radial-gradient(circle at 72% 38%, rgba(230,210,169,.13), transparent 31%),
        linear-gradient(135deg, #171d19, #090b0a 72%);
    }

    .hero-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 62% center;
      filter: saturate(.76) contrast(1.04) brightness(.82);
    }

    .hero-media::before {
      content: "";
      z-index: 1;
      background:
        linear-gradient(90deg,
          rgba(5,7,6,.92) 0%,
          rgba(5,7,6,.82) 25%,
          rgba(5,7,6,.56) 48%,
          rgba(5,7,6,.20) 72%,
          rgba(5,7,6,.42) 100%),
        linear-gradient(180deg,
          rgba(4,6,5,.55) 0%,
          rgba(4,6,5,.02) 42%,
          rgba(4,6,5,.74) 100%);
      pointer-events: none;
    }

    .hero-media::after {
      content: "";
      z-index: 2;
      opacity: .14;
      pointer-events: none;
      background-image:
        repeating-radial-gradient(circle at 30% 30%, rgba(255,255,255,.12) 0 1px, transparent 1px 3px);
      background-size: 5px 5px;
      mix-blend-mode: soft-light;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      width: min(var(--container), calc(100% - 48px));
      margin: 0 auto;
      padding: calc(var(--nav-h) + 90px) 0 44px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 285px;
      gap: 70px;
      align-items: center;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: rgba(244,240,232,.9);
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero-kicker::before {
      content: "";
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .hero h1 {
      font-family: "Playfair Display", Georgia, serif;
      font-weight: 500;
      letter-spacing: -.045em;
      line-height: .99;
      font-size: clamp(3.5rem, 7.35vw, 7.8rem);
      max-width: 1080px;
      text-wrap: balance;
    }

    .hero h1 em {
      color: var(--gold);
      font-weight: 500;
    }

    .hero-copy {
      max-width: 700px;
      margin-top: 30px;
      color: rgba(244,240,232,.83);
      font-size: clamp(1.05rem, 1.5vw, 1.27rem);
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 38px;
    }

    .hero-hud {
      align-self: end;
      margin-bottom: 92px;
      padding-left: 30px;
      border-left: 1px solid rgba(255,255,255,.22);
      color: rgba(244,240,232,.88);
    }

    .hud-line {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }

    .record {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #de6259;
      box-shadow: 0 0 0 12px rgba(222,98,89,.10);
      animation: rec 1.8s ease-in-out infinite;
    }

    @keyframes rec {
      50% { box-shadow: 0 0 0 7px rgba(222,98,89,.05); }
    }

    .hud-label {
      display: grid;
      line-height: 1.2;
    }

    .hud-label small {
      color: rgba(244,240,232,.46);
      font-size: .65rem;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .hud-label strong {
      margin-top: 8px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1rem;
    }

    .hud-data {
      display: grid;
      gap: 10px;
      color: rgba(244,240,232,.58);
      font-size: .67rem;
      letter-spacing: .17em;
      text-transform: uppercase;
    }

    .hero-badges {
      margin-top: 58px;
      padding-top: 26px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .hero-badge {
      display: flex;
      align-items: center;
      gap: 11px;
      color: rgba(244,240,232,.68);
      font-size: .78rem;
      font-weight: 600;
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      border: 1px solid var(--gold);
      transform: rotate(45deg);
      flex: 0 0 auto;
    }

    .hero-play-fallback {
      position: absolute;
      z-index: 5;
      right: 32px;
      bottom: 120px;
      display: none;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 999px;
      padding: 12px 16px;
      background: rgba(8,11,9,.68);
      backdrop-filter: blur(12px);
      color: var(--cream);
      cursor: pointer;
    }

    .hero-play-fallback.show {
      display: inline-flex;
    }

    /* SERVICES */
    .services-head {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 70px;
      align-items: end;
      margin-bottom: 54px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service-card {
      min-height: 330px;
      padding: 30px;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255,255,255,.035), transparent),
        var(--surface);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      width: 190px;
      height: 190px;
      right: -90px;
      top: -90px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(226,200,146,.13), transparent 70%);
      transition: transform .4s var(--ease);
    }

    .service-card:hover {
      transform: translateY(-7px);
      border-color: rgba(226,200,146,.34);
      background:
        linear-gradient(180deg, rgba(226,200,146,.055), transparent),
        #151b18;
    }

    .service-card:hover::before {
      transform: scale(1.25);
    }

    .service-no {
      color: var(--gold);
      font-family: "Playfair Display", Georgia, serif;
      font-size: .95rem;
    }

    .service-icon {
      width: 52px;
      height: 52px;
      margin: 38px 0 26px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(226,200,146,.25);
      color: var(--gold);
      background: rgba(226,200,146,.04);
    }

    .service-icon svg {
      width: 23px;
      height: 23px;
    }

    .service-card h3 {
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.55rem;
      font-weight: 500;
      line-height: 1.2;
    }

    .service-card p {
      margin-top: 15px;
      color: var(--muted);
      font-size: .94rem;
    }

    .service-link {
      margin-top: auto;
      padding-top: 22px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    /* WHY */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-copy .section-title {
      font-size: clamp(2.5rem, 5vw, 5rem);
    }

    .why-copy p {
      margin-top: 28px;
      color: #59615b;
      font-size: 1.08rem;
    }

    .why-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .why-item {
      min-height: 132px;
      padding: 22px;
      border: 1px solid rgba(20,24,21,.12);
      border-radius: 18px;
      background: rgba(255,255,255,.42);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .3s var(--ease), border-color .3s ease;
    }

    .why-item:hover {
      transform: translateY(-4px);
      border-color: rgba(138,111,62,.45);
    }

    .why-check {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #1d3d33;
      color: #e7dcc6;
      font-size: .85rem;
    }

    .why-item strong {
      margin-top: 18px;
      font-size: .93rem;
      color: #232723;
    }

    /* PROCESS */
    .process-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 70px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: relative;
    }

    .process-grid::before {
      content: "";
      position: absolute;
      top: 32px;
      left: 7%;
      right: 7%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(226,200,146,.45), transparent);
    }

    .process-step {
      position: relative;
      padding: 0 24px;
      text-align: center;
    }

    .process-number {
      position: relative;
      z-index: 2;
      width: 64px;
      height: 64px;
      margin: 0 auto 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(226,200,146,.45);
      background: var(--bg-2);
      color: var(--gold);
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.15rem;
    }

    .process-step h3 {
      font-family: "Playfair Display", Georgia, serif;
      font-weight: 500;
      font-size: 1.35rem;
    }

    .process-step p {
      margin-top: 14px;
      color: var(--muted);
      font-size: .9rem;
    }

    /* PORTFOLIO */
    .portfolio-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 36px;
      margin-bottom: 50px;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      grid-auto-rows: 245px;
      gap: 18px;
    }

    .portfolio-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.08);
      background: #151a17;
      cursor: pointer;
      isolation: isolate;
    }

    .portfolio-card:first-child {
      grid-row: span 2;
    }

    .portfolio-art {
      position: absolute;
      inset: 0;
      transition: transform .55s var(--ease), filter .55s var(--ease);
      background:
        radial-gradient(circle at 66% 38%, rgba(226,200,146,.42), transparent 18%),
        radial-gradient(circle at 49% 58%, rgba(63,112,95,.46), transparent 23%),
        linear-gradient(135deg, #2b332e, #0f1412 68%);
    }

    .portfolio-card:nth-child(2) .portfolio-art {
      background:
        linear-gradient(125deg, rgba(226,200,146,.23), transparent 42%),
        radial-gradient(circle at 70% 42%, rgba(82,126,109,.45), transparent 25%),
        linear-gradient(145deg, #1b2722, #0b0e0d);
    }

    .portfolio-card:nth-child(3) .portfolio-art {
      background:
        radial-gradient(circle at 26% 28%, rgba(226,200,146,.28), transparent 25%),
        linear-gradient(145deg, #20211c, #0c1110);
    }

    .portfolio-card:nth-child(4) .portfolio-art {
      background:
        linear-gradient(45deg, rgba(47,125,101,.35), transparent 50%),
        linear-gradient(145deg, #27332d, #0e1210);
    }

    .portfolio-card:nth-child(5) .portfolio-art {
      background:
        radial-gradient(circle at 70% 36%, rgba(226,200,146,.25), transparent 23%),
        linear-gradient(135deg, #292720, #101412);
    }

    .portfolio-art::before,
    .portfolio-art::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 24px;
      transform: rotate(-7deg);
    }

    .portfolio-art::before {
      width: 36%;
      height: 66%;
      right: 12%;
      top: 14%;
      background: rgba(255,255,255,.025);
    }

    .portfolio-art::after {
      width: 22%;
      height: 44%;
      left: 18%;
      bottom: 16%;
      border-radius: 50% 50% 18px 18px;
      background: rgba(255,255,255,.018);
    }

    .portfolio-card:hover .portfolio-art {
      transform: scale(1.045);
      filter: brightness(1.08);
    }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: linear-gradient(180deg, rgba(6,8,7,.08), rgba(6,8,7,.82));
    }

    .portfolio-tag {
      align-self: flex-start;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(8,11,9,.54);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(10px);
      color: rgba(244,240,232,.78);
      font-size: .66rem;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .portfolio-bottom {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
    }

    .portfolio-bottom h3 {
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(1.25rem, 2vw, 1.9rem);
      font-weight: 500;
      line-height: 1.14;
    }

    .play-button {
      width: 54px;
      height: 54px;
      flex: 0 0 auto;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(8,11,9,.54);
      color: var(--cream);
      backdrop-filter: blur(12px);
      transition: background .25s ease, color .25s ease, transform .25s ease;
    }

    .portfolio-card:hover .play-button {
      transform: scale(1.08);
      background: var(--gold);
      color: #17140e;
    }

    .play-button svg {
      width: 20px;
      height: 20px;
      margin-left: 3px;
    }

    /* BEHIND */
    .behind-wrap {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      min-height: 650px;
      border-radius: 34px;
      overflow: hidden;
      background: #101411;
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: var(--shadow);
    }

    .behind-visual {
      position: relative;
      min-height: 560px;
      background:
        radial-gradient(circle at 30% 38%, rgba(239,222,184,.28), transparent 18%),
        radial-gradient(circle at 73% 42%, rgba(239,222,184,.2), transparent 20%),
        linear-gradient(135deg, #29302a, #111512 62%);
      overflow: hidden;
    }

    .behind-visual::before {
      content: "";
      position: absolute;
      width: 170px;
      height: 260px;
      left: 18%;
      top: 20%;
      border-radius: 50% 50% 24px 24px;
      background: linear-gradient(180deg, rgba(246,244,237,.54), rgba(246,244,237,.11));
      filter: blur(.2px);
    }

    .behind-visual::after {
      content: "";
      position: absolute;
      width: 130px;
      height: 230px;
      right: 18%;
      top: 24%;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.18);
      transform: rotate(5deg);
      box-shadow: -330px 10px 0 -1px rgba(255,255,255,.03);
    }

    .softbox {
      position: absolute;
      width: 140px;
      height: 190px;
      top: 17%;
      border: 1px solid rgba(255,255,255,.24);
      background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.035));
      clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
      box-shadow: 0 0 72px rgba(245,225,183,.12);
    }

    .softbox.left {
      left: 4%;
      transform: rotate(8deg);
    }

    .softbox.right {
      right: 4%;
      transform: rotate(-8deg);
    }

    .camera-silhouette {
      position: absolute;
      left: 52%;
      bottom: 14%;
      width: 60px;
      height: 145px;
      transform: translateX(-50%);
    }

    .camera-silhouette::before {
      content: "";
      position: absolute;
      width: 44px;
      height: 62px;
      top: 0;
      left: 8px;
      border-radius: 12px;
      background: #090b0a;
      border: 1px solid rgba(255,255,255,.13);
    }

    .camera-silhouette::after {
      content: "";
      position: absolute;
      width: 4px;
      height: 92px;
      left: 28px;
      top: 54px;
      background: #080a09;
      box-shadow: -28px 70px 0 -1px #080a09, 28px 70px 0 -1px #080a09;
    }

    .behind-caption {
      position: absolute;
      left: 28px;
      bottom: 28px;
      padding: 10px 14px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 999px;
      background: rgba(8,11,9,.52);
      backdrop-filter: blur(10px);
      color: rgba(244,240,232,.68);
      font-size: .67rem;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .behind-copy {
      padding: clamp(42px, 6vw, 82px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .behind-copy h2 {
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(2.45rem, 5vw, 4.8rem);
      line-height: 1.02;
      font-weight: 500;
      letter-spacing: -.035em;
    }

    .behind-copy p {
      margin-top: 28px;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .behind-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 44px;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,.10);
    }

    .behind-metrics strong {
      display: block;
      color: var(--gold);
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.45rem;
      font-weight: 500;
    }

    .behind-metrics span {
      display: block;
      margin-top: 5px;
      color: var(--muted-2);
      font-size: .72rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    /* PACKAGES */
    .packages-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 42px;
      margin-bottom: 54px;
    }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: stretch;
    }

    .package-card {
      position: relative;
      padding: 34px;
      border-radius: var(--radius);
      border: 1px solid rgba(21,24,21,.12);
      background: rgba(255,255,255,.48);
      display: flex;
      flex-direction: column;
      min-height: 520px;
      transition: transform .35s var(--ease), box-shadow .35s ease;
    }

    .package-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 20px 60px rgba(34,30,24,.09);
    }

    .package-card.featured {
      background: #16231e;
      color: var(--cream);
      border-color: rgba(226,200,146,.42);
      transform: translateY(-12px);
      box-shadow: 0 28px 70px rgba(30,39,34,.18);
    }

    .package-card.featured:hover {
      transform: translateY(-18px);
    }

    .package-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--gold);
      color: #18150e;
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .package-kicker {
      color: #8a6f3e;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .featured .package-kicker {
      color: var(--gold);
    }

    .package-card h3 {
      margin-top: 18px;
      font-family: "Playfair Display", Georgia, serif;
      font-weight: 500;
      font-size: 2rem;
      line-height: 1.1;
    }

    .package-card > p {
      margin-top: 18px;
      color: #606860;
      font-size: .94rem;
    }

    .featured > p {
      color: var(--muted);
    }

    .package-list {
      list-style: none;
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .package-list li {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      color: #383d39;
      font-size: .9rem;
    }

    .featured .package-list li {
      color: rgba(244,240,232,.76);
    }

    .package-list li::before {
      content: "✓";
      width: 21px;
      height: 21px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(47,125,101,.13);
      color: #2f705b;
      font-size: .7rem;
      font-weight: 800;
    }

    .featured .package-list li::before {
      background: rgba(226,200,146,.13);
      color: var(--gold);
    }

    .package-bottom {
      margin-top: auto;
      padding-top: 30px;
    }

    .package-price {
      display: block;
      margin-bottom: 18px;
      color: #8a6f3e;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.38rem;
    }

    .featured .package-price {
      color: var(--gold);
    }

    .package-bottom .btn {
      width: 100%;
    }

    /* ABOUT */
    .about-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 80px;
      align-items: center;
    }

    .about-visual {
      min-height: 620px;
      border-radius: 32px;
      overflow: hidden;
      position: relative;
      background:
        radial-gradient(circle at 55% 35%, rgba(226,200,146,.28), transparent 18%),
        radial-gradient(circle at 35% 62%, rgba(47,125,101,.42), transparent 25%),
        linear-gradient(135deg, #27312b, #101411 68%);
      border: 1px solid rgba(255,255,255,.08);
    }

    .about-visual::before {
      content: "";
      position: absolute;
      width: 44%;
      height: 64%;
      right: 12%;
      top: 16%;
      border-radius: 50% 50% 30px 30px;
      background: linear-gradient(180deg, rgba(244,240,232,.34), rgba(244,240,232,.06));
    }

    .about-visual::after {
      content: "PLENUS WORKS / PRODUCTION";
      position: absolute;
      left: 24px;
      bottom: 24px;
      color: rgba(244,240,232,.48);
      font-size: .64rem;
      letter-spacing: .16em;
    }

    .about-copy p {
      margin-top: 28px;
      color: var(--muted);
      font-size: 1.06rem;
    }

    .about-points {
      display: grid;
      gap: 16px;
      margin-top: 36px;
    }

    .about-point {
      padding: 18px 0;
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 16px;
      border-top: 1px solid rgba(255,255,255,.10);
    }

    .about-point span {
      color: var(--gold);
      font-family: "Playfair Display", Georgia, serif;
    }

    .about-point strong {
      display: block;
      font-size: .98rem;
    }

    .about-point p {
      margin-top: 5px;
      font-size: .88rem;
      color: var(--muted-2);
    }

    /* FAQ */
    .faq-wrap {
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 80px;
      align-items: start;
    }

    .faq-intro {
      position: sticky;
      top: 110px;
    }

    .faq-list {
      border-top: 1px solid rgba(24,28,24,.15);
    }

    .faq-item {
      border-bottom: 1px solid rgba(24,28,24,.15);
    }

    .faq-question {
      width: 100%;
      padding: 25px 0;
      border: 0;
      background: transparent;
      color: #171a17;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      cursor: pointer;
      font-weight: 700;
      font-size: 1rem;
    }

    .faq-icon {
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(24,28,24,.17);
      transition: transform .28s ease, background .28s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      color: #5d655e;
      transition: max-height .35s var(--ease);
    }

    .faq-answer p {
      padding: 0 52px 26px 0;
    }

    .faq-item.open .faq-answer {
      max-height: 220px;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: #1c352d;
      color: #fff;
    }

    /* CONTACT */
    .contact-grid {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 70px;
      align-items: start;
    }

    .contact-info {
      padding-right: 24px;
    }

    .contact-info p {
      margin-top: 26px;
      color: var(--muted);
      font-size: 1.03rem;
    }

    .contact-details {
      margin-top: 38px;
      display: grid;
      gap: 18px;
    }

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

    .contact-detail-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(226,200,146,.22);
      color: var(--gold);
    }

    .contact-detail-icon svg {
      width: 19px;
      height: 19px;
    }

    .contact-detail small {
      display: block;
      color: var(--muted-2);
      font-size: .68rem;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .contact-detail strong,
    .contact-detail a {
      display: block;
      margin-top: 5px;
      color: var(--cream);
      font-size: .95rem;
      font-weight: 600;
      line-height: 1.5;
    }

    .contact-form {
      padding: clamp(26px, 4vw, 46px);
      border-radius: 30px;
      background: #f0ece4;
      color: #171a17;
      box-shadow: var(--shadow);
    }

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

    .field {
      display: grid;
      gap: 8px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      font-size: .77rem;
      font-weight: 700;
      color: #4b514c;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(23,26,23,.13);
      border-radius: 13px;
      background: rgba(255,255,255,.62);
      color: #171a17;
      padding: 15px 16px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: #997d48;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(153,125,72,.10);
    }

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

    .honeypot {
      position: absolute;
      left: -9999px;
      opacity: 0;
      pointer-events: none;
    }

    .form-note {
      margin-top: 14px;
      color: #697069;
      font-size: .73rem;
    }

    .contact-form .btn {
      width: 100%;
      margin-top: 22px;
    }

    .map-wrap {
      margin-top: 26px;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.08);
      min-height: 300px;
      background: #121714;
    }

    .map-wrap iframe {
      width: 100%;
      height: 330px;
      border: 0;
      filter: grayscale(1) invert(.92) contrast(.86);
      opacity: .9;
    }

    /* FOOTER */
    .footer {
      background: #050706;
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 70px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .8fr .9fr .8fr;
      gap: 44px;
    }

    .footer-brand p {
      margin-top: 20px;
      max-width: 360px;
      color: var(--muted-2);
      font-size: .9rem;
    }

    .footer h4 {
      color: var(--cream);
      font-size: .8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .footer-links {
      display: grid;
      gap: 11px;
    }

    .footer-links a {
      color: var(--muted-2);
      font-size: .88rem;
      transition: color .2s ease;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .socials {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .social {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.11);
      color: var(--muted);
      transition: border-color .2s ease, color .2s ease, transform .2s ease;
    }

    .social:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .social svg {
      width: 18px;
      height: 18px;
    }

    .footer-bottom {
      margin-top: 54px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.08);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: #646a65;
      font-size: .74rem;
    }

    /* WHATSAPP */
    .floating-whatsapp {
      position: fixed;
      z-index: 900;
      right: 22px;
      bottom: 22px;
      min-height: 54px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0 20px;
      border-radius: 999px;
      background: #2f7d65;
      color: #fff;
      font-size: .84rem;
      font-weight: 800;
      box-shadow: 0 16px 42px rgba(20,64,50,.34);
      transition: transform .25s ease, background .25s ease;
    }

    .floating-whatsapp:hover {
      transform: translateY(-3px);
      background: #399577;
    }

    .floating-whatsapp svg {
      width: 19px;
      height: 19px;
    }

    /* MODAL */
    .video-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: none;
      place-items: center;
      padding: 24px;
      background: rgba(2,4,3,.88);
      backdrop-filter: blur(12px);
    }

    .video-modal.open {
      display: grid;
    }

    .modal-dialog {
      width: min(1040px, 100%);
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      background: #050706;
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 30px 100px rgba(0,0,0,.55);
    }

    .modal-video-wrap {
      aspect-ratio: 16 / 9;
      background: #000;
    }

    .modal-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .modal-close {
      position: absolute;
      z-index: 4;
      top: 14px;
      right: 14px;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 50%;
      background: rgba(5,7,6,.72);
      color: #fff;
      display: grid;
      place-items: center;
      cursor: pointer;
      backdrop-filter: blur(10px);
      font-size: 1.5rem;
    }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .75s var(--ease), transform .75s var(--ease);
    }

    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 { transition-delay: .08s; }
    .delay-2 { transition-delay: .16s; }
    .delay-3 { transition-delay: .24s; }
    .delay-4 { transition-delay: .32s; }

    /* RESPONSIVE */
    @media (max-width: 1120px) {
      .nav-menu {
        gap: 18px;
      }

      .nav-menu a {
        font-size: .82rem;
      }

      .hero-grid {
        grid-template-columns: 1fr 240px;
        gap: 32px;
      }

      .hero h1 {
        font-size: clamp(3.5rem, 7vw, 6.2rem);
      }

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

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

      .portfolio-card:first-child {
        grid-row: span 1;
        grid-column: span 2;
      }

      .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
      }

      .footer-grid > :last-child {
        grid-column: 2 / 4;
      }
    }

    @media (max-width: 920px) {
      :root {
        --nav-h: 76px;
      }

      .container,
      .nav,
      .hero-content {
        width: min(100% - 34px, var(--container));
      }

      .menu-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .nav-cta {
        display: none;
      }

      .nav-menu {
        position: fixed;
        inset: 0;
        z-index: -1;
        background: rgba(6,9,7,.98);
        backdrop-filter: blur(18px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
      }

      .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav-menu a {
        font-family: "Playfair Display", Georgia, serif;
        font-size: clamp(1.75rem, 6vw, 3rem);
        font-weight: 500;
        padding: 8px 0;
      }

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

      .hero-hud {
        display: none;
      }

      .hero-content {
        padding-top: 150px;
      }

      .hero-badges {
        grid-template-columns: 1fr 1fr;
      }

      .services-head,
      .why-grid,
      .about-grid,
      .faq-wrap,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .why-copy {
        max-width: 760px;
      }

      .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px 20px;
      }

      .process-grid::before {
        display: none;
      }

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

      .behind-visual {
        min-height: 470px;
      }

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

      .package-card.featured {
        transform: none;
      }

      .package-card.featured:hover {
        transform: translateY(-7px);
      }

      .about-visual {
        min-height: 500px;
        order: 2;
      }

      .faq-intro {
        position: static;
      }

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

      .footer-grid > :last-child {
        grid-column: auto;
      }
    }

    @media (max-width: 680px) {
      .section {
        padding: 84px 0;
      }

      .brand-mark {
        width: 48px;
      }

      .brand-copy strong {
        font-size: .78rem;
      }

      .brand-copy small {
        font-size: .54rem;
      }

      .hero {
        min-height: 820px;
      }

      .hero-video {
        object-position: 61% center;
      }

      .hero-media::before {
        background:
          linear-gradient(180deg,
            rgba(5,7,6,.60) 0%,
            rgba(5,7,6,.42) 31%,
            rgba(5,7,6,.62) 62%,
            rgba(5,7,6,.94) 100%);
      }

      .hero-content {
        padding-top: 132px;
        padding-bottom: 28px;
      }

      .hero-kicker {
        font-size: .62rem;
        letter-spacing: .14em;
        margin-bottom: 22px;
      }

      .hero h1 {
        font-size: clamp(3.05rem, 15.4vw, 5rem);
        line-height: .98;
      }

      .hero-copy {
        font-size: .98rem;
        line-height: 1.65;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-badges {
        grid-template-columns: 1fr;
        gap: 11px;
        margin-top: 38px;
      }

      .hero-play-fallback {
        right: 16px;
        bottom: 16px;
      }

      .services-head,
      .process-head,
      .portfolio-head,
      .packages-head {
        display: block;
      }

      .services-head .section-lead,
      .process-head .section-lead,
      .portfolio-head .section-lead,
      .packages-head .section-lead {
        margin-top: 22px;
      }

      .services-grid,
      .why-list,
      .process-grid,
      .portfolio-grid,
      .form-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .service-card {
        min-height: 300px;
      }

      .portfolio-card,
      .portfolio-card:first-child {
        grid-column: auto;
        grid-row: auto;
        min-height: 330px;
      }

      .behind-visual {
        min-height: 390px;
      }

      .behind-copy {
        padding: 38px 26px 42px;
      }

      .behind-metrics {
        grid-template-columns: 1fr;
      }

      .package-card {
        min-height: auto;
      }

      .about-visual {
        min-height: 420px;
      }

      .field.full {
        grid-column: auto;
      }

      .contact-form {
        padding: 24px 18px;
      }

      .footer-bottom {
        flex-direction: column;
      }

      .floating-whatsapp {
        width: 54px;
        padding: 0;
        justify-content: center;
      }

      .floating-whatsapp span {
        display: none;
      }

      .faq-answer p {
        padding-right: 0;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
    }

/* Dynamic media supplied from admin panel */
.brand-logo-image { width: auto; height: 54px; max-width: 220px; object-fit: contain; }
.site-header.scrolled .brand-logo-image { height: 46px; }
.portfolio-card.has-image .portfolio-art,
.about-visual.has-image,
.behind-visual.has-image { background-size: cover; background-position: center; background-repeat: no-repeat; }
.portfolio-card.has-image .portfolio-art::before,
.portfolio-card.has-image .portfolio-art::after,
.about-visual.has-image::before,
.about-visual.has-image::after,
.behind-visual.has-image::before,
.behind-visual.has-image::after { display: none; }
.legal-hero { padding: 170px 0 70px; background: radial-gradient(circle at 75% 15%, rgba(226,200,146,.12), transparent 25%), var(--bg-2); border-bottom: 1px solid rgba(255,255,255,.08); }
.legal-hero h1 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.8rem,7vw,6rem); line-height: 1.02; font-weight: 500; letter-spacing: -.04em; }
.legal-hero p { max-width: 720px; color: var(--muted); margin-top: 20px; }
.legal-content { padding: 80px 0 110px; background: #f2efe8; color: #171a17; }
.legal-paper { max-width: 900px; margin: 0 auto; padding: clamp(28px,6vw,70px); background: #fff; border-radius: 28px; box-shadow: 0 22px 70px rgba(25,24,20,.08); }
.legal-paper h2 { margin: 34px 0 12px; font-family: "Playfair Display", Georgia, serif; font-size: 1.7rem; font-weight: 500; }
.legal-paper h2:first-child { margin-top: 0; }
.legal-paper p { margin: 0 0 18px; color: #4e554f; }
.legal-paper ul, .legal-paper ol { margin: 0 0 20px 22px; color: #4e554f; }
.legal-paper li { margin-bottom: 8px; }
.legal-meta { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(20,24,21,.12); color: #747a75; font-size: .82rem; }
.footer-contact-text { color: var(--muted-2); font-size: .86rem; line-height: 1.65; }
.footer-contact-text a { color: var(--muted); }
.footer-contact-text a:hover { color: var(--gold); }
@media (max-width:680px) {
  .brand-logo-image { height: 44px; max-width: 160px; }
  .legal-hero { padding-top: 130px; }
  .legal-content { padding: 50px 0 80px; }
}
