:root{
  /* VPS-inspired palette (tuned for contrast on warm cream) */
  --gc-cream: #F6F1E7;          /* page background */
  --gc-green: #1F3A34;          /* primary text + motif green */
  --gc-green-2: #2B4A43;        /* secondary text */
  --gc-ink-soft: #5E7771;       /* muted text */

  --gc-gold: #C9A55A;           /* accent gold */
  --gc-gold-2: #B88F3F;         /* deeper gold for hover/focus */

  --card: #FFFFFF;              /* cards on cream */
  --card-tint: rgba(31, 58, 52, 0.035);
  --line: rgba(31, 58, 52, 0.14);
  --line-strong: rgba(31, 58, 52, 0.22);

  --shadow: 0 14px 40px rgba(31, 58, 52, 0.14);

  --radius: 22px;
  --radius2: 14px;

  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --focus: rgba(201, 165, 90, 0.35);
}

*{ box-sizing:border-box; }
html, body { height:100%; }

body{
  margin:0;
  /* Paper-like base + subtle texture layers (no external images) */
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(255,255,255,.60) 0%, rgba(255,255,255,0) 55%),
    radial-gradient(900px 700px at 85% 25%, rgba(31,58,52,.05) 0%, rgba(31,58,52,0) 60%),
    radial-gradient(900px 700px at 35% 90%, rgba(201,165,90,.06) 0%, rgba(201,165,90,0) 62%),
    linear-gradient(180deg, rgba(31,58,52,.025), rgba(31,58,52,0) 35%, rgba(31,58,52,.02)),
    var(--gc-cream);
  color: var(--gc-green);
  font-family: var(--sans);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 4px; }

.container{
  width: min(980px, calc(100% - 48px));
  margin-inline: auto;
}

.flow{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 18px;
  max-width: 820px;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  position:fixed;
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background: rgba(31, 58, 52, 0.95);
  color: var(--gc-cream);
  border:1px solid rgba(201, 165, 90, 0.55);
  border-radius: 10px;
  z-index: 9999;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 241, 231, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
}

.menu{
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap: wrap;
}

.ig{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: var(--gc-green);
  padding: 8px 10px;
  border-radius: 999px;
}
.ig:hover{
  text-decoration:none;
  background: rgba(31, 58, 52, 0.05);
}
.ig-icon{
  display:inline-grid;
  place-items:center;
  color: var(--gc-green);
}
.ig-handle{
  font-weight: 600;
  letter-spacing: .15px;
}

.pill{
  padding: 10px 14px;
  border: 1px solid rgba(201, 165, 90, 0.65);
  border-radius: 999px;
  background: rgba(201, 165, 90, 0.12);
  font-weight: 650;
}
.pill:hover{
  background: rgba(201, 165, 90, 0.18);
  text-decoration: none;
}

/* Hero */
.hero{
  padding: 44px 0 6px;
}
.hero-inner{ max-width: 860px; }

.hero-card{
  width: min(820px, 100%);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.logo{
  width: min(560px, 84%);
  height: auto;
  margin: 0 auto 4px;
  display:block;
}

h1{
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: .15px;
  margin: 4px 0 0;
  font-size: clamp(34px, 3.6vw, 52px);
  color: var(--gc-green);
}

.lead{
  margin: 2px auto 0;
  max-width: 52ch;
  color: var(--gc-green-2);
  font-size: clamp(16px, 1.55vw, 18px);
}

.location{
  margin-top: 6px;
  font-size: 13px;
  color: var(--gc-ink-soft);
  letter-spacing: .3px;
}

.cta{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  justify-content:center;
  margin-top: 10px;
}

/* Typography */
h2{
  font-family: var(--serif);
  font-weight: 650;
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  color: var(--gc-green);
}
h3{
  font-family: var(--serif);
  font-weight: 650;
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--gc-green);
}

p{
  margin: 0;
  color: var(--gc-green-2);
}

.micro{
  margin: 0;
  font-size: 13px;
  color: var(--gc-ink-soft);
}
.subtle{ color: var(--gc-ink-soft); }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

/* Sections */
.section{
  padding: 44px 0;
}

.section-alt{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(31, 58, 52, 0.03);
}

/* Cards */
.card{
  border: 1px solid rgba(31, 58, 52, 0.18);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.58);
  box-shadow:
    0 10px 26px rgba(31, 58, 52, 0.08),
    inset 0 0 0 1px rgba(255,255,255,.35);
  padding: 20px 18px;
  width: 100%;
  text-align: left;
}

.card-accent{
  border-color: rgba(201, 165, 90, 0.55);
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72));
}

