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

  :root {
    --gold-dark: #BA7812;
    --gold-mid: #CB932E;
    --gold-light: #EABF5E;
    --gold-bright: #F6D170;
    --black: #0C0C0C;
    --charcoal: #111217;
    --stone: #1e1e22;
    --warm-white: #F9F6F1;
    --cream: #F2ECE3;
    --text-muted: #8a8070;
    --border: rgba(186,120,18,0.25);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--black);
    color: var(--warm-white);
    overflow-x: hidden;
  }

  /* ── PAGE SYSTEM ── */
  .page { display: none; min-height: 100vh; }
  .page.active { display: block; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 3rem;
    height: 72px;
    background: rgba(11,11,13,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
  }

  .nav-logo {
    height: 110px; width: auto; cursor: pointer;
  }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none; align-items: center;
  }

  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-weight: 400; font-size: 0.75rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(249,246,241,0.7);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

  .nav-cta {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--black) !important;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    background-size: 200% 100%;
    padding: 0.6rem 1.4rem;
    border: none; cursor: pointer;
    transition: background-position 0.4s, color 0.2s;
  }
  .nav-cta:hover { background-position: 100% 0; color: var(--black) !important; }

  .top-bar {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
    text-align: center; padding: 0.45rem 1rem;
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--black); font-weight: 500;
  }
  .top-bar a { color: var(--black); font-weight: 700; }

  /* ── GOLD LINE ── */
  .gold-rule {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
    margin: 1.5rem auto;
  }

  /* ── HERO ── */
  .hero {
    height: 100vh; position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse at 50% 30%, rgba(186,120,18,0.12) 0%, transparent 60%),
      linear-gradient(180deg, rgba(11,11,13,0.3) 0%, rgba(11,11,13,0.5) 50%, rgba(11,11,13,0.9) 100%),
      url('../img/embedded-image-001.jpg') center/cover no-repeat;
  }

  /* Castle-specific hero backgrounds per page */
  .hero-bg.castle {
    background: 
      radial-gradient(ellipse at 50% 30%, rgba(186,120,18,0.12) 0%, transparent 60%),
      linear-gradient(180deg, rgba(11,11,13,0.2) 0%, rgba(11,11,13,0.5) 50%, rgba(11,11,13,0.92) 100%),
      url('../img/embedded-image-001.jpg') center/cover no-repeat;
  }

  .hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 1.5rem;
    position: relative; z-index: 2;
    opacity: 0; animation: fadeUp 1s 0.3s forwards;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300; line-height: 1.0;
    letter-spacing: -0.01em;
    color: var(--warm-white);
    position: relative; z-index: 2;
    opacity: 0; animation: fadeUp 1s 0.5s forwards;
    max-width: 800px;
  }

  .hero h1 em {
    font-style: italic; color: var(--gold-light);
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 300; font-style: italic;
    color: rgba(249,246,241,0.75);
    margin-top: 1.5rem; max-width: 600px;
    position: relative; z-index: 2;
    opacity: 0; animation: fadeUp 1s 0.7s forwards;
  }

  .hero-actions {
    display: flex; gap: 1rem; margin-top: 3rem;
    position: relative; z-index: 2;
    opacity: 0; animation: fadeUp 1s 0.9s forwards;
    flex-wrap: wrap; justify-content: center;
  }

  .btn-primary {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
    background-size: 200% 100%;
    color: var(--black);
    border: none; cursor: pointer; text-decoration: none;
    transition: background-position 0.5s;
  }
  .btn-primary:hover { background-position: 100% 0; }

  .btn-secondary {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--warm-white);
    border: 1px solid rgba(249,246,241,0.35); cursor: pointer; text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
  }
  .btn-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); }

  /* ── SOCIAL PROOF STRIP ── */
  .proof-strip {
    background: var(--stone);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 2rem;
    overflow: hidden;
  }

  .proof-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  }

  .proof-item {
    text-align: center; padding: 0 1rem;
  }
  .proof-item:not(:last-child) {
    border-right: 1px solid var(--border);
  }

  .proof-stars {
    color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
  }

  .proof-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-style: italic; font-weight: 300;
    color: var(--warm-white); line-height: 1.6;
    margin-bottom: 0.75rem;
  }

  .proof-attr {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ── SECTIONS ── */
  section {
    padding: 8rem 2rem;
    max-width: 1300px; margin: 0 auto;
  }

  .section-full {
    max-width: none; padding: 8rem 0;
  }

  .section-label {
    font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold-mid); display: block; margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300; line-height: 1.1;
    color: var(--warm-white);
  }

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

  .section-body {
    font-size: 1rem; font-weight: 300; line-height: 1.85;
    color: rgba(249,246,241,0.7);
    max-width: 600px;
  }

  /* ── ABOUT SPLIT ── */
  .about-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center;
  }

  .about-image-wrap {
    position: relative;
  }
  .about-image-wrap img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
  }
  .about-image-wrap::after {
    content: '';
    position: absolute; top: 2rem; left: -2rem;
    right: 2rem; bottom: -2rem;
    border: 1px solid var(--border); z-index: -1;
  }

  .about-stat-row {
    display: flex; gap: 3rem; margin-top: 3rem;
  }
  .about-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; font-weight: 300; color: var(--gold-light);
    display: block;
  }
  .about-stat-label {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ── SUITES GRID ── */
  .suites-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px;
    background: var(--border);
    margin: 4rem 0 0;
  }

  .suite-card {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--stone);
  }
  .suite-card:first-child {
    grid-column: span 2; aspect-ratio: 21/9;
  }

  .suite-card-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease; display: block;
  }
  .suite-card:hover .suite-card-img { transform: scale(1.05); }

  .suite-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,11,13,0.95) 0%, rgba(11,11,13,0.3) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2.5rem;
    transition: background 0.4s;
  }
  .suite-card:hover .suite-card-overlay {
    background: linear-gradient(to top, rgba(11,11,13,0.98) 0%, rgba(11,11,13,0.5) 60%, rgba(11,11,13,0.1) 100%);
  }

  .suite-card-role {
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 0.4rem;
  }

  .suite-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300; color: var(--warm-white);
  }

  .suite-card-feature {
    font-size: 0.8rem; font-weight: 300;
    color: rgba(249,246,241,0.6); margin-top: 0.3rem;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s, opacity 0.4s;
    opacity: 0;
  }
  .suite-card:hover .suite-card-feature { max-height: 60px; opacity: 1; }

  .suite-card-btn {
    display: inline-block; margin-top: 1rem;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold-light); text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.4s, opacity 0.4s 0.1s;
  }
  .suite-card:hover .suite-card-btn { max-height: 40px; opacity: 1; }

  /* ── SUITE DETAIL PAGE ── */
  .suite-hero {
    height: 80vh; position: relative;
    display: flex; align-items: flex-end;
    padding: 4rem;
  }

  .suite-hero-bg {
    position: absolute; inset: 0;
  }
  .suite-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .suite-hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,11,13,0.97) 0%, rgba(11,11,13,0.4) 60%, rgba(11,11,13,0.2) 100%);
  }

  .suite-hero-content { position: relative; z-index: 2; max-width: 700px; }

  .suite-hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-style: italic; color: var(--gold-light);
    margin-bottom: 1rem;
  }

  .suite-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300; color: var(--warm-white);
    line-height: 1.0;
  }

  .suite-content {
    max-width: 760px; margin: 0 auto; padding: 6rem 2rem;
  }

  .suite-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 400;
    color: var(--warm-white); margin: 3rem 0 1rem;
  }

  .suite-content p {
    font-size: 1rem; font-weight: 300; line-height: 1.85;
    color: rgba(249,246,241,0.75); margin-bottom: 1.5rem;
  }

  .amenities-strip {
    display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 2rem 0;
  }

  .amenity-chip {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--border);
    color: rgba(249,246,241,0.6);
  }

  .suite-quote {
    border-left: 2px solid var(--gold-mid);
    padding: 1.5rem 2rem; margin: 3rem 0;
    background: rgba(186,120,18,0.05);
  }
  .suite-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-style: italic; font-weight: 300;
    color: var(--warm-white);
    margin-bottom: 0.5rem;
  }
  .suite-quote cite {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted);
  }

  .suite-also-love {
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
    max-width: 760px; margin: 0 auto;
  }

  .suite-also-love h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 300; color: var(--text-muted);
    margin-bottom: 2rem;
  }

  .also-love-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }

  .also-love-card {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 3/2; background: var(--stone);
  }
  .also-love-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
  }
  .also-love-card:hover img { transform: scale(1.05); }
  .also-love-card-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(11,11,13,0.9), transparent);
    padding: 1.5rem 1.25rem 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 300; color: var(--warm-white);
  }

  /* ── BOOKING WIDGET ── */
  .booking-section {
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
  }
  .booking-inner {
    max-width: 1100px; margin: 0 auto;
  }
  .booking-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; text-align: center;
    color: var(--warm-white); margin-bottom: 0.5rem;
  }
  .booking-section p {
    text-align: center; color: var(--text-muted);
    font-size: 0.85rem; margin-bottom: 2rem;
  }

  /* ── ELOPEMENTS ── */
  .elope-hero {
    height: 100vh; position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
  }

  .elope-hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 40%, rgba(186,120,18,0.1) 0%, transparent 65%),
      linear-gradient(180deg, rgba(11,11,13,0.3) 0%, rgba(11,11,13,0.6) 60%, rgba(11,11,13,0.95) 100%),
      url('../img/embedded-image-002.jpg') center/cover no-repeat;
  }

  .elope-kicker {
    font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 2rem;
    position: relative; z-index: 2;
  }

  .elope-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300; line-height: 0.95;
    color: var(--warm-white);
    position: relative; z-index: 2;
  }

  .elope-h1 em { font-style: italic; color: var(--gold-light); }

  .elope-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-style: italic; color: rgba(249,246,241,0.7);
    margin-top: 1.5rem; position: relative; z-index: 2;
  }

  .elope-actions {
    display: flex; gap: 1rem; margin-top: 3rem;
    position: relative; z-index: 2;
    flex-wrap: wrap; justify-content: center;
  }

  /* ── SPACES GRID ── */
  .spaces-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
    background: var(--border); margin: 4rem 0;
  }

  .space-card {
    background: var(--stone); padding: 3rem 2.5rem;
    position: relative;
  }

  .space-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 300; color: var(--border);
    margin-bottom: 1.5rem;
  }

  .space-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 300; color: var(--warm-white);
    margin-bottom: 0.5rem;
  }

  .space-cap {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold-mid); margin-bottom: 1.5rem;
  }

  .space-desc {
    font-size: 0.9rem; font-weight: 300; line-height: 1.8;
    color: rgba(249,246,241,0.6);
  }

  /* ── PACKAGES ── */
  .packages-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
    background: var(--border); margin: 4rem 0;
  }

  .package-card {
    background: var(--stone); padding: 3rem 2.5rem;
    position: relative; display: flex; flex-direction: column;
  }

  .package-card.featured {
    background: var(--charcoal);
    border-top: 2px solid var(--gold-mid);
  }

  .package-badge {
    display: inline-block;
    font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--black); background: var(--gold-mid);
    padding: 0.3rem 0.8rem; margin-bottom: 1.5rem;
  }

  .package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; font-weight: 300; color: var(--gold-light);
    margin-bottom: 0.25rem;
  }

  .package-price-note {
    font-size: 0.65rem; color: var(--text-muted); margin-bottom: 1.5rem;
  }

  .package-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 400; color: var(--warm-white);
    margin-bottom: 1.5rem;
  }

  .package-includes {
    list-style: none; flex: 1;
  }

  .package-includes li {
    font-size: 0.85rem; font-weight: 300; line-height: 1.6;
    color: rgba(249,246,241,0.65);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(186,120,18,0.1);
    display: flex; align-items: flex-start; gap: 0.75rem;
  }

  .package-includes li::before {
    content: '—'; color: var(--gold-mid); flex-shrink: 0;
  }

  .package-cta { margin-top: 2.5rem; }

  /* ── PROCESS ── */
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem;
    margin-top: 4rem;
  }

  .process-step { text-align: center; }

  .process-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300;
    color: var(--gold-light); opacity: 0.5;
    margin-bottom: 1rem;
  }

  .process-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 400; color: var(--warm-white);
    margin-bottom: 0.75rem;
  }

  .process-desc {
    font-size: 0.85rem; font-weight: 300; line-height: 1.75;
    color: rgba(249,246,241,0.55);
  }

  /* ── TESTIMONIALS ── */
  .testimonials-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px;
    background: var(--border); margin: 4rem 0;
  }

  .testimonial-card {
    background: var(--stone); padding: 3.5rem 3rem;
  }

  .testimonial-stars {
    color: var(--gold-light); font-size: 0.9rem; letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }

  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-style: italic; font-weight: 300;
    color: var(--warm-white); line-height: 1.7; margin-bottom: 1.5rem;
  }

  .testimonial-attr {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ── CONTACT FORM ── */
  .contact-form {
    max-width: 680px; margin: 0 auto;
  }

  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-field {
    display: flex; flex-direction: column; gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .form-field label {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-muted);
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    background: var(--stone);
    border: 1px solid var(--border);
    color: var(--warm-white);
    padding: 0.9rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem; font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    appearance: none;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--gold-mid);
  }
  .form-field textarea { min-height: 140px; resize: vertical; }

  /* ── DENVER GUIDE ── */
  .guide-section { background: var(--stone); }

  .guide-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--border); margin-top: 4rem;
  }

  .guide-item {
    background: var(--stone); padding: 2.5rem 2rem;
    transition: background 0.3s;
  }
  .guide-item:hover { background: #1a1a1e; }

  .guide-cat {
    font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold-mid); margin-bottom: 0.75rem;
  }

  .guide-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400; color: var(--warm-white);
    margin-bottom: 0.75rem;
  }

  .guide-desc {
    font-size: 0.82rem; font-weight: 300; line-height: 1.75;
    color: rgba(249,246,241,0.55);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    padding: 5rem 2rem 3rem;
  }

  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
  }

  .footer-brand p {
    font-size: 0.85rem; font-weight: 300; line-height: 1.8;
    color: rgba(249,246,241,0.5); margin-top: 10px;
    max-width: 320px;
  }

  .footer-logo { height: 100px; width: auto; margin-bottom: 0; }

  .footer-col h4 {
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold-mid); margin-bottom: 1.5rem;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.75rem; }
  .footer-col ul li a {
    font-size: 0.85rem; font-weight: 300;
    color: rgba(249,246,241,0.5); text-decoration: none; cursor: pointer;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold-light); }

  .footer-bottom {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: rgba(249,246,241,0.3);
    letter-spacing: 0.05em;
  }
