
    /* ═══════════════════════════════════════════
       CSS VARIABLES & RESET
    ═══════════════════════════════════════════ */
    :root {
      --ink: #0a0909;
      --bone: #f4f0e8;
      --gold: #c9a96e;
      --gold-light: #e8d5a8;
      --gold-muted: #8a6e40;
      --warm-dark: #141210;
      --mid: #2a2520;
      --smoke: #7a7068;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Jost', sans-serif;
      --italic: 'Playfair Display', serif;
      --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      background: var(--ink);
      color: var(--bone);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    /* ═══════════════════════════════════════════
       CUSTOM CURSOR
    ═══════════════════════════════════════════ */
    .cursor {
      width: 12px; height: 12px;
      background: var(--gold);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s;
      mix-blend-mode: difference;
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s;
      opacity: 0.6;
    }
    body:has(a:hover) .cursor-ring,
    body:has(button:hover) .cursor-ring { width: 56px; height: 56px; opacity: 1; }

    /* ═══════════════════════════════════════════
       GRAIN OVERLAY
    ═══════════════════════════════════════════ */
    .grain {
      position: fixed; inset: -200%;
      width: 400%; height: 400%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.035;
      pointer-events: none;
      z-index: 9997;
      animation: grain-move 8s steps(10) infinite;
    }
    @keyframes grain-move {
      0%,100% { transform: translate(0,0); }
      10% { transform: translate(-2%,-3%); }
      20% { transform: translate(3%,2%); }
      30% { transform: translate(-1%,4%); }
      40% { transform: translate(4%,-1%); }
      50% { transform: translate(-3%,3%); }
      60% { transform: translate(2%,-4%); }
      70% { transform: translate(-4%,1%); }
      80% { transform: translate(1%,3%); }
      90% { transform: translate(-2%,-2%); }
    }

    /* ═══════════════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.8rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      mix-blend-mode: difference;
      transition: padding var(--transition);
    }
    nav.scrolled {
      padding: 1.2rem 4rem;
      background: rgba(10,9,9,0.92);
      backdrop-filter: blur(12px);
      mix-blend-mode: normal;
      border-bottom: 1px solid rgba(201,169,110,0.12);
    }

    .nav-logo {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 0.25em;
      color: var(--bone);
      text-decoration: none;
      text-transform: uppercase;
    }
    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex;
      gap: 3rem;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--sans);
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--bone);
      text-decoration: none;
      opacity: 0.7;
      transition: opacity 0.3s, color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width var(--transition);
    }
    .nav-links a:hover { opacity: 1; color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold) !important;
      border: 1px solid var(--gold);
      padding: 0.6rem 1.5rem;
      opacity: 1 !important;
      transition: background 0.3s, color 0.3s !important;
    }
    .nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }
    .nav-cta::after { display: none !important; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 28px; height: 1px; background: var(--bone); transition: 0.3s; }

    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        105deg,
        rgba(10,9,9,0.85) 0%,
        rgba(10,9,9,0.6) 45%,
        rgba(10,9,9,0.15) 100%
      );
    }

    .hero-left {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 12rem 5rem 6rem;
      max-width: 640px;
    }

    .hero-eyebrow {
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      animation: fade-up 0.8s var(--transition) 0.1s both;
    }
    .hero-eyebrow::before {
      content: '';
      width: 40px; height: 1px;
      background: var(--gold);
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(3.5rem, 6vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-bottom: 2rem;
      animation: fade-up 0.8s var(--transition) 0.2s both;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
      font-family: var(--italic);
    }

    .hero-sub {
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      line-height: 1.9;
      color: rgba(244,240,232,0.8);
      max-width: 380px;
      margin-bottom: 3rem;
      animation: fade-up 0.8s var(--transition) 0.3s both;
    }

    .hero-actions {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      animation: fade-up 0.8s var(--transition) 0.4s both;
    }

    .hero-vertical-text {
      position: absolute;
      right: 4rem;
      top: 50%;
      transform: translateY(-50%) rotate(90deg);
      transform-origin: center;
      font-family: var(--sans);
      font-size: 0.55rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: rgba(201,169,110,0.5);
      white-space: nowrap;
      z-index: 2;
      animation: fade-in 1s ease 0.5s both;
    }

    .hero-scroll {
      position: absolute;
      bottom: 4rem;
      left: 5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      font-family: var(--sans);
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(244,240,232,0.5);
      z-index: 2;
      animation: fade-in 1s ease 0.6s both;
    }
    .hero-scroll-line {
      width: 50px; height: 1px;
      background: rgba(244,240,232,0.3);
      position: relative;
      overflow: hidden;
    }
    .hero-scroll-line::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: var(--gold);
      animation: slide-line 2s ease 2s infinite;
    }
    @keyframes slide-line { 0% { left: -100%; } 100% { left: 100%; } }

    /* ═══════════════════════════════════════════
       MARQUEE    /* ═══════════════════════════════════════════
       MARQUEE
    ═══════════════════════════════════════════ */
    .marquee-wrap {
      overflow: hidden;
      border-top: 1px solid rgba(201,169,110,0.15);
      border-bottom: 1px solid rgba(201,169,110,0.15);
      padding: 1.2rem 0;
      background: var(--warm-dark);
    }
    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: marquee 25s linear infinite;
    }
    .marquee-item {
      font-family: var(--serif);
      font-size: 0.85rem;
      font-style: italic;
      letter-spacing: 0.15em;
      color: var(--gold-muted);
      padding: 0 3rem;
    }
    .marquee-dot { color: var(--gold); }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ═══════════════════════════════════════════
       SECTION UTILITY
    ═══════════════════════════════════════════ */
    section { padding: 8rem 0; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 4rem;
    }

    .section-label {
      font-family: var(--sans);
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .section-label::before {
      content: '';
      width: 30px; height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
    .section-title em {
      font-style: italic;
      color: var(--gold);
      font-family: var(--italic);
    }

    /* ═══════════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════════ */
    #about {
      background: var(--warm-dark);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 8rem;
      align-items: center;
    }

    .about-image-stack {
      position: relative;
      height: 560px;
    }

    .about-img-main {
      position: absolute;
      width: 75%; height: 80%;
      top: 0; left: 0;
      background: linear-gradient(160deg, #1e1810 0%, #2e2318 100%);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 0.7rem;
      letter-spacing: 0.15em; color: var(--gold-muted); text-transform: uppercase;
      overflow: hidden;
    }
    .about-img-main::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.1) 0%, transparent 60%);
      z-index: 1; pointer-events: none;
    }

    .about-img-accent {
      position: absolute;
      width: 55%; height: 50%;
      bottom: 0; right: 0;
      background: linear-gradient(160deg, #2a2018 0%, #1a1510 100%);
      border: 2px solid rgba(201,169,110,0.2);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 0.7rem;
      letter-spacing: 0.15em; color: var(--gold-muted); text-transform: uppercase;
      overflow: hidden;
    }

    .about-real-img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .about-years {
      position: absolute;
      bottom: 20%; left: 68%;
      background: var(--gold);
      color: var(--ink);
      padding: 1.5rem;
      text-align: center;
      z-index: 3;
    }
    .about-years-num {
      font-family: var(--serif);
      font-size: 2.5rem;
      font-weight: 300;
      line-height: 1;
      display: block;
    }
    .about-years-label {
      font-family: var(--sans);
      font-size: 0.55rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .about-text p {
      font-size: 0.95rem;
      line-height: 1.9;
      color: rgba(244,240,232,0.7);
      margin-bottom: 1.5rem;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(201,169,110,0.15);
    }

    .stat-num {
      font-family: var(--serif);
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-family: var(--sans);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--smoke);
      margin-top: 0.4rem;
    }

    /* ═══════════════════════════════════════════
       SERVICES
    ═══════════════════════════════════════════ */
    #services { background: var(--ink); }

    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 5rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(201,169,110,0.1);
    }

    .service-card {
      background: var(--ink);
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
      transition: background var(--transition);
      cursor: pointer;
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width var(--transition);
    }
    .service-card:hover { background: var(--warm-dark); }
    .service-card:hover::before { width: 100%; }

    .service-num {
      font-family: var(--serif);
      font-size: 0.75rem;
      color: var(--gold-muted);
      margin-bottom: 2rem;
      letter-spacing: 0.1em;
    }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      display: block;
      filter: grayscale(0.3);
    }

    .service-name {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 300;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
    }

    .service-desc {
      font-size: 0.8rem;
      line-height: 1.8;
      color: var(--smoke);
    }

    .service-price {
      margin-top: 1.5rem;
      font-family: var(--serif);
      font-size: 1.1rem;
      color: var(--gold);
      font-style: italic;
    }

    /* ═══════════════════════════════════════════
       PORTFOLIO / GALLERY
    ═══════════════════════════════════════════ */
    #portfolio {
      background: var(--warm-dark);
      padding-bottom: 4rem;
    }

    .portfolio-header {
      padding: 0 4rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
    }

    .portfolio-filters {
      display: flex;
      gap: 2rem;
    }
    .filter-btn {
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--smoke);
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.3s;
      padding: 0;
    }
    .filter-btn.active,
    .filter-btn:hover { color: var(--gold); }

    .portfolio-masonry {
      padding: 0 4rem;
      columns: 3;
      column-gap: 4px;
    }

    .portfolio-item {
      break-inside: avoid;
      margin-bottom: 4px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .portfolio-placeholder {
      width: 100%;
      background: linear-gradient(135deg, #1a1510, #2d2318);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      color: var(--gold-muted);
      text-transform: uppercase;
      transition: opacity 0.3s;
      position: relative;
    }
    .portfolio-placeholder::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(201,169,110,0.06) 0%, transparent 70%);
    }

    .portfolio-real-img {
      width: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .portfolio-item:hover .portfolio-real-img { transform: scale(1.04); }
    .p-tall { height: 380px; }
    .p-med  { height: 260px; }
    .p-short{ height: 200px; }

    .portfolio-overlay { display: none; }

    /* ═══════════════════════════════════════════
       PRICING
    ═══════════════════════════════════════════ */
    #pricing { background: var(--ink); }

    .pricing-tabs {
      display: flex;
      gap: 0;
      border-bottom: 1px solid rgba(201,169,110,0.15);
      margin-bottom: 4rem;
      overflow-x: auto;
    }
    .pricing-tab {
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 1rem 2rem;
      border: none;
      background: none;
      color: var(--smoke);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color 0.3s, border-color 0.3s;
      white-space: nowrap;
    }
    .pricing-tab.active,
    .pricing-tab:hover { color: var(--gold); border-bottom-color: var(--gold); }

    .pricing-panels { position: relative; }
    .pricing-panel { display: none; }
    .pricing-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

    .price-card {
      background: var(--warm-dark);
      padding: 3rem 2.5rem;
      position: relative;
      transition: transform var(--transition);
    }
    .price-card:hover { transform: translateY(-6px); }
    .price-card.featured {
      background: var(--mid);
      border: 1px solid rgba(201,169,110,0.3);
    }
    .price-card.featured::after {
      content: 'Most Popular';
      position: absolute;
      top: -12px; left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--ink);
      font-family: var(--sans);
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 4px 1rem;
    }

    .price-tier {
      font-family: var(--sans);
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .price-amount {
      font-family: var(--serif);
      font-size: 3rem;
      font-weight: 300;
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .price-amount sup { font-size: 1.2rem; vertical-align: super; }
    .price-note {
      font-size: 0.7rem;
      color: var(--smoke);
      margin-bottom: 2rem;
    }
    .price-divider {
      height: 1px;
      background: rgba(201,169,110,0.12);
      margin: 1.5rem 0;
    }
    .price-features { list-style: none; }
    .price-features li {
      font-size: 0.8rem;
      color: rgba(244,240,232,0.7);
      padding: 0.6rem 0;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .price-features li::before { content: '✦'; color: var(--gold); font-size: 0.5rem; }
    .price-cta {
      display: block;
      text-align: center;
      margin-top: 2.5rem;
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.9rem;
      text-decoration: none;
      border: 1px solid var(--gold);
      color: var(--gold);
      transition: background 0.3s, color 0.3s;
    }
    .price-cta:hover, .price-card.featured .price-cta {
      background: var(--gold); color: var(--ink);
    }
    .price-card.featured .price-cta:hover {
      background: var(--gold-light);
    }

    /* ═══════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════ */
    #testimonials { background: var(--warm-dark); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 4rem;
    }

    .testimonial-card {
      position: relative;
      padding: 2.5rem;
      border: 1px solid rgba(201,169,110,0.12);
      transition: border-color var(--transition);
    }
    .testimonial-card:hover { border-color: rgba(201,169,110,0.4); }

    .testimonial-quote {
      font-family: var(--serif);
      font-size: 3rem;
      color: var(--gold);
      line-height: 0;
      margin-bottom: 1.5rem;
      opacity: 0.4;
    }
    .testimonial-text {
      font-family: var(--serif);
      font-size: 1rem;
      font-style: italic;
      line-height: 1.8;
      color: rgba(244,240,232,0.8);
      margin-bottom: 2rem;
    }
    .testimonial-author {
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .testimonial-event {
      font-size: 0.7rem;
      color: var(--smoke);
      margin-top: 0.3rem;
    }
    .stars { color: var(--gold); font-size: 0.7rem; margin-bottom: 1rem; }

    /* ═══════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════ */
    #faq { background: var(--ink); }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 8rem;
      align-items: start;
    }

    .faq-list { margin-top: 3rem; }

    .faq-item {
      border-bottom: 1px solid rgba(201,169,110,0.12);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 0;
      font-family: var(--serif);
      font-size: 1.05rem;
      cursor: pointer;
      transition: color 0.3s;
      gap: 1rem;
    }
    .faq-question:hover { color: var(--gold); }

    .faq-icon {
      color: var(--gold);
      font-size: 1.2rem;
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
      font-size: 0.85rem;
      line-height: 1.9;
      color: var(--smoke);
    }
    .faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.5rem; }

    /* ═══════════════════════════════════════════
       LOCATIONS
    ═══════════════════════════════════════════ */
    #locations { background: var(--warm-dark); padding: 5rem 0; }

    .locations-inner {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .locations-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.8rem;
      margin-top: 2.5rem;
    }
    .location-tag {
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--smoke);
      border: 1px solid rgba(201,169,110,0.15);
      padding: 0.5rem 1.2rem;
      transition: color 0.3s, border-color 0.3s;
    }
    .location-tag:hover { color: var(--gold); border-color: var(--gold); }

    /* ═══════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════ */
    #contact { background: var(--ink); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 8rem;
      align-items: start;
    }

    .contact-info {
      margin-top: 3rem;
    }
    .contact-detail {
      margin-bottom: 2rem;
    }
    .contact-detail-label {
      font-family: var(--sans);
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-muted);
      margin-bottom: 0.4rem;
    }
    .contact-detail-value {
      font-family: var(--serif);
      font-size: 1.1rem;
      color: var(--bone);
    }
    .contact-detail-value a { color: inherit; text-decoration: none; }
    .contact-detail-value a:hover { color: var(--gold); }

    .social-links {
      display: flex;
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .social-link {
      font-family: var(--sans);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--smoke);
      text-decoration: none;
      transition: color 0.3s;
    }
    .social-link:hover { color: var(--gold); }

    .contact-form {
      margin-top: 1rem;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }
    .form-label {
      display: block;
      font-family: var(--sans);
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--smoke);
      margin-bottom: 0.5rem;
    }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      background: var(--warm-dark);
      border: 1px solid rgba(201,169,110,0.15);
      color: var(--bone);
      padding: 0.9rem 1rem;
      font-family: var(--sans);
      font-size: 0.85rem;
      font-weight: 300;
      transition: border-color 0.3s;
      outline: none;
      appearance: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--gold);
    }
    .form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23c9a96e'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
    .form-textarea { resize: vertical; min-height: 130px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .form-submit {
      width: 100%;
      background: var(--gold);
      color: var(--ink);
      border: none;
      padding: 1.1rem;
      font-family: var(--sans);
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      margin-top: 0.5rem;
    }
    .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    footer {
      background: var(--warm-dark);
      padding: 4rem 0 2rem;
      border-top: 1px solid rgba(201,169,110,0.1);
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }
    .footer-brand-name {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--bone);
      margin-bottom: 1rem;
    }
    .footer-brand-name span { color: var(--gold); }
    .footer-tagline {
      font-size: 0.8rem;
      line-height: 1.8;
      color: var(--smoke);
      max-width: 260px;
    }
    .footer-col-title {
      font-family: var(--sans);
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-muted);
      margin-bottom: 1.5rem;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.7rem; }
    .footer-links a {
      font-size: 0.8rem;
      color: var(--smoke);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(201,169,110,0.08);
    }
    .footer-copy {
      font-size: 0.7rem;
      color: var(--smoke);
      letter-spacing: 0.1em;
    }
    .footer-legal {
      display: flex;
      gap: 2rem;
    }
    .footer-legal a {
      font-size: 0.65rem;
      color: var(--smoke);
      text-decoration: none;
      letter-spacing: 0.1em;
      transition: color 0.3s;
    }
    .footer-legal a:hover { color: var(--gold); }

    /* ═══════════════════════════════════════════
       SCROLL ANIMATIONS
    ═══════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      nav { padding: 1.5rem 2rem; }
      nav.scrolled { padding: 1rem 2rem; }
      .nav-links { gap: 2rem; }
      .hero-left { padding: 10rem 2rem 5rem; }
      .container { padding: 0 2rem; }
      .about-grid,
      .contact-grid,
      .faq-grid { grid-template-columns: 1fr; gap: 4rem; }
      .about-image-stack { height: 400px; }
      .services-header { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }

    @media (max-width: 768px) {
      body { cursor: auto; }
      .cursor, .cursor-ring { display: none; }
      .hero-left { padding: 8rem 1.5rem 4rem; max-width: 100%; }
      .hero-left { padding: 8rem 1.5rem 4rem; }
      .hero-scroll { display: none; }
      .hero-vertical-text { display: none; }
      nav { padding: 1.2rem 1.5rem; mix-blend-mode: normal; background: rgba(10,9,9,0.95); }
      .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--ink); z-index: 999; justify-content: center; align-items: center; gap: 2.5rem; }
      .nav-links.open { display: flex; }
      .nav-links a { font-size: 1rem; }
      .hamburger { display: flex; }
      .services-grid,
      .pricing-panel.active,
      .testimonials-grid { grid-template-columns: 1fr; }
      .portfolio-masonry { columns: 2; padding: 0 1.5rem; }
      .portfolio-header { padding: 0 1.5rem; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .about-stats { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
      section { padding: 5rem 0; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
    }
  
    /* ═══════════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════════ */
    .btn-primary {
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--ink);
      padding: 1rem 2.5rem;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s, transform 0.3s;
      display: inline-block;
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

    .btn-ghost {
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--bone);
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.3s;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .btn-ghost::after { content: '→'; transition: transform 0.3s; }
    .btn-ghost:hover { opacity: 1; }
    .btn-ghost:hover::after { transform: translateX(4px); }

    /* Global link reset — kill browser blue */
    a { color: inherit; text-decoration: none; }
    a:hover { color: inherit; }


  
    /* ═══════════════════════════════════════════
       ADDED: inner pages (service, city, guide)
    ═══════════════════════════════════════════ */
    h1.hero-eyebrow { font-weight: 300; }
    .page-hero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; overflow: hidden; }
    .page-hero .hero-title { font-size: clamp(2.6rem, 5vw, 4.4rem); }
    .page-hero.guide .hero-left { max-width: 860px; }
    .page-hero.guide .hero-title { font-size: clamp(2.2rem, 4vw, 3.6rem); }
    .breadcrumbs { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(244,240,232,0.55); margin-bottom: 1.6rem; }
    .breadcrumbs a:hover { color: var(--gold); }
    .breadcrumbs .sep { margin: 0 0.6rem; color: var(--gold-muted); }
    .lead { font-size: 0.95rem; line-height: 1.9; color: rgba(244,240,232,0.72); max-width: 760px; margin-bottom: 1.5rem; }
    .answer-capsule { border-left: 2px solid var(--gold); padding: 0.4rem 0 0.4rem 1.5rem; font-family: var(--serif); font-size: 1.15rem; font-style: italic; line-height: 1.7; color: rgba(244,240,232,0.85); max-width: 820px; margin: 2.2rem 0 0; }
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
    .two-col p { font-size: 0.9rem; line-height: 1.9; color: rgba(244,240,232,0.72); }
    .muted-note { font-size: 0.85rem; color: var(--smoke); max-width: 560px; line-height: 1.9; margin-bottom: 3rem; }
    .service-name a::after, .card-title a::after { content: ''; position: absolute; inset: 0; }
    .card-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; margin-bottom: 0.8rem; line-height: 1.3; }
    .card-link { display: inline-block; margin-top: 1.5rem; color: var(--gold); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; }
    .pricing-panel.static { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .faq-item.open .faq-answer { max-height: 640px; }
    .locations-list.left { justify-content: flex-start; }
    .prose { max-width: 760px; }
    .prose p, .prose li { font-size: 0.95rem; line-height: 1.9; color: rgba(244,240,232,0.75); }
    .prose p { margin-bottom: 1.3rem; }
    .prose h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.2; margin: 3rem 0 1.2rem; color: var(--bone); }
    .prose h3 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin: 2.2rem 0 0.8rem; color: var(--gold-light); }
    .prose ul, .prose ol { padding-left: 1.2rem; margin-bottom: 1.5rem; }
    .prose li { margin-bottom: 0.5rem; }
    .prose strong { color: var(--bone); font-weight: 500; }
    .prose a { color: var(--gold); border-bottom: 1px solid rgba(201,169,110,0.35); }
    .prose a:hover { color: var(--gold-light); border-color: var(--gold); }
    .prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem; font-size: 0.85rem; }
    .prose th { text-align: left; font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(201,169,110,0.35); padding: 0.8rem 1rem 0.8rem 0; }
    .prose td { border-bottom: 1px solid rgba(201,169,110,0.12); padding: 0.8rem 1rem 0.8rem 0; color: rgba(244,240,232,0.75); vertical-align: top; }
    .byline { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--smoke); margin-bottom: 2.5rem; }
    .cta-band { background: var(--warm-dark); text-align: center; }
    .cta-band .section-label { justify-content: center; }
    .cta-band p { font-size: 0.85rem; color: var(--smoke); line-height: 1.9; max-width: 520px; margin: 1rem auto 2.5rem; }
    .cta-contact { margin-top: 2rem !important; font-family: var(--serif); font-size: 1.05rem !important; color: rgba(244,240,232,0.75) !important; }
    .cta-contact a:hover { color: var(--gold); }
    .plain-top { padding-top: 11rem; }
    @media (min-width: 1025px) {
      .service-card.span-2 { grid-column: span 2; }
      .service-card.span-3 { grid-column: span 3; }
    }
    @media (max-width: 1024px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }
    @media (max-width: 768px) {
      .page-hero { min-height: 64vh; }
      .pricing-panel.static { grid-template-columns: 1fr; }
      .plain-top { padding-top: 8rem; }
    }