.card-wide{
  max-width: 760px;
  margin-inline: auto;
}

/* Expect list */
.ticks{
  list-style:none;
  padding: 0;
  margin: 10px 0 0;
  display:grid;
  gap: 10px;
}
.ticks li{
  display:flex;
  gap: 10px;
  color: var(--gc-green-2);
}
.ticks li::before{
  content:"✓";
  color: var(--gc-gold);
  font-weight: 700;
  transform: translateY(-1px);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(201, 165, 90, 0.95);
  background: rgba(201, 165, 90, 0.08);
  color: var(--gc-green);
  font-weight: 650;
  letter-spacing:.15px;
  text-decoration:none;
}
.btn:hover{
  background: rgba(201, 165, 90, 0.16);
  border-color: rgba(184, 143, 63, 0.95);
  text-decoration:none;
}
.btn-ghost{
  border-color: rgba(31, 58, 52, 0.22);
  background: rgba(31, 58, 52, 0.03);
}
.btn-ghost:hover{
  background: rgba(31, 58, 52, 0.07);
}

/* Forms */
.form{
  display:grid;
  gap: 12px;
  width: 100%;
  text-align:left;
}

.form-inline{
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  text-align:center;
}

label{
  display:grid;
  gap: 6px;
  font-size: 13px;
  color: var(--gc-green);
  font-weight: 600;
}

input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31, 58, 52, 0.22);
  background: rgba(255,255,255,.82);
  color: var(--gc-green);
  font-family: var(--sans);
  outline: none;
}
input::placeholder, textarea::placeholder{
  color: rgba(31, 58, 52, 0.55);
}
input:focus, select:focus, textarea:focus, .btn:focus, .pill:focus, .ig:focus{
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
  border-color: rgba(201, 165, 90, 0.85);
}

.field{ display:grid; gap: 6px; }

/* Screen-reader only */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Footer */
.footer{
  padding: 24px 0 40px;
}
.footer-inner{
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:center;
  color: var(--gc-ink-soft);
  font-size: 13px;
}
.dot{ opacity:.5; }

/* Mobile tweaks */
@media (max-width: 720px){
  .container{ width: min(980px, calc(100% - 32px)); }
  .nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}
  /* keeps header tidy on small screens */
  .flow{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 18px;
  max-width: 820px;
}
  .hero{
  padding: 44px 0 6px;
}
}


/* Expectation box styling to match reference render */
.expect{
  max-width: 720px;
  margin-inline: auto;
  text-align: left;
}
.expect h3{
  text-align: center;
}

.form-inline input{
  flex: 1 1 340px;
  min-width: 260px;
}
.form-inline .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(201, 165, 90, 0.95);
  background: rgba(201, 165, 90, 0.08);
  color: var(--gc-green);
  font-weight: 650;
  letter-spacing:.15px;
  text-decoration:none;
}


/* Subtle paper grain overlay */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(0deg, rgba(31,58,52,.018) 0 1px, rgba(0,0,0,0) 1px 4px),
    repeating-linear-gradient(90deg, rgba(31,58,52,.012) 0 1px, rgba(0,0,0,0) 1px 5px);
  opacity: .35;
  mix-blend-mode: multiply;
}

.expect h3{
  text-align:center;
  margin-bottom: 10px;
}

/* Gentle rhythm between sections */
.section{
  padding: 46px 0;
}
.section + .section{
  border-top: 1px solid rgba(31,58,52,.10);
}


/* Brand badge (top-left) */


/* Header badge (left) */
.brand-link{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}
.brand-badge{
  width: 128px;
  height: auto;
  display:block;
}
@media (max-width: 720px){
  .brand-badge{
  width: 128px;
  height: auto;
  display:block;
}
}


/* Center section text (below hero) */
#about p,
#enquiries p{
  text-align: center;
}


/* Make the CTA stack a consistent width */
.cta{
  width: min(420px, 100%);
  margin-inline: auto;
  align-items: stretch; /* important: lets children fill width */
}

/* Get Tickets: full width of the CTA */
.btn-full{
  width: 100%;
  max-width: none; /* let the parent .cta control width */
}

/* Enquire + Learn more: each 50% */
.cta-row{
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: none;
  flex-wrap: nowrap; /* important: prevents wrapping */
}

.cta-row .btn{
  flex: 1 1 0;       /* equal halves */
  width: 100%;
}

.btn-primary{
  background-color: #1F3D2B;
  color: #F6F2E8;
  border-color: #1F3D2B;
}

.btn-primary:hover{
  background-color: #2E5A41;
  border-color: #2E5A41;
}

.btn-full{
  width:100%;
  max-width: 420px; /* match cta-row width */
}