/* Typography */
html, body{ font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.hero-copy h1{ font-weight: 800; }
/* ===========================
       Watercolour theme variables
       =========================== */
    :root{
      --page-bg: #A8A87D;     /* solid site background */
      --paper: #fbf7f1;        /* warm paper */
      --ink: #2a2a2a;          /* text */
      --muted: #5e5b56;        /* secondary text */
      --wash-1: #cfead6;       /* soft green */
      --wash-2: #bfe3c6;       /* leafy */
      --wash-3: #e6f4e6;       /* pale mint */
      --accent: #a07c43;       /* warm gold/brown */
      --accent-2: #3b6a7a;     /* teal ink */
      --card: rgba(255,255,255,.72);
      --border: rgba(42,42,42,.12);
      --shadow: 0 12px 28px rgba(0,0,0,.10);
      --radius: 22px;
      --max: 980px;
    }

    *{ box-sizing: border-box; }
    html{ scroll-behavior: smooth; }
    body{
      margin: 0;
      font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--ink);
      background: var(--page-bg);
      min-height: 100vh;
    }

    /* A subtle paper texture without images (safe + lightweight) */
        /* body:before disabled for solid background */
    body:before{ display:none; }



    /* Watercolour texture overlay (procedural SVG noise) */
        /* body:after disabled for solid background */
    body:after{ display:none; }
    a{ color: inherit; text-decoration: none; }
    a:hover{ opacity: .9; }
    .container{ max-width: var(--max); margin: 0 auto; padding: 0 18px; position: relative; }

    /* ===========================
       Top navigation
       =========================== */
    .nav-wrap{
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: rgba(251,247,241,.75);
      border-bottom: 1px solid var(--border);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content: space-between;
      padding: 12px 0;
      gap: 14px;
    }
    .brand{
      display:flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .brand-link{
      text-decoration:none;
      color:inherit;
      display:block;
    }

    .brand strong{
      font-family: inherit;
      letter-spacing: .2px;
      font-size: 1.05rem;
    }
    .brand small{
      font-family: inherit;
      color: var(--muted);
      font-size: .84rem;
    }

    .nav-links{
      display:flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .pill{
      font-family: inherit;
      font-size: .92rem;
      padding: 9px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255,255,255,.42);
      transition: transform .12s ease, background .12s ease;
      white-space: nowrap;
    }
    .pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.75); }
    .pill.primary{
      border-color: rgba(160,124,67,.35);
      background: rgba(160,124,67,.12);
    }

    /* Mobile nav toggle */
    .nav-toggle{
      display:none;
      font-family: inherit;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.55);
      border-radius: 999px;
      padding: 9px 12px;
      cursor: pointer;
    }

    @media (max-width: 760px){
      .nav-links{ display:none; width: 100%; }
      .nav-toggle{ display:inline-flex; align-items:center; gap: 8px; }
      .nav.open .nav-links{
        display:flex;
        padding: 10px 0 4px;
      }
      .brand{ min-width: unset; }
    }

    /* ===========================
       Section styling
       =========================== */
    section{
      padding: 44px 0;
    }
    .section-card{
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .section-inner{
      padding: 26px;
    }
    h2{
      margin: 0 0 10px;
      font-size: 1.75rem;
      letter-spacing: .2px;
    }
    p{
      margin: 0 0 12px;
      color: var(--muted);
      font-family: inherit;
      font-size: 1.02rem;
      line-height: 1.65;
    }
    .muted{ color: var(--muted); }

    .grid-2{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
    }
    @media (max-width: 860px){
      .grid-2{ grid-template-columns: 1fr; }
    }

    /* ===========================
       Hero
       =========================== */
    .hero{
      padding: 18px 0 54px;
    }
    .hero-card{
      position: relative;
      border-radius: 28px;
      overflow:hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      /* Full-bleed venue image background (set in HTML via CSS variable) */
      background-image:
        linear-gradient(180deg, rgba(251,247,241,.18), rgba(251,247,241,.04)),
        radial-gradient(760px 520px at 18% 12%, rgba(191,227,198,.38), transparent 62%),
        radial-gradient(820px 560px at 86% 10%, rgba(207,234,214,.30), transparent 64%),
        radial-gradient(860px 600px at 78% 90%, rgba(230,244,230,.26), transparent 66%),
        var(--hero-img);
      background-size: cover;
      background-position: center 6%;
      background-repeat: no-repeat;
}

    .hero-inner{
      display:flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 18px;
      padding: 26px;
      padding-top: 30px; /* pushes copy into top whitespace */
      min-height: 760px;
    }

    /* Landing page tweaks: avoid an overly tall hero */
    .landing .hero-inner{ min-height: 540px; }
    @media (max-width: 520px){
      .landing .hero-inner{ min-height: 620px; }
    }

    .hero-copy h1{
      margin: 0 0 10px;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: .3px;
      line-height: 1.1;
    }
    .hero-copy .sub{
      margin-bottom: 18px;
      color: var(--muted);
      font-family: inherit;
      font-size: 1.05rem;
    }
    /* Hero copy sits on top of the background image */
    .hero-copy{
      max-width: 620px;
      background: rgba(255,255,255,.38);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 18px 18px 16px;
      box-shadow: 0 10px 22px rgba(0,0,0,.08);
      backdrop-filter: blur(6px);
    }

    /* ===========================
       Detail chips / tiles
       =========================== */
    .chips{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
    }
    .chip{
      font-family: inherit;
      font-size: .95rem;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.60);
    }
    .chip strong{ color: var(--accent-2); }

    .tiles{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 12px;
    }
    /* Useful variants */
    .tiles.two{ grid-template-columns: repeat(2, 1fr); }
    @media (max-width: 860px){
      .tiles{ grid-template-columns: 1fr; }
    }

    /* Landing page choice tiles */
    .choice{ display:block; height: 100%; }
    .choice .tile{ height: 100%; transition: transform .12s ease, background .12s ease; }
    .choice:hover .tile{ transform: translateY(-1px); background: rgba(255,255,255,.78); }
    .choice-title{ font-size: 1.05rem; font-weight: 600; letter-spacing: .2px; }
    .choice-sub{ margin-top: 6px; color: var(--muted); line-height: 1.5; }
    .tile{
      background: rgba(255,255,255,.65);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 14px;
    }
    .tile .k{
      font-family: inherit;
      color: var(--muted);
      font-size: .9rem;
      margin-bottom: 6px;
    }
    .tile .v{
      font-size: 1.05rem;
      letter-spacing: .2px;
    }

    /* ===========================
       Timeline
       =========================== */
    /* Horizontal timeline (scrolls on small screens) */
    .timeline{
      margin-top: 14px;
      overflow-x: auto;
      padding-bottom: 6px;
      -webkit-overflow-scrolling: touch;
    }
    .timeline::-webkit-scrollbar{ height: 10px; }
    .timeline::-webkit-scrollbar-thumb{
      background: rgba(42,42,42,.10);
      border-radius: 999px;
    }
    .t-row{
      display:flex;
      align-items: stretch;
      gap: 16px;
      min-width: 760px;
      padding: 6px 2px 2px;
      position: relative;
    }
    .t-node{
      position: relative;
      flex: 1 0 0;
      min-width: 150px;
      background: rgba(255,255,255,.62);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 14px 14px 12px;
    }
    /* connector line between nodes */
    .t-node:not(:first-child):before{
      content:"";
      position:absolute;
      left: -16px;
      top: 28px;
      width: 16px;
      height: 2px;
      background: rgba(42,42,42,.14);
    }
    .t-icon{
  width: 48px;
  height: 48px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 12px;
  background: transparent;
  border: none;
}
    .tiles.one{ grid-template-columns: 1fr; }

    /* Landing (chooser) page */
    body.landing .landing-card{ max-width: 980px; }
    body.landing .section-inner{ padding: 56px 56px 44px; }
    body.landing .landing-title{
      font-size: clamp(42px, 5vw, 64px);
      line-height: 1.05;
      margin: 0 0 10px;
      letter-spacing: -0.5px;
    }
    body.landing .landing-tagline{
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      opacity: 0.75;
      margin-bottom: 10px;
    }
    body.landing .landing-sub{
      margin: 0 0 22px;
      font-size: 18px;
      opacity: 0.85;
    }
    body.landing .tiles.landing-grid{
      grid-template-columns: repeat(2, minmax(280px, 1fr));
      gap: 14px;
      margin-top: 6px;
      align-items: stretch;
    }
    @media (max-width: 860px){
      body.landing .tiles.landing-grid{ grid-template-columns: 1fr; }
      body.landing .section-inner{ padding: 34px 24px 28px; }
    }
    body.landing .choice .tile{
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(17,17,17,0.08);
      border-radius: 18px;
      padding: 18px 18px 16px;
    }
    body.landing .choice:hover .tile{
      background: rgba(255,255,255,0.92);
      transform: translateY(-2px);
    }
    body.landing .choice-title{ font-size: 18px; }
    body.landing .choice-sub{ opacity: 0.8; }
    body.landing .landing-help{ margin: 16px 0 0; }


