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

    :root {
      --cream:        #faf7f2;
      --cream-dark:   #f2ede4;
      --cream-deeper: #e8e0d4;
      --sage:         #7a9e87;
      --sage-light:   #a8c4b0;
      --sage-dark:    #5a7d67;
      --sage-mist:    rgba(122,158,135,0.12);
      --sage-glow:    rgba(122,158,135,0.25);
      --white:        #ffffff;
      --ink:          #2c2c2a;
      --ink-soft:     #5a5854;
      --ink-faint:    #9a9590;
      --border:       rgba(122,158,135,0.25);
      --border-light: rgba(122,158,135,0.12);

      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;

      --nav-h: 72px;
      --radius: 4px;
      --tr: 300ms ease;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: var(--font-sans);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--cream-dark); }
    ::-webkit-scrollbar-thumb { background: var(--sage-light); border-radius: 3px; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: var(--nav-h);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 clamp(1.5rem, 5vw, 4rem);
      background: rgba(250,247,242,0.93);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
      transition: box-shadow var(--tr), height var(--tr);
    }
    nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); height: 60px; }

    .nav-logo {
      font-family: var(--font-serif); font-style: italic;
      font-weight: 400; font-size: 1.4rem;
      color: var(--ink); text-decoration: none; letter-spacing: 0.02em;
    }
    .nav-logo span { color: var(--sage); }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-family: var(--font-sans); font-size: 0.75rem;
      font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--ink-soft); text-decoration: none;
      transition: color var(--tr); position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
      height: 1px; background: var(--sage);
      transform: scaleX(0); transform-origin: left; transition: transform var(--tr);
    }
    .nav-links a:hover { color: var(--sage-dark); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-toggle {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px; background: none; border: none;
    }
    .nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: var(--tr); }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .nav-drawer {
      position: fixed; top: 0; right: 0; bottom: 0; z-index: 99;
      width: min(75vw, 280px);
      background: var(--cream);
      flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
      padding: 2rem 2rem 2rem 2.4rem;
      box-shadow: -4px 0 32px rgba(0,0,0,0.10);
      transform: translateX(100%);
      transition: transform 350ms cubic-bezier(0.4,0,0.2,1);
      display: flex;
    }
    .nav-drawer.open { transform: translateX(0); }
    .nav-drawer a {
      font-family: var(--font-serif); font-size: 1.5rem; font-style: italic;
      color: var(--ink); text-decoration: none;
    }
    .nav-drawer a:hover { color: var(--sage); }
    .nav-drawer-backdrop {
      display: none; position: fixed; inset: 0; z-index: 98;
      background: rgba(0,0,0,0.35);
      opacity: 0; transition: opacity 350ms ease;
    }
    .nav-drawer-backdrop.open { display: block; opacity: 1; }

    @media (max-width: 680px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
    }

    /* HERO */
    .hero {
      min-height: 100svh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; text-align: center;
      padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 6vw, 4rem) 4rem;
      position: relative;
      background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(168,196,176,0.2) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(122,158,135,0.1) 0%, transparent 60%),
        var(--cream);
    }
    .hero::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%237a9e87' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    }

    .hero-eyebrow {
      font-size: 0.7rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--sage); margin-bottom: 1.5rem;
      opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero-botanical {
      width: 180px; height: auto; margin-bottom: 1.8rem;
      opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
    }

    .hero-names {
      font-family: var(--font-serif); font-weight: 300; font-style: italic;
      font-size: clamp(3.2rem, 9vw, 7rem);
      line-height: 1.1; color: var(--ink); margin-bottom: 1.5rem;
      opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
    }
    .hero-names .amp { color: var(--sage); font-size: 0.7em; vertical-align: middle; margin: 0 0.12em; }

    .hero-date {
      font-size: 0.8rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--ink-soft); margin-bottom: 0.5rem;
      opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
    }
    .hero-venue {
      font-family: var(--font-serif); font-size: 1.3rem; font-style: italic;
      color: var(--sage-dark); margin-bottom: 3rem;
      opacity: 0; animation: fadeUp 0.8s 0.75s forwards;
    }

    /* countdown */
    .countdown {
      display: flex; gap: clamp(1rem, 4vw, 2rem); margin-bottom: 3rem;
      opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
    }
    .countdown-unit { display: flex; flex-direction: column; align-items: center; }
    .countdown-num {
      font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 300; line-height: 1;
      background: var(--white); border: 1px solid var(--border);
      padding: 0.6rem 0.9rem; border-radius: var(--radius);
      min-width: 68px; text-align: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .countdown-label {
      font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--ink-faint); margin-top: 0.5rem;
    }

    .hero-cta {
      display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
      opacity: 0; animation: fadeUp 0.8s 1.05s forwards;
    }

    /* BUTTONS */
    .btn {
      display: inline-block; font-family: var(--font-sans); font-size: 0.72rem;
      font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
      text-decoration: none; padding: 0.85rem 2rem; border-radius: var(--radius);
      transition: all var(--tr); cursor: pointer; border: none;
    }
    .btn-sage { background: var(--sage); color: var(--white); }
    .btn-sage:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 6px 20px var(--sage-glow); }
    .btn-outline { background: transparent; color: var(--sage-dark); border: 1.5px solid var(--sage); }
    .btn-outline:hover { background: var(--sage-mist); transform: translateY(-2px); }

    /* SECTIONS */
    section { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 4rem); }
    section.alt { background: var(--cream-dark); }
    .container { max-width: 1100px; margin: 0 auto; }

    .section-label {
      display: block; font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--sage); margin-bottom: 1rem;
    }
    .section-title {
      font-family: var(--font-serif); font-weight: 300;
      font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2;
      color: var(--ink); margin-bottom: 1rem;
    }
    .section-title em { font-style: italic; color: var(--sage-dark); }
    .section-sub {
      font-size: 1rem; color: var(--ink-soft); max-width: 520px;
      line-height: 1.8; margin-bottom: 3rem;
    }

    .leaf-divider {
      display: flex; align-items: center; gap: 1rem;
      margin: 0 auto 3rem; max-width: 320px;
    }
    .leaf-divider::before, .leaf-divider::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }

    /* TIMELINE */
    .timeline { position: relative; }
    .timeline::before {
      content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
      width: 1px; background: var(--border); transform: translateX(-50%);
    }
    .tl-item {
      display: grid; grid-template-columns: 1fr 56px 1fr;
      align-items: start; margin-bottom: 2.5rem;
    }
    .tl-item:last-child { margin-bottom: 0; }
    .tl-content {
      background: var(--white); border: 1px solid var(--border-light);
      border-radius: var(--radius); padding: 1.4rem 1.6rem;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
      transition: box-shadow var(--tr), transform var(--tr);
    }
    .tl-content:hover { box-shadow: 0 6px 30px var(--sage-glow); transform: translateY(-2px); }
    .tl-item.right .tl-content { grid-column: 3; }
    .tl-item.left  .tl-content { grid-column: 1; }
    .tl-dot { grid-column: 2; display: flex; justify-content: center; padding-top: 1.4rem; }
    .tl-dot-inner {
      width: 14px; height: 14px; background: var(--white);
      border: 2.5px solid var(--sage); border-radius: 50%; z-index: 1;
    }
    .tl-spacer { }
    .tl-item.right .tl-spacer { grid-column: 1; }
    .tl-item.left  .tl-spacer { grid-column: 3; }
    .tl-time {
      font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--sage); margin-bottom: 0.4rem;
    }
    .tl-title {
      font-family: var(--font-serif); font-size: 1.25rem;
      font-weight: 400; color: var(--ink); margin-bottom: 0.3rem;
    }
    .tl-desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

    @media (max-width: 700px) {
      .timeline::before { left: 22px; }
      .tl-item { grid-template-columns: 44px 1fr; }
      .tl-item.left .tl-content,
      .tl-item.right .tl-content { grid-column: 2; }
      .tl-item.left .tl-dot,
      .tl-item.right .tl-dot { grid-column: 1; }
      .tl-item .tl-spacer { display: none; }
    }

    /* HOTEL */
    .hotel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
    @media (max-width: 750px) { .hotel-grid { grid-template-columns: 1fr; } }

    .hotel-card {
      background: var(--white); border: 1px solid var(--border-light);
      border-radius: var(--radius); overflow: hidden;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    }
    .hotel-card-img {
      width: 100%; aspect-ratio: 16/9;
      background: linear-gradient(135deg, rgba(168,196,176,0.3), rgba(232,224,212,0.5));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-serif); font-style: italic;
      font-size: 1.5rem; color: var(--sage-dark); letter-spacing: 0.04em;
    }
    .hotel-card-body { padding: 1.8rem; }
    .hotel-card-body h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 0.6rem; }
    .hotel-card-body p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1rem; }

    .hotel-detail { display: flex; flex-direction: column; gap: 1.2rem; }
    .hotel-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
    .hotel-detail-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: var(--sage-mist); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .hotel-detail-icon svg { width: 16px; height: 16px; stroke: var(--sage-dark); fill: none; stroke-width: 1.8; }
    .hotel-detail-text h4 {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--sage-dark); margin-bottom: 0.2rem;
    }
    .hotel-detail-text p { font-size: 0.9rem; color: var(--ink-soft); }

    /* PARKING */
    .carpark-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
    .carpark-card {
      background: var(--white); border: 1px solid var(--border-light);
      border-radius: var(--radius); padding: 1.6rem;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
      transition: box-shadow var(--tr), transform var(--tr);
      position: relative; overflow: hidden;
    }
    .carpark-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--sage-light);
    }
    .carpark-card:hover { box-shadow: 0 6px 30px var(--sage-glow); transform: translateY(-3px); }
    .carpark-badge {
      display: inline-block; font-size: 0.62rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      background: var(--sage-mist); color: var(--sage-dark);
      padding: 0.25rem 0.65rem; border-radius: 20px; margin-bottom: 0.9rem;
    }
    .carpark-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
    .carpark-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.8rem; }
    .carpark-card p:last-of-type { margin-bottom: 0; }
    .qr-example { margin-top: 1.4rem; text-align: center; }
    .qr-example img { display: block; width: min(280px, 100%); margin: 0 auto; border-radius: var(--radius); }
    .qr-example-caption { font-size: 0.78rem; color: var(--ink-faint); font-style: italic; margin-top: 0.7rem; }
    .carpark-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; color: var(--sage-dark); font-weight: 500; margin-top: 1rem; }

    /* FAQ */
    .faq-list { display: flex; flex-direction: column; max-width: 800px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border-light); }
    .faq-item:first-child { border-top: 1px solid var(--border-light); }
    .faq-q {
      width: 100%; display: flex; align-items: center; justify-content: space-between;
      gap: 1rem; text-align: left; background: none; border: none; cursor: pointer;
      padding: 1.4rem 0; font-family: var(--font-serif);
      font-size: 1.15rem; font-weight: 400; color: var(--ink); transition: color var(--tr);
    }
    .faq-q:hover { color: var(--sage-dark); }
    .faq-q svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--sage); fill: none; stroke-width: 2; transition: transform var(--tr); }
    .faq-item.open .faq-q svg { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .faq-item.open .faq-a { max-height: 300px; }
    .faq-a p { padding-bottom: 1.4rem; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.8; }

    /* FOOTER */
    footer {
      background: var(--cream-deeper); border-top: 1px solid var(--border);
      padding: 3rem clamp(1.5rem, 6vw, 4rem); text-align: center;
    }
    .footer-monogram { font-family: var(--font-serif); font-style: italic; font-size: 2rem; font-weight: 300; color: var(--ink); margin-bottom: 0.4rem; }
    .footer-monogram span { color: var(--sage); }
    .footer-date { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.75rem; }
    .footer-quote { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
    footer hr { border: none; border-top: 1px solid var(--border); margin-bottom: 1.2rem; }
    .footer-copy { font-size: 0.75rem; color: var(--ink-faint); }

    /* REVEAL — hidden by default only once JS has enabled animations */
    .js-animations .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .js-animations .reveal.visible { opacity: 1; transform: none; }
    .js-animations .reveal--left  { transform: translateX(-24px); }
    .js-animations .reveal--right { transform: translateX(24px); }
    .js-animations .reveal--left.visible,
    .js-animations .reveal--right.visible { transform: none; }
    .js-animations .stagger .reveal:nth-child(1) { transition-delay: 0ms; }
    .js-animations .stagger .reveal:nth-child(2) { transition-delay: 80ms; }
    .js-animations .stagger .reveal:nth-child(3) { transition-delay: 160ms; }
    .js-animations .stagger .reveal:nth-child(4) { transition-delay: 240ms; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: none; }
    }

    /* SCROLL TOP */
    #scroll-top {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
      width: 44px; height: 44px; background: var(--white);
      border: 1.5px solid var(--border); border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      opacity: 0; pointer-events: none;
      transition: opacity var(--tr), transform var(--tr), box-shadow var(--tr);
    }
    #scroll-top.visible { opacity: 1; pointer-events: auto; }
    #scroll-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px var(--sage-glow); }
    #scroll-top svg { width: 18px; height: 18px; stroke: var(--sage-dark); fill: none; stroke-width: 2; }

@media (max-width: 680px) {
    .two-col-parking { grid-template-columns: 1fr !important; }
}

/* Semantic utility classes */
.section-header { margin-bottom: 3rem; }
.hotel-notice { background: var(--sage-mist); border-left: 3px solid var(--sage); border-radius: var(--radius); padding: 1rem 1.1rem; margin-top: 0.5rem; }
.hotel-notice-text { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.75; margin: 0; }
.text-sage-dark { color: var(--sage-dark); }
.link-sage-dark { color: var(--sage-dark); text-decoration: none; }
.link-ink-soft { color: var(--ink-soft); text-decoration: none; }
.text-urgent { color: #b94a4a; }
.parking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.link-inherit { color: inherit; text-decoration: none; }
.carpark-warning { border-left: 3px solid #c9b96e; }
.badge-warning { background: rgba(201, 185, 110, 0.15); color: #8a7a30; }
.ev-card { margin-bottom: 1.5rem; max-width: 100%; display: flex; gap: 1.4rem; align-items: flex-start; flex-wrap: wrap; }
.ev-card-content { flex: 1; min-width: 220px; }
.badge-sage { background: rgba(122, 158, 135, 0.15); color: var(--sage-dark); }
.heading-ev { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
.body-text { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.75; }
.app-buttons { display: flex; flex-direction: column; gap: 0.6rem; padding-top: 0.2rem; flex-shrink: 0; }
.btn-small { font-size: 0.68rem; padding: 0.6rem 1.2rem; white-space: nowrap; }
.heading-secondary { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 300; color: var(--ink); margin-bottom: 0.5rem; }
.text-sage { color: var(--sage-dark); }
.intro-text { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.5rem; line-height: 1.8; max-width: 620px; }
.map-frame { margin-bottom: 2rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-light); box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04); }
.map-image { width: 100%; display: block; max-height: 500px; object-fit: contain; background: #f8f6f2; }
.map-caption { padding: 0.9rem 1.2rem; background: var(--cream-dark); border-top: 1px solid var(--border-light); }
.caption-text { font-size: 0.8rem; color: var(--ink-faint); text-align: center; letter-spacing: 0.04em; }
.mb-1-5 { margin-bottom: 1.5rem; }
.info-box { padding: 1.4rem 1.6rem; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); max-width: 700px; margin-bottom: 1.2rem; }
.info-label { font-size: 0.88rem; font-weight: 500; color: var(--sage-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.8rem; }
.info-body { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.text-ink { color: var(--ink); }
.mb-1 { margin-bottom: 1rem; }
.list-heading { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.4rem; }
.styled-list { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.9; padding-left: 1.2rem; margin: 0; }
.text-muted { color: var(--ink-faint); }
.taxi-box { padding: 1.4rem 1.6rem; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); max-width: 700px; }
.taxi-text { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.8; }
.taxi-list { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.9; padding-left: 1.2rem; margin: 0.6rem 0; }
.faq-header { margin-bottom: 3rem; text-align: center; }
.today-message { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--sage-dark); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .js-animations .reveal,
    .js-animations .reveal.visible,
    .js-animations .reveal--left,
    .js-animations .reveal--left.visible,
    .js-animations .reveal--right,
    .js-animations .reveal--right.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
