@charset "UTF-8";

/*
Theme Name: Twenty Twenty-One
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 7.0
Requires PHP: 5.6
Version: 2.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, portfolio

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/
 :root {
      --gold:       #C9A84C;
      --gold-lt:    #E2C87A;
      --gold-dk:    #8C6E28;
      --black:      #080808;
      --charcoal:   #111111;
      --dark:       #1A1A1A;
      --mid:        #2C2C2C;
      --white:      #FFFFFF;
      --off:        #F8F6F1;
      --muted:      rgba(255,255,255,.45);
      --border:     rgba(201,168,76,.22);
      --shadow:     0 20px 60px rgba(0,0,0,.55);
    }

    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'Jost', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--gold); }
    img { display: block; }

    /* ─── UTILITIES ─── */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
    @media(max-width:640px){ .container { padding: 0 20px; } }
    .gold { color: var(--gold); }
    .tag {
      display: inline-block;
      font-size: .62rem; font-weight: 600;
      letter-spacing: 4px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 14px;
    }
    .tag::before { content: '—  '; }
    .tag::after  { content: '  —'; }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 36px;
      font-family: 'Jost', sans-serif; font-size: .78rem;
      font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
      text-decoration: none; cursor: pointer; border: none;
      transition: all .3s; white-space: nowrap;
    }
    .btn-gold {
      background: var(--gold); color: var(--black);
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }
    .btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.35); }
    .btn-outline {
      background: transparent; color: var(--gold);
      border: 1px solid var(--gold);
    }
    .btn-outline:hover { background: var(--gold); color: var(--black); }

    /* ─── FADE IN ─── */
    .reveal {
      opacity: 0; transform: translateY(32px);
      transition: opacity .9s ease, transform .9s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      height: 78px; display: flex; align-items: center;
      padding: 0 50px;
      transition: background .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }
    #navbar.scrolled {
      background: rgba(8,8,8,.96);
      border-bottom-color: var(--border);
      backdrop-filter: blur(14px);
    }
    .nav-inner {
      width: 100%; display: flex;
      align-items: center; justify-content: space-between;
    }
    .nav-brand {
      display: flex; flex-direction: column; text-decoration: none;
    }
    .nav-brand strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--white); line-height: 1;
    }
    .nav-brand small {
      font-size: .52rem; letter-spacing: 5px;
      text-transform: uppercase; color: var(--gold);
      margin-top: 3px;
    }
    .nav-links {
      display: flex; list-style: none;
      gap: 36px; align-items: center;
    }
    .nav-links a {
      font-size: .7rem; font-weight: 500;
      letter-spacing: 2.5px; text-transform: uppercase;
      text-decoration: none; color: rgba(255,255,255,.6);
      transition: color .3s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute;
      bottom: -4px; left: 0; width: 0; height: 1px;
      background: var(--gold); transition: width .3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-book {
      font-size: .7rem; font-weight: 600;
      letter-spacing: 3px; text-transform: uppercase;
      text-decoration: none; color: var(--black);
      background: var(--gold); padding: 10px 24px;
      transition: all .3s;
    }
    .nav-book:hover { background: var(--gold-lt); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px; background: none; border: none;
    }
    .hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: all .3s; }
    .mobile-menu {
      display: none; position: fixed; inset: 0; top: 78px;
      background: rgba(8,8,8,.98); z-index: 998;
      flex-direction: column; align-items: center;
      justify-content: center; gap: 32px;
      border-top: 1px solid var(--border);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: .85rem; font-weight: 500;
      letter-spacing: 3px; text-transform: uppercase;
      text-decoration: none; color: rgba(255,255,255,.7);
      transition: color .3s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    @media(max-width:860px){
      .nav-links,.nav-book { display: none; }
      .hamburger { display: flex; }
      #navbar { padding: 0 24px; }
    }

    /* ══════════════════════════════════════
       HERO — FULL-WIDTH CINEMATIC BANNER
    ══════════════════════════════════════ */
    #home {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    /* ── Background image ── */
    .hero-bg-img {
      position: absolute; inset: 0;
      background:
        url('https://images.unsplash.com/photo-1529626455707-eeede50e6f74?w=1800&q=90')
        center top / cover no-repeat;
      transform: scale(1.04);
      animation: heroZoom 14s ease-out both;
    }
    @keyframes heroZoom {
      from { transform: scale(1.08); }
      to   { transform: scale(1.0);  }
    }

    /* ── Multi-layer overlay for depth ── */
    .hero-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(to right,  rgba(8,8,8,.88) 0%, rgba(8,8,8,.55) 50%, rgba(8,8,8,.25) 100%),
        linear-gradient(to top,    rgba(8,8,8,.90) 0%, rgba(8,8,8,.35) 45%, transparent 100%);
    }

    /* ── Gold top accent line ── */
    #home::before {
      content: '';
      position: absolute; top: 78px; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
      opacity: .5; z-index: 3;
    }

    /* ── Gold grain texture ── */
    .hero-grain {
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
      opacity: .45; pointer-events: none; z-index: 1;
    }

    /* ── Vertical side marquee ── */
    .hero-side-text {
      position: absolute; left: 28px; top: 50%;
      transform: translateY(-50%) rotate(-90deg);
      font-size: .5rem; letter-spacing: 7px;
      text-transform: uppercase; color: rgba(201,168,76,.3);
      white-space: nowrap; pointer-events: none; z-index: 4;
    }

    /* ── Main content: 3-col editorial grid ── */
    .hero-content {
      position: relative; z-index: 5;
      width: 100%;
      padding: 100px 60px 0;
      display: grid;
      grid-template-columns: 1fr 380px 160px;
      align-items: flex-end;
      gap: 44px;
      min-height: 100vh;
    }

    /* ── Left: text ── */
    .hero-text {
      max-width: 540px;
      padding-bottom: 80px;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 14px;
      margin-bottom: 32px;
      animation: fadeUp .9s .2s both;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: ''; display: block;
      height: 1px; background: var(--gold);
    }
    .hero-eyebrow::before { width: 32px; }
    .hero-eyebrow::after  { width: 18px; }
    .hero-eyebrow span {
      font-size: .62rem; font-weight: 600;
      letter-spacing: 5px; text-transform: uppercase; color: var(--gold);
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.8rem, 7.5vw, 7rem);
      font-weight: 300; line-height: .95;
      color: var(--white);
      letter-spacing: -2px;
      margin-bottom: 0;
      animation: fadeUp .9s .35s both;
    }
    .hero-title strong {
      font-weight: 700; display: block;
      background: linear-gradient(135deg, #fff 40%, rgba(201,168,76,.7));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-title em {
      font-style: italic; font-weight: 300;
      display: block; color: var(--gold);
      -webkit-text-fill-color: var(--gold);
    }

    .hero-divider {
      display: flex; align-items: center; gap: 16px;
      margin: 30px 0;
      animation: fadeUp .9s .5s both;
    }
    .hero-divider::before {
      content: ''; display: block;
      width: 56px; height: 1px; background: var(--gold);
    }
    .hero-divider span {
      font-size: .62rem; letter-spacing: 4px;
      text-transform: uppercase; color: rgba(201,168,76,.55);
    }

    .hero-desc {
      font-size: .95rem; line-height: 1.9;
      color: rgba(255,255,255,.52);
      font-weight: 300; max-width: 480px;
      margin-bottom: 42px;
      animation: fadeUp .9s .6s both;
    }

    .hero-btns {
      display: flex; gap: 14px; flex-wrap: wrap;
      animation: fadeUp .9s .7s both;
    }

    /* ── Centre: model portrait image ── */
    .hero-model-wrap {
      position: relative;
      height: 88vh;
      max-height: 820px;
      align-self: flex-end;
      animation: imgRise 1.2s .3s both;
    }
    @keyframes imgRise {
      from { opacity: 0; transform: translateY(50px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-model-img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      filter: saturate(.88) contrast(1.08);
    }
    /* gold frame lines */
    .hero-model-wrap::before {
      content: '';
      position: absolute;
      top: -10px; left: -10px;
      right: 10px; bottom: -10px;
      border: 1px solid rgba(201,168,76,.3);
      pointer-events: none; z-index: 2;
    }
    .hero-model-wrap::after {
      content: '';
      position: absolute;
      top: 10px; left: 10px;
      right: -10px; bottom: 10px;
      border: 1px solid rgba(201,168,76,.12);
      pointer-events: none; z-index: 0;
    }
    /* gold name label at bottom of image */
    .hero-model-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(8,8,8,.92) 0%, transparent 100%);
      padding: 40px 24px 20px;
      z-index: 3;
    }
    .hero-model-label strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 600;
      color: var(--white); display: block; line-height: 1.1;
    }
    .hero-model-label small {
      font-size: .58rem; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
    }
    /* gold corner accent */
    .hero-model-corner {
      position: absolute; top: 18px; right: 18px;
      width: 32px; height: 32px; z-index: 3;
      border-top: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
    }

    /* ── Right: stat boxes ── */
    .hero-stat-panel {
      display: flex; flex-direction: column; gap: 2px;
      padding-bottom: 80px;
      animation: fadeUp .9s .5s both;
    }
    .hero-stat-box {
      background: rgba(8,8,8,.75);
      border: 1px solid rgba(201,168,76,.18);
      padding: 18px 20px; text-align: center;
      backdrop-filter: blur(8px);
      transition: border-color .3s, background .3s;
    }
    .hero-stat-box:hover {
      border-color: rgba(201,168,76,.55);
      background: rgba(201,168,76,.06);
    }
    .hstat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.3rem; font-weight: 600;
      color: var(--gold); line-height: 1; display: block;
    }
    .hstat-label {
      font-size: .54rem; letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,.3); display: block;
      margin-top: 5px;
    }

    /* ── Bottom bar ── */
    .hero-bottom-bar {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
      height: 1px;
      background: linear-gradient(to right, var(--gold) 0%, rgba(201,168,76,.15) 60%, transparent 100%);
    }

    /* ── Model name watermark (background) ── */
    .hero-name-badge {
      position: absolute; bottom: 80px; right: 260px; z-index: 2;
      text-align: right; pointer-events: none;
      animation: fadeLeft .9s .8s both;
    }
    .hero-name-badge strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300;
      color: rgba(255,255,255,.07);
      letter-spacing: 6px; text-transform: uppercase;
      display: block; line-height: 1;
    }
    .hero-name-badge span {
      font-size: .55rem; letter-spacing: 5px;
      text-transform: uppercase; color: rgba(201,168,76,.25);
    }

    /* ── Scroll indicator ── */
    .hero-scroll {
      position: absolute; bottom: 28px; left: 60px;
      z-index: 6;
      display: flex; align-items: center; gap: 14px;
    }
    .hero-scroll span {
      font-size: .54rem; letter-spacing: 4px;
      text-transform: uppercase; color: rgba(255,255,255,.3);
    }
    .scroll-track {
      width: 52px; height: 1px;
      background: rgba(255,255,255,.1); position: relative; overflow: hidden;
    }
    .scroll-fill {
      position: absolute; top: 0; left: -100%; bottom: 0;
      width: 100%; background: var(--gold);
      animation: scrollSlide 2.2s ease-in-out infinite;
    }
    @keyframes scrollSlide { 0%{left:-100%;} 100%{left:100%;} }

    /* ── Fade animations ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeLeft {
      from { opacity: 0; transform: translateX(30px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    @media(max-width:1100px){
      .hero-content { grid-template-columns: 1fr 340px; }
      .hero-stat-panel { display: none; }
      .hero-name-badge { display: none; }
    }
    @media(max-width:760px){
      .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        padding: 88px 24px 0;
        min-height: auto;
      }
      .hero-text { padding-bottom: 32px; max-width: 100%; }
      .hero-model-wrap {
        height: 70vw; max-height: 440px;
        margin: 0 -24px;
      }
      .hero-model-wrap::before, .hero-model-wrap::after { display: none; }
      .hero-title { font-size: clamp(2.8rem, 9vw, 4rem); }
    }

    /* ══════════════════════════════════════
       ABOUT
    ══════════════════════════════════════ */
    #about {
      background: var(--charcoal);
      padding: 110px 0;
      position: relative; overflow: hidden;
    }
    #about::before {
      content: 'ABOUT';
      position: absolute; right: -20px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 12rem; font-weight: 700;
      color: rgba(255,255,255,.025);
      pointer-events: none; letter-spacing: -5px;
    }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1.1fr;
      gap: 80px; align-items: center;
    }
    .about-img-stack {
      position: relative; height: 580px;
    }
    .about-img-main {
      position: absolute; top: 0; left: 0;
      width: 75%; height: 88%;
      object-fit: cover;
      filter: saturate(.8) contrast(1.1);
    }
    .about-img-accent {
      position: absolute; bottom: 0; right: 0;
      width: 55%; height: 56%;
      object-fit: cover;
      border: 4px solid var(--charcoal);
      filter: saturate(.8) contrast(1.1);
    }
    .about-corner {
      position: absolute; top: 14px; right: 22px;
      width: 58%; height: 84%;
      border: 1px solid var(--border);
      pointer-events: none;
    }
    .about-years {
      position: absolute; top: 46%; left: 52%;
      transform: translate(-50%, -50%);
      background: var(--gold);
      width: 100px; height: 100px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; z-index: 2;
      clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    }
    .about-years strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 700;
      line-height: 1; color: var(--black);
    }
    .about-years span {
      font-size: .45rem; letter-spacing: 1.5px;
      text-transform: uppercase; color: rgba(0,0,0,.6);
      margin-top: 2px;
    }
    .about-content .tag { display: block; }
    .about-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 600; line-height: 1.1;
      color: var(--white); margin-bottom: 22px;
    }
    .about-title em { color: var(--gold); font-style: italic; }
    .about-text {
      font-size: .9rem; line-height: 1.95;
      color: rgba(255,255,255,.45);
      font-weight: 300; margin-bottom: 14px;
    }
    .about-details {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 14px; margin: 32px 0;
    }
    .about-detail {
      padding: 14px 16px;
      border: 1px solid rgba(201,168,76,.12);
      background: rgba(201,168,76,.03);
    }
    .about-detail dt {
      font-size: .6rem; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 4px;
    }
    .about-detail dd {
      font-size: .87rem; color: var(--white); font-weight: 400;
    }
    @media(max-width:860px){
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-img-stack { height: 380px; }
    }

    /* ══════════════════════════════════════
       PRICING
    ══════════════════════════════════════ */
    #pricing {
      background: var(--black);
      padding: 110px 0;
      position: relative; overflow: hidden;
    }
    #pricing::before {
      content: 'RATES';
      position: absolute; left: -20px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 12rem; font-weight: 700;
      color: rgba(255,255,255,.025);
      pointer-events: none; letter-spacing: -5px;
    }
    .pricing-header {
      display: flex; align-items: flex-end;
      justify-content: space-between; gap: 30px;
      flex-wrap: wrap; margin-bottom: 60px;
    }
    .pricing-note {
      font-size: .78rem; color: rgba(255,255,255,.3);
      line-height: 1.7; max-width: 340px;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px; background: var(--border);
    }
    .pricing-card {
      background: var(--charcoal);
      padding: 44px 36px;
      position: relative; overflow: hidden;
      transition: background .35s;
    }
    .pricing-card:hover { background: var(--dark); }
    .pricing-card.featured {
      background: var(--mid);
      border-top: 2px solid var(--gold);
    }
    .pricing-card.featured::before {
      content: 'Most Popular';
      position: absolute; top: 16px; right: 16px;
      font-size: .58rem; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--black); background: var(--gold);
      padding: 4px 12px;
    }
    .pricing-icon {
      width: 42px; height: 42px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1rem;
      margin-bottom: 22px;
    }
    .pricing-name {
      font-size: .65rem; font-weight: 600;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 10px;
    }
    .pricing-duration {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 600;
      color: var(--white); margin-bottom: 6px;
    }
    .pricing-rate {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem; font-weight: 700;
      color: var(--gold); line-height: 1;
      margin: 12px 0 4px;
    }
    .pricing-rate small {
      font-family: 'Jost', sans-serif;
      font-size: .75rem; font-weight: 400;
      color: rgba(255,255,255,.3); letter-spacing: 1px;
    }
    .pricing-divider {
      width: 100%; height: 1px;
      background: rgba(201,168,76,.12);
      margin: 24px 0;
    }
    .pricing-includes {
      list-style: none; display: flex;
      flex-direction: column; gap: 10px;
      margin-bottom: 30px;
    }
    .pricing-includes li {
      font-size: .84rem; color: rgba(255,255,255,.5);
      display: flex; align-items: center; gap: 10px;
      font-weight: 300;
    }
    .pricing-includes li i {
      color: var(--gold); font-size: .75rem;
      flex-shrink: 0;
    }
    .pricing-cta {
      display: block; width: 100%;
      padding: 13px;
      font-family: 'Jost', sans-serif;
      font-size: .72rem; font-weight: 600;
      letter-spacing: 3px; text-transform: uppercase;
      text-decoration: none; text-align: center;
      border: 1px solid var(--border);
      color: var(--gold); background: transparent;
      cursor: pointer; transition: all .3s;
    }
    .pricing-cta:hover, .pricing-card.featured .pricing-cta {
      background: var(--gold); color: var(--black);
      border-color: var(--gold);
    }
    .pricing-card.featured .pricing-cta:hover {
      background: var(--gold-lt);
    }

    /* custom requests row */
    .pricing-custom {
      margin-top: 2px;
      background: var(--charcoal);
      padding: 32px 40px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 24px;
      flex-wrap: wrap;
    }
    .pricing-custom p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-style: italic;
      color: rgba(255,255,255,.6);
    }
    .pricing-custom p strong {
      font-style: normal; color: var(--white);
    }
    @media(max-width:900px){ .pricing-grid { grid-template-columns: 1fr; } }

    /* ══════════════════════════════════════
       LOCATION
    ══════════════════════════════════════ */
    #location {
      background: var(--charcoal);
      padding: 110px 0;
    }
    .location-grid {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 70px; align-items: start;
    }
    .location-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 600; line-height: 1.1;
      color: var(--white); margin-bottom: 20px;
    }
    .location-title em { color: var(--gold); font-style: italic; }
    .location-desc {
      font-size: .9rem; line-height: 1.9;
      color: rgba(255,255,255,.45);
      font-weight: 300; margin-bottom: 36px;
    }
    .location-items {
      display: flex; flex-direction: column; gap: 20px;
    }
    .location-item {
      display: flex; align-items: flex-start; gap: 18px;
      padding: 20px 22px;
      border: 1px solid rgba(201,168,76,.1);
      background: rgba(201,168,76,.03);
      transition: border-color .3s;
    }
    .location-item:hover { border-color: rgba(201,168,76,.3); }
    .loc-icon {
      width: 40px; height: 40px; min-width: 40px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: .9rem;
    }
    .loc-label {
      font-size: .6rem; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 4px;
    }
    .loc-value {
      font-size: .9rem; color: var(--white); font-weight: 400;
      line-height: 1.5;
    }
    .loc-sub {
      font-size: .75rem; color: rgba(255,255,255,.35);
      margin-top: 2px;
    }

    /* map visual */
    .location-map-wrap {
      position: relative; border: 1px solid var(--border);
    }
    .location-map-img {
      width: 100%; height: 420px;
      object-fit: cover;
      filter: grayscale(1) contrast(1.2) brightness(.7);
    }
    .map-overlay {
      position: absolute; inset: 0;
      background: rgba(8,8,8,.35);
    }
    /* animated pin */
    .map-pin {
      position: absolute; top: 42%; left: 48%;
      transform: translate(-50%, -50%);
      display: flex; flex-direction: column;
      align-items: center; gap: 6px;
    }
    .pin-dot {
      width: 16px; height: 16px;
      background: var(--gold); border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(201,168,76,.25),
                  0 0 0 8px rgba(201,168,76,.1);
      animation: pinPulse 2.5s ease infinite;
    }
    @keyframes pinPulse { 0%,100%{box-shadow:0 0 0 4px rgba(201,168,76,.25),0 0 0 8px rgba(201,168,76,.1);} 50%{box-shadow:0 0 0 7px rgba(201,168,76,.2),0 0 0 14px rgba(201,168,76,.07);} }
    .pin-label {
      background: var(--gold); color: var(--black);
      font-size: .62rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 5px 14px; white-space: nowrap;
    }
    /* city pills */
    .city-pills {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-top: 28px;
    }
    .city-pill {
      font-size: .68rem; font-weight: 500;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: rgba(255,255,255,.55);
      border: 1px solid rgba(201,168,76,.15);
      padding: 6px 16px;
      transition: all .3s;
    }
    .city-pill:hover { border-color: var(--gold); color: var(--gold); }
    .city-pill.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
    @media(max-width:860px){ .location-grid { grid-template-columns: 1fr; } }

    /* ══════════════════════════════════════
       CONTACT
    ══════════════════════════════════════ */
    #contact {
      background: var(--black);
      padding: 110px 0;
      position: relative; overflow: hidden;
    }
    #contact::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.3fr;
      gap: 80px; align-items: start;
    }

    /* left: info */
    .contact-info-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 600; line-height: 1.1;
      color: var(--white); margin-bottom: 18px;
    }
    .contact-info-title em { color: var(--gold); font-style: italic; }
    .contact-info-desc {
      font-size: .9rem; line-height: 1.9;
      color: rgba(255,255,255,.4);
      font-weight: 300; margin-bottom: 44px;
    }
    .contact-channels {
      display: flex; flex-direction: column; gap: 16px;
      margin-bottom: 40px;
    }
    .contact-channel {
      display: flex; align-items: center; gap: 18px;
      padding: 16px 20px;
      border: 1px solid rgba(201,168,76,.1);
      background: rgba(201,168,76,.03);
      text-decoration: none;
      transition: border-color .3s;
    }
    .contact-channel:hover { border-color: rgba(201,168,76,.4); }
    .ch-icon {
      width: 38px; height: 38px; min-width: 38px;
      background: rgba(201,168,76,.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: .95rem;
      transition: background .3s;
    }
    .contact-channel:hover .ch-icon { background: var(--gold); color: var(--black); }
    .ch-label {
      font-size: .58rem; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gold); display: block; margin-bottom: 3px;
    }
    .ch-value {
      font-size: .87rem; color: var(--white); font-weight: 400;
    }
    .contact-avail {
      display: flex; align-items: center; gap: 10px;
      font-size: .72rem; color: rgba(255,255,255,.3);
      letter-spacing: 1px;
    }
    .avail-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #22C55E;
      box-shadow: 0 0 8px rgba(34,197,94,.6);
      animation: availPulse 2s ease infinite;
      flex-shrink: 0;
    }
    @keyframes availPulse { 0%,100%{opacity:1;} 50%{opacity:.5;} }

    /* right: form */
    .contact-form-wrap {
      background: var(--charcoal);
      padding: 48px 44px;
      border-top: 2px solid var(--gold);
    }
    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem; font-weight: 600;
      color: var(--white); margin-bottom: 6px;
    }
    .form-sub {
      font-size: .8rem; color: rgba(255,255,255,.3);
      margin-bottom: 32px;
    }
    .form-row {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      display: flex; flex-direction: column;
      gap: 8px; margin-bottom: 18px;
    }
    .form-group label {
      font-size: .6rem; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: rgba(255,255,255,.35);
    }
    .form-group label .req { color: var(--gold); }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      padding: 13px 16px;
      font-family: 'Jost', sans-serif;
      font-size: .88rem; color: var(--white);
      outline: none;
      transition: border-color .3s, background .3s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      background: rgba(201,168,76,.04);
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,.2); }
    .form-group select { cursor: pointer; color: rgba(255,255,255,.6); }
    .form-group select option { background: var(--dark); color: var(--white); }
    .form-group textarea { height: 110px; resize: vertical; }
    .form-privacy {
      display: flex; align-items: flex-start; gap: 10px;
      margin-bottom: 22px;
    }
    .form-privacy i { color: var(--gold); margin-top: 2px; font-size: .8rem; flex-shrink: 0; }
    .form-privacy p {
      font-size: .75rem; color: rgba(255,255,255,.3);
      line-height: 1.6;
    }
    .form-submit {
      width: 100%; padding: 15px;
      background: var(--gold); color: var(--black);
      border: none; cursor: pointer;
      font-family: 'Jost', sans-serif;
      font-size: .78rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      transition: background .3s;
    }
    .form-submit:hover { background: var(--gold-lt); }
    .form-note {
      font-size: .7rem; color: rgba(255,255,255,.2);
      text-align: center; margin-top: 12px;
    }

    /* success state */
    .form-success {
      display: none; text-align: center; padding: 40px 20px;
    }
    .form-success i { font-size: 2.5rem; color: var(--gold); margin-bottom: 18px; }
    .form-success h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; color: var(--white); margin-bottom: 10px;
    }
    .form-success p { font-size: .88rem; color: rgba(255,255,255,.4); }
    @media(max-width:860px){
      .contact-grid { grid-template-columns: 1fr; gap: 50px; }
      .contact-form-wrap { padding: 34px 26px; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    #footer {
      background: var(--deep, #050505);
      border-top: 1px solid var(--border);
      padding: 40px 0;
    }
    .footer-inner {
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap;
      gap: 20px;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--white);
    }
    .footer-brand span { color: var(--gold); }
    .footer-copy {
      font-size: .68rem; color: rgba(255,255,255,.2);
      letter-spacing: 1.5px;
    }
    .footer-socials { display: flex; gap: 14px; }
    .footer-socials a {
      width: 34px; height: 34px;
      border: 1px solid rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.4); font-size: .82rem;
      text-decoration: none; transition: all .3s;
    }
    .footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

    /* ══════════════════════════════════════
       SCROLL-TO-TOP
    ══════════════════════════════════════ */
    #stt {
      position: fixed; bottom: 28px; right: 28px;
      width: 42px; height: 42px;
      background: var(--gold); color: var(--black);
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem; cursor: pointer;
      opacity: 0; pointer-events: none;
      transition: all .3s; z-index: 990;
    }
    #stt.show { opacity: 1; pointer-events: all; }
    #stt:hover { background: var(--gold-lt); transform: translateY(-3px); }

    /* ══════════════════════════════════════
       SECTION DIVIDER ORNAMENT
    ══════════════════════════════════════ */
    .ornament {
      text-align: center; padding: 28px 0;
      color: var(--gold); opacity: .35; letter-spacing: 12px;
      font-size: .7rem;
    }