.t-icon svg{
  width: 42px;
  height: 42px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* PNG icons (extracted from the invitation timeline artwork) */
.t-icon .icon-img{
  width: 48px;
  height: 48px;
  display:block;
}

    .t-time{
      font-family: inherit;
      color: var(--accent-2);
      font-weight: 650;
      letter-spacing: .2px;
      margin: 0 0 6px;
    }
    .t-title{
      margin: 0;
      font-size: 1.06rem;
      line-height: 1.25;
    }
    .t-detail{
      margin: 6px 0 0;
      color: var(--muted);
      font-family: inherit;
      font-size: .98rem;
    }
    @media (max-width: 900px){
      .t-row{ min-width: 860px; }
    }
    @media (max-width: 520px){
      .t-row{ min-width: 980px; }
    }

    /* ===========================
       FAQ accordion
       =========================== */
    .faq{
      display:grid;
      gap: 10px;
      margin-top: 14px;
    }
    details{
      border: 1px solid var(--border);
      background: rgba(255,255,255,.62);
      border-radius: 18px;
      padding: 12px 14px;
    }
    summary{
      cursor: pointer;
      font-family: inherit;
      font-weight: 600;
      color: var(--ink);
      list-style: none;
    }
    summary::-webkit-details-marker{ display:none; }
    details p{
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 1rem;
    }

    /* FAQ sections (collapsible categories) */
    .faq-groups{
      display:grid;
      gap: 12px;
      margin-top: 14px;
    }
    .faq-group{
      padding: 0;
      overflow: hidden;
    }
    .faq-group > summary{
      display:flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
    }

    /* Triangle toggle indicator (spins when open) */
    .faq-group > summary::before,
    .faq-item > summary::before{
      content:"";
      width: 0;
      height: 0;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
      border-left: 9px solid rgba(30,30,30,.85);
      transform: rotate(0deg);
      transition: transform .18s ease;
      flex: 0 0 auto;
      margin-right: 10px;
    }
    .faq-group[open] > summary::before,
    .faq-item[open] > summary::before{
      transform: rotate(90deg);
    }

    /* Make the summary row feel like a clickable heading */
    .faq-group > summary,
    .faq-item > summary{
      display:flex;
      align-items:center;
    }
    .faq-group > summary{ justify-content: flex-start; }
    .faq-item > summary{ justify-content: flex-start; padding: 12px 14px; }
    .faq-item{ padding: 0; overflow: hidden; }
    .faq-item p{ padding: 0 14px 12px; }
    .faq-item[open] > summary{ border-bottom: 1px solid var(--border); }
    .faq-count{
      font-family: inherit;
      font-weight: 700;
      color: var(--accent-2);
      background: rgba(215,230,246,.55);
      border: 1px solid rgba(42,42,42,.08);
      padding: 2px 10px;
      border-radius: 999px;
      font-size: .9rem;
      line-height: 1.6;
      margin-left: auto;
    }
    .faq-group[open] > summary{
      border-bottom: 1px solid var(--border);
    }
    .faq-group .faq{
      margin-top: 0;
      padding: 12px 12px 14px;
    }
    .faq-item{
      background: rgba(255,255,255,.55);
    }

    /* Small inline links used inside tiles */
    a.inline-link{
      display:inline-block;
      font-family: inherit;
      font-weight: 650;
      color: var(--accent-2);
      text-decoration: underline;
      text-underline-offset: 3px;
      margin-bottom: 6px;
    }


    /* ===========================
       RSVP placeholder
       =========================== */
    .rsvp-box{
      border-radius: 22px;
      border: 1px dashed rgba(59,106,122,.45);
      background: rgba(255,255,255,.55);
      padding: 18px;
      min-height: 220px;
      display:flex;
      flex-direction: column;
      justify-content: center;
      gap: 8px;
    }
    .rsvp-box .title{
      font-family: inherit;
      font-weight: 700;
      color: var(--accent-2);
      margin: 0;
    }
    .rsvp-box code{
      font-family: inherit;
      background: rgba(215,230,246,.55);
      border: 1px solid rgba(42,42,42,.08);
      padding: 2px 6px;
      border-radius: 8px;
    }

    /* ===========================
       Footer
       =========================== */
    footer{
      padding: 26px 0 34px;
      color: var(--muted);
      font-family: inherit;
      font-size: .98rem;
    }
    .footer-card{
      display:flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      padding: 18px 18px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: rgba(255,255,255,.55);
    }
    @media (max-width: 700px){
      .footer-card{ flex-direction: column; align-items: flex-start; }
    }

    /* Reduce motion */
    @media (prefers-reduced-motion: reduce){
      html{ scroll-behavior: auto; }
      .pill{ transition: none; }
    }

/* Info / warning box */
.info-box{
  border:1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.6);
  padding: 12px 14px;
  border-radius: 12px;
  line-height: 1.45;
}


/* Simple back button bar (used on taxis/accommodation pages) */
.topbar{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--sidepad) 0;
}
.back-pill{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
}









/* --- Final crisp schedule icon sizing + centering --- */
.timeline .t-node{
  text-align: center !important;
}
.timeline .t-icon{
  width: 122px !important;
  height: 122px !important;
  margin: 0 auto 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.timeline .icon-img,
.timeline .t-icon img{
  width: 118px !important;
  height: 118px !important;
  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}
.timeline .t-time,
.timeline .t-title,
.timeline .t-detail{
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