@media (max-width:600px) {
  .footer-bottom span {
    display: block;
    width: 0px;
    height: 0px;
  }
}

  /* ── STATS ROW ── */
  .stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    margin: 5rem 0;
  }

  .stat-item {
    padding: 3rem 2rem; text-align: center;
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: var(--gold-light);
    display: block;
  }

  .stat-label {
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-muted); margin-top: 0.5rem; display: block;
  }

  /* ── MOBILE MENU ── */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 22px; height: 1px;
    background: var(--warm-white); transition: all 0.3s;
  }

  /* ── BACK BUTTON ── */
  .back-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-muted); cursor: pointer; text-decoration: none;
    padding: 1.5rem 2rem;
    transition: color 0.2s;
  }
  .back-btn:hover { color: var(--gold-light); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* ── BOOKING TABS ── */
  .booking-tabs {
    display: block; border-bottom: 1px solid var(--border);
    margin-bottom: 2rem; gap: 0; flex-wrap: wrap;
        max-width: 400px;
  }

  .booking-tab {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 1.5rem; cursor: pointer;
    color: var(--text-muted);
    background: transparent;
    border: none;
    transition: all 0.2s;
    font-family: 'Jost', sans-serif;
    width: 100%;
    border: 1px solid var(--gold-mid);
    margin: 0px 0 20px 0;
  }
  .booking-tab.active {
    color: var(--gold-light);
    border-bottom-width: 3px;
    border-bottom-color: var(--gold-mid);
        font-size: .9em;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    color: black;
  }
  .booking-tab:hover {
    color: black;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  }

  .booking-panel {
    display: none;
    max-width: 400px;
    border: 1px solid #a67826;
    margin: 0px auto;
    padding: 20px;
  }
  .booking-panel.active { display: block; }

  /* ── FULL-WIDTH DARK BG ── */
  .bg-stone { background: var(--stone); }
  .bg-charcoal { background: var(--charcoal); }

  .section-center { text-align: center; }
  .section-center .section-body { margin: 0 auto; }

  /* ── WHY SECTION ── */
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--border); margin-top: 3rem;
  }
  .why-item {
    background: var(--charcoal); padding: 3rem 2.5rem;
  }
  .why-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; color: var(--warm-white);
    margin-bottom: 1rem;
  }
  .why-item p {
    font-size: 0.9rem; font-weight: 300; line-height: 1.8;
    color: rgba(249,246,241,0.6);
  }

  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .about-split { grid-template-columns: 1fr; gap: 3rem; }
    .suites-grid { grid-template-columns: 1fr; }
    .suite-card:first-child { grid-column: span 1; aspect-ratio: 4/3; }
    .spaces-grid, .packages-grid, .guide-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .stat-item { border-bottom: 1px solid var(--border); }
    .form-row { grid-template-columns: 1fr; }
    .proof-inner { grid-template-columns: 1fr; }
    .proof-item { border-right: none !important; border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
    .proof-item:last-child { border-bottom: none; }
    .also-love-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    /* ── MOBILE BACKGROUND IMAGE SWAPS (800w WebP) ── */
    .hero-bg {
      background:
        radial-gradient(ellipse at 50% 30%, rgba(186,120,18,0.12) 0%, transparent 60%),
        linear-gradient(180deg, rgba(11,11,13,0.3) 0%, rgba(11,11,13,0.5) 50%, rgba(11,11,13,0.9) 100%),
        url('../img/embedded-image-001-800w.webp') center/cover no-repeat;
    }
    .hero-bg.castle {
      background:
        radial-gradient(ellipse at 50% 30%, rgba(186,120,18,0.12) 0%, transparent 60%),
        linear-gradient(180deg, rgba(11,11,13,0.2) 0%, rgba(11,11,13,0.5) 50%, rgba(11,11,13,0.92) 100%),
        url('../img/embedded-image-001-800w.webp') center/cover no-repeat;
    }
    .elope-hero-bg {
      background:
        radial-gradient(ellipse at 50% 40%, rgba(186,120,18,0.1) 0%, transparent 65%),
        linear-gradient(180deg, rgba(11,11,13,0.3) 0%, rgba(11,11,13,0.6) 60%, rgba(11,11,13,0.95) 100%),
        url('../img/embedded-image-002-800w.webp') center/cover no-repeat;
    }
  }

  /* ══════════════════════════════════════════════
     UTILITY CLASSES
  ══════════════════════════════════════════════ */

  /* Spacing */
  .mt-sm  { margin-top: 1rem; }
  .mt-md  { margin-top: 1.25rem; }
  .mt-lg  { margin-top: 1.5rem; }
  .mt-xl  { margin-top: 2rem; }
  .mt-2xl { margin-top: 2.5rem; }
  .mt-3xl { margin-top: 3rem; }
  .mb-sm  { margin-bottom: 1rem; }
  .mb-md  { margin-bottom: 1.5rem; }
  .mb-lg  { margin-bottom: 2rem; }
  .mb-2xl { margin-bottom: 2.5rem; }
  .mb-3xl { margin-bottom: 3rem; }
  .mx-auto { margin-left: auto; margin-right: auto; }
  .text-center { text-align: center; }
  .w-full  { width: 100%; }

  /* Typography helpers */
  .text-muted-sm { font-size: 0.75rem; color: var(--text-muted); }
  .text-gold     { color: var(--gold-light); }
  .text-muted-xs { font-size: 0.7rem;  color: var(--text-muted); }

  /* ══════════════════════════════════════════════
     NAV SPACER
  ══════════════════════════════════════════════ */
  /* .nav-spacer { height: 72px; } */

  /* ══════════════════════════════════════════════
     MOBILE MENU
  ══════════════════════════════════════════════ */
  #mobileMenu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--charcoal);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    padding: 2rem;
  }

  .mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-menu-list a {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(249,246,241,0.7);
    text-decoration: none;
    cursor: pointer;
  }

  /* ══════════════════════════════════════════════
     HOME PAGE
  ══════════════════════════════════════════════ */

  /* Hero: home variant removes default margin-top */
  .hero.home-hero { margin-top: 0; padding-top: 32px; }

  /* Gold rule non-centered (inline in text flow) */
  .gold-rule.inline-rule { margin: 1.5rem 0; }

  /* Home suites section wrapper */
  .suites-section-bg { background: var(--stone); padding: 6rem 0; }

  .suites-section-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Full-castle buyout banner */
  .castle-buyout-banner {
    background: var(--charcoal);
    border: 1px solid var(--border);
    padding: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .castle-buyout-banner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--warm-white);
    margin-bottom: 0.5rem;
  }

  .castle-buyout-banner > div > p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(249,246,241,0.6);
    max-width: 500px;
  }

  .castle-buyout-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* Why section: centered header */
  .why-header { text-align: center; }

  /* Elopements CTA band */
  .elope-cta-band {
    background: var(--stone);
    padding: 8rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .elope-cta-band-inner {
    max-width: 700px;
    margin: 0 auto;
  }

  /* ══════════════════════════════════════════════
     PAGE HEADERS (inner pages)
  ══════════════════════════════════════════════ */

  .page-header {
    padding: 10rem 2rem 6rem;
    text-align: center;
  }

  .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--warm-white);
    margin-bottom: 1rem;
  }

  .page-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(249,246,241,0.65);
    max-width: 600px;
    margin: 0 auto;
  }

  /* Suites page hero */
  .page-header-suites {
    background:
      linear-gradient(180deg, rgba(11,11,13,0.5) 0%, rgba(11,11,13,0.8) 60%, var(--black) 100%),
      url('../img/embedded-image-002.jpg') center/cover no-repeat;
  }

  /* Book page header */
  .page-header-book {
    background: linear-gradient(180deg, var(--stone) 0%, var(--black) 100%);
    padding: 5rem 2rem 3rem;
    text-align: center;
  }

  .page-header-book h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.75rem;
  }

  .page-header-book p {
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  /* ══════════════════════════════════════════════
     SUITE DETAIL PAGES
  ══════════════════════════════════════════════ */

  /* CTA button row inside each suite hero */
  .suite-hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* Centered "Book this suite" block */
  .suite-cta-block {
    text-align: center;
    margin: 3rem 0;
  }

  /* Small phone/note line below booking button */
  .suite-cta-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    
  }

  /* Book page inner wrapper */
  .booking-inner {
    max-width: 1100px;
    margin: 0 auto;
        display: flex;
  }

  /* Booking iframes */
  .booking-iframe {
    height: 900px;
    border: none;
    padding: 4px;
    margin: 20px;
    background: white;
    width: 330px;
  }

  /* ══════════════════════════════════════════════
     ELOPEMENTS PAGE
  ══════════════════════════════════════════════ */

  /* Why Castle Marne section */
  .elope-why-section {
    background: var(--stone);
    padding: 7rem 2rem;
    border-top: 1px solid var(--border);
  }

  .elope-why-inner  { max-width: 1200px; margin: 0 auto; }

  .elope-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  /* Stats grid — 2-column variant on elopements page */
  .stats-row.stats-2col { grid-template-columns: 1fr 1fr; margin: 0; }

  /* Stat item with top border (used instead of bottom) */
  .stat-item.border-top { border-top: 1px solid var(--border); }

  /* Inline testimonial/quote box */
  .elope-quote-box {
    background: rgba(186,120,18,0.06);
    border-left: 2px solid var(--gold-mid);
    padding: 2rem;
    margin-top: 1.5px;
  }

  .elope-quote-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    color: var(--warm-white);
    line-height: 1.7;
  }

  .elope-quote-box cite {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* Three Spaces section */
  .elope-spaces-section { padding: 7rem 2rem; }
  .elope-spaces-inner   { max-width: 1200px; margin: 0 auto; }

  /* Book Your Space section */
  .elope-booking-section {
    background: var(--stone);
    padding: 7rem 2rem;
    border-top: 1px solid var(--border);
  }

  .elope-booking-inner { max-width: 1100px; margin: 0 auto; }

  .elope-booking-iframe-wrap,
  .booking-panel {
    border: 1px solid var(--border);
    padding: 10px;
    margin-bottom: 2rem;
        width: fit-content;
    margin: 0px auto;
  }

  /* Process section */
  .elope-process-section { padding: 7rem 2rem; }
  .elope-process-inner   { max-width: 1200px; margin: 0 auto; }

  /* Testimonials section */
  .elope-testimonials-section {
    background: var(--stone);
    padding: 6rem 2rem;
    border-top: 1px solid var(--border);
  }

  .elope-testimonials-inner { max-width: 1200px; margin: 0 auto; }

  /* Contact section */
  .elope-contact-section { padding: 7rem 2rem; }

  .elope-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  /* Contact info list */
  .contact-info-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-info-row {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .contact-info-row.top-align { align-items: flex-start; }

  .contact-info-label {
    color: var(--gold-mid);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    min-width: 80px;
    flex-shrink: 0;
  }

  .contact-info-value {
    color: rgba(249,246,241,0.7);
    font-weight: 300;
    font-size: 0.9rem;
  }

  .contact-info-value a {
    color: var(--warm-white);
    text-decoration: none;
    font-weight: 300;
  }

  /* ══════════════════════════════════════════════
     DENVER GUIDE PAGE
  ══════════════════════════════════════════════ */

  .denver-guide-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .denver-guide-hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(11,11,13,0.3) 0%, rgba(11,11,13,0.7) 100%),
      url('../img/embedded-image-004.jpg') center/cover no-repeat;
  }

  .denver-guide-hero-content { position: relative; z-index: 2; }

  .denver-guide-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--warm-white);
    line-height: 1.0;
  }

  .denver-guide-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(249,246,241,0.7);
    margin-top: 1rem;
  }

  /* Intro blurb */
  .denver-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
  }

  .denver-intro p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(249,246,241,0.8);
    text-align: center;
  }

  /* Section wrappers */
  .guide-section-inner    { max-width: 1200px; margin: 0 auto; }

  .guide-section-alt {
    background: var(--stone);
    padding: 5rem 2rem;
    border-top: 1px solid var(--border);
  }

  .guide-section-plain    { padding: 5rem 2rem; }

  /* guide-grid inside guide sections gets top margin */
  .guide-section-alt .guide-grid,
  .guide-section-plain .guide-grid { margin-top: 3rem; }

  /* Small descriptor under section heading */
  .guide-section-desc {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  /* ══════════════════════════════════════════════
     CASTLE SECRETS PAGE
  ══════════════════════════════════════════════ */

  .secrets-hero {
    position: relative;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .secrets-hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 60%, rgba(186,120,18,0.15) 0%, transparent 65%),
      linear-gradient(180deg, rgba(11,11,13,0.15) 0%, rgba(11,11,13,0.6) 60%, rgba(11,11,13,0.97) 100%),
      url('../img/embedded-image-012.jpg') center/cover no-repeat;
  }

  .secrets-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 2rem;
  }

  .secrets-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--warm-white);
    line-height: 1.0;
    margin-bottom: 1.25rem;
  }

  .secrets-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(249,246,241,0.7);
    line-height: 1.7;
  }

  /* Intro blurb */
  .secrets-intro {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    text-align: center;
  }

  .secrets-intro p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(249,246,241,0.75);
  }

  /* Grid outer wrapper */
  .secrets-grid-outer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 8rem;
  }

  /* Category separator label */
  .secrets-category-label { margin-bottom: 2rem; }
  .secrets-section-sep    { margin: 4rem 0 2rem; }

  /* 3-column secret card grids */
  .secrets-people-grid,
  .secrets-building-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    margin-bottom: 1.5px;
  }

  /* Closing CTA */
  .secrets-closing-cta {
    border: 1px solid var(--border);
    padding: 4rem;
    text-align: center;
    margin-top: 1.5px;
  }

  .secrets-closing-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--warm-white);
    margin-bottom: 1rem;
  }

  .secrets-closing-cta > p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2.5rem;
  }

  .secrets-closing-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Secret body images */
  .secret-body img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    margin-bottom: 1.5rem;
  }

  .secret-body img.aspect-4-3 { aspect-ratio: 4/3; }

  /* Secret body paragraph spacing */
  .secret-body p + p { margin-top: 1rem; }

  /* Footnote-style paragraphs in secret bodies */
  .secret-footnote { font-size: 0.75rem; color: var(--text-muted); }

  /* ══════════════════════════════════════════════
     SECRET CARDS  (merged from inline <style> block)
  ══════════════════════════════════════════════ */
  .secret-card {
    background: var(--stone);
    padding: 3rem 2.5rem;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
  }
  .secret-card:hover { background: #222228; }

  .secret-icon {
    font-size: 1.5rem; color: var(--gold-mid);
    margin-bottom: 1rem; display: block;
    line-height: 1;
  }

  .secret-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.65rem; letter-spacing: 0.3em;
    color: var(--text-muted); margin-bottom: 1rem;
  }

  .secret-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400;
    color: var(--warm-white); margin-bottom: 1rem;
    line-height: 1.25;
  }

  .secret-tease {
    font-size: 0.88rem; font-weight: 300; line-height: 1.75;
    color: rgba(249,246,241,0.6);
    display: block; margin-bottom: 1.5rem;
  }

  .secret-cta {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold-mid); display: inline-block;
    border-bottom: 1px solid var(--border); padding-bottom: 2px;
    transition: color 0.2s;
  }
  .secret-card:hover .secret-cta { color: var(--gold-light); }

  .secret-body {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }

  .secret-body p {
    font-size: 0.9rem; font-weight: 300; line-height: 1.85;
    color: rgba(249,246,241,0.72);
  }

  .secret-body.open { display: block; animation: fadeUp 0.4s ease forwards; }

  .secret-card.expanded .secret-cta::after { content: ''; }
  .secret-card.expanded .secret-cta { color: var(--text-muted); }

  @media (max-width: 900px) {
    .elope-why-grid          { grid-template-columns: 1fr; gap: 3rem; }
    .elope-contact-inner     { grid-template-columns: 1fr; gap: 3rem; }
    .secrets-people-grid,
    .secrets-building-grid   { grid-template-columns: 1fr; }
    #secrets-people,
    #secrets-people + div    { grid-template-columns: 1fr !important; }
    .booking-inner {
    display:  grid;
    grid-template-columns: 1fr;
            padding: 0px !important;
}

.bookingTabs {
    grid-row: 2;
}

div#bookingTabs {
    grid-row: 2;
    margin: 0px auto;
}
.booking-tab {
    margin: 10px 20px;
    max-width: calc(100% - 40px);
}
.elope-booking-iframe-wrap, .booking-panel {
    margin: 10px auto;
}
.booking-iframe {
      padding: 3px;
      margin: 5px;
      width: calc(100% - 10px);
}
  }

  .margintop1 {
    margin-top:1rem;
  }

  /* ── SECRET CARDS ── */
  .secret-card {
    background: var(--stone);
    padding: 3rem 2.5rem;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
  }
  .secret-card:hover { background: #222228; }

  .secret-icon {
    font-size: 1.5rem; color: var(--gold-mid);
    margin-bottom: 1rem; display: block;
    line-height: 1;
  }

  .secret-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.65rem; letter-spacing: 0.3em;
    color: var(--text-muted); margin-bottom: 1rem;
  }

  .secret-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400;
    color: var(--warm-white); margin-bottom: 1rem;
    line-height: 1.25;
  }

  .secret-tease {
    font-size: 0.88rem; font-weight: 300; line-height: 1.75;
    color: rgba(249,246,241,0.6);
    display: block; margin-bottom: 1.5rem;
  }

  .secret-cta {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold-mid); display: inline-block;
    border-bottom: 1px solid var(--border); padding-bottom: 2px;
    transition: color 0.2s;
  }
  .secret-card:hover .secret-cta { color: var(--gold-light); }

  .secret-body {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }

  .secret-body p {
    font-size: 0.9rem; font-weight: 300; line-height: 1.85;
    color: rgba(249,246,241,0.72);
  }
  
  .secret-body.open { display: block; animation: fadeUp 0.4s ease forwards; }

  .secret-card.expanded .secret-cta::after { content: ''; }
  .secret-card.expanded .secret-cta { color: var(--text-muted); }

  @media (max-width: 900px) {
    #secrets-people, #secrets-people + div { grid-template-columns: 1fr !important; }
  }