/* ===========================================================================
   Cloudhopper Events — main stylesheet
   Zero-build static site. Design tokens from the Claude Design "Boutique v2"
   handoff. British English throughout.
   =========================================================================== */

:root {
  /* Surfaces */
  --bg: #FDFBF7;
  --bg-alt: #F6EFE4;
  --white: #FFFFFF;
  /* Text */
  --text: #4B4237;
  --muted: #857767;
  --body-2: #6E6155;
  --faint: #A99B8A;
  /* Blush accent */
  --blush: #C97F91;
  --blush-dark: #B25E76;
  --blush-deep: #96485F;
  --script: #C08A98;
  --blush-border: #E0C7CE;
  --blush-tint: #FBF3F5;
  --cream: #FFF7EA;
  /* Lilac accent */
  --lilac: #B99BD1;
  --lilac-dark: #7A66A8;
  --lilac-tint: #F4F1FA;
  /* Lines */
  --hairline: #EDE6DA;
  --input-line: #D9CDBC;
  /* Announcement bar */
  --bar-bg: #4B4237;
  --bar-text: #F6EFE4;
  --bar-link: #E8C3CD;
  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Jost', system-ui, -apple-system, sans-serif;
  /* Shadows */
  --shadow-card: 0 10px 30px rgba(75, 66, 55, .05);
  --shadow-feature: 0 14px 40px rgba(178, 94, 118, .12);
  /* Decorative cloud motif (soft lilac) */
  --cloud: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60'%3E%3Cg fill='%23EFE8F7'%3E%3Ccircle cx='35' cy='36' r='14'/%3E%3Ccircle cx='51' cy='28' r='17'/%3E%3Ccircle cx='67' cy='37' r='12'/%3E%3Crect x='21' y='36' width='58' height='13' rx='6.5'/%3E%3C/g%3E%3C/svg%3E");
  --cloud-blush: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60'%3E%3Cg fill='%23F7E6EA'%3E%3Ccircle cx='35' cy='36' r='14'/%3E%3Ccircle cx='51' cy='28' r='17'/%3E%3Ccircle cx='67' cy='37' r='12'/%3E%3Crect x='21' y='36' width='58' height='13' rx='6.5'/%3E%3C/g%3E%3C/svg%3E");
}

/* --- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: var(--blush-dark); text-decoration: none; }
a:hover { color: var(--blush-deep); text-decoration: underline; }
input, select, textarea { font-family: var(--font-body); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Shared helpers ----------------------------------------------------- */
.eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--lilac); margin-bottom: 14px;
}
.script { font-family: var(--font-script); color: var(--script); line-height: 1; }
.section { padding: 80px 48px; }
.center { text-align: center; }
.wrap { max-width: 1150px; margin: 0 auto; }
.wrap-narrow { max-width: 760px; margin: 0 auto; }
.wrap-mid { max-width: 980px; margin: 0 auto; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 13.5px; letter-spacing: .18em;
  text-transform: uppercase; padding: 15px 32px; min-height: 48px;
  border-radius: 99px; cursor: pointer; border: 1.5px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--blush); color: var(--white); border-color: var(--blush); }
.btn-primary:hover { background: var(--blush-dark); border-color: var(--blush-dark); color: var(--white); }
.btn-outline { background: none; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--bg); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); }
.btn-ghost-light:hover { background: rgba(255,255,255,.28); color: var(--white); }
.btn-sm { font-size: 12px; padding: 11px 24px; min-height: 44px; }
.link-arrow {
  display: inline-block; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 12.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--blush-dark); padding: 10px 0; min-height: 44px;
}
.link-arrow:hover { text-decoration: underline; }
.link-eyebrow { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; }

/* --- Announcement bar --------------------------------------------------- */
.announce {
  background: var(--bar-bg); color: var(--bar-text); text-align: center;
  padding: 11px 20px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
}
.announce a { color: var(--bar-link); text-decoration: underline; }
.announce a:hover { color: var(--white); }

/* --- Header / nav ------------------------------------------------------- */
.site-header {
  background: var(--bg); border-bottom: 1px solid var(--hairline);
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; padding: 8px 40px;
}
.brand {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 0; flex: none;
}
.brand:hover { text-decoration: none; }
.brand img { width: 88px; height: auto; }
.site-nav {
  display: flex; justify-content: flex-end; align-items: center; gap: 2px;
  padding: 0; flex-wrap: wrap; flex: 1;
}
.site-nav a {
  font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 16px; min-height: 44px; display: inline-flex; align-items: center;
  color: var(--body-2);
}
.site-nav a:hover { color: var(--blush-dark); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--blush-dark); }
.nav-toggle { display: none; }

/* --- Nav dropdown (What We Offer) ---------------------------------------- */
.nav-drop { position: relative; display: inline-flex; }
.nav-drop-toggle {
  font-family: var(--font-body); font-size: 13.5px; letter-spacing: .14em;
  text-transform: uppercase; padding: 10px 16px; min-height: 44px;
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--body-2); background: none; border: none; cursor: pointer;
}
.nav-drop-toggle:hover, .nav-drop.is-section .nav-drop-toggle { color: var(--blush-dark); }
.nav-drop-toggle .caret { font-size: 9px; line-height: 1; transform: translateY(1px); }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--hairline); border-radius: 6px;
  box-shadow: 0 14px 40px rgba(75,66,55,.12); padding: 8px 0; min-width: 220px;
  display: none; z-index: 30;
}
.nav-drop-menu a {
  display: flex; padding: 11px 22px; font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--body-2); white-space: nowrap;
}
.nav-drop-menu a:hover { color: var(--blush-dark); background: var(--blush-tint); text-decoration: none; }
.nav-drop-menu a[aria-current="page"] { color: var(--blush-dark); }
.nav-drop.open .nav-drop-menu { display: block; }
@media (hover: hover) and (pointer: fine) {
  .nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
}

/* --- Hero --------------------------------------------------------------- */
.hero { position: relative; height: 560px; overflow: hidden; }
.hero picture { display: block; width: 100%; height: 100%; }
.hero img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 0 24px;
  background: linear-gradient(rgba(75,66,55,.20), rgba(75,66,55,.34) 70%, rgba(75,66,55,.10));
}
.hero-overlay .script { font-size: 44px; color: var(--cream); text-shadow: 0 1px 12px rgba(75,66,55,.4); }
.hero-overlay h1 {
  font-size: 54px; color: var(--white); margin: 8px 0 18px; letter-spacing: .04em;
  text-shadow: 0 2px 16px rgba(75,66,55,.45); max-width: 18ch; line-height: 1.15;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* --- Page heading ------------------------------------------------------- */
.page-head { text-align: center; margin-bottom: 48px; }
.page-head .script { font-size: 36px; }
.page-head h1 { font-size: 44px; margin: 6px 0 16px; }
.page-head p { font-size: 16px; color: var(--muted); line-height: 1.8; margin: 0 auto; max-width: 60ch; }

/* --- Welcome ------------------------------------------------------------ */
.welcome h2 { font-size: 40px; margin: 0 0 22px; line-height: 1.2; }
.welcome p { font-size: 16.5px; line-height: 1.85; color: var(--muted); margin: 0; }

/* --- Services (home 3-up / 4-up) ---------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.grid-4 .service .thumb { height: 250px; }
.service { text-align: center; }
.service .thumb { height: 300px; margin-bottom: 22px; border-radius: 4px; overflow: hidden; }
.service .thumb img { width: 100%; height: 100%; object-fit: cover; }
.service h3 { font-size: 26px; margin: 0 0 8px; letter-spacing: .04em; }
.service p { margin: 0 0 10px; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* --- Next event band ---------------------------------------------------- */
.band { background: var(--bg-alt); padding: 72px 48px; text-align: center; }
.band .inner { max-width: 640px; margin: 0 auto; }
.band .script { font-size: 34px; }
.band h2 { font-size: 34px; margin: 6px 0 12px; }
.band p { margin: 0 0 8px; font-size: 15.5px; line-height: 1.75; color: var(--muted); }
.band .fine { font-size: 14px; margin-bottom: 26px; }

/* --- Testimonials ------------------------------------------------------- */
.testimonials h2 { font-size: 36px; margin: 0 0 40px; }
.quote { margin: 0; max-width: 620px; margin-inline: auto; }
.quote .mark { font-family: var(--font-display); font-size: 44px; color: var(--blush-border); line-height: .6; margin-bottom: 12px; }
.quote blockquote { margin: 0 0 14px; font-size: 16px; line-height: 1.8; color: var(--body-2); font-style: italic; }
.quote figcaption { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--blush-dark); }

/* --- Google reviews ------------------------------------------------------- */
.greviews-summary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 0 0 28px; font-size: 15px; color: var(--body-2);
}
.gmark {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--white); border: 1px solid var(--hairline);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px; color: #4285F4;
}
.stars { color: #F4B400; letter-spacing: 2px; font-size: 16px; }
.greviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; text-align: left; }
.gcard {
  background: var(--white); border: 1px solid var(--hairline); border-radius: 6px;
  box-shadow: var(--shadow-card); padding: 22px 24px; display: flex; flex-direction: column; gap: 8px;
}
.gcard .head { display: flex; align-items: center; gap: 10px; }
.gcard .avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex: none; background: var(--bg-alt); }
.gcard .name { font-weight: 500; font-size: 14px; color: var(--text); }
.gcard .when { font-size: 12px; color: var(--faint); }
.gcard .stars { font-size: 13px; }
.gcard p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--body-2); }
.greviews-foot { margin: 24px 0 0 0; font-size: 12.5px; color: var(--faint); }
#google-reviews { margin-bottom: 36px; }

/* --- Customer testimonial cards -------------------------------------------- */
.tcards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; text-align: left; }
.tcard {
  margin: 0; background: var(--blush-tint); border: 1px solid var(--blush-border);
  border-radius: 6px; padding: 24px 26px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 10px;
}
.tcard::after {
  content: ""; position: absolute; bottom: -6px; right: -12px; width: 74px; height: 44px;
  background: var(--cloud) center / contain no-repeat; opacity: .7; pointer-events: none;
}
.tcard .stars { color: var(--blush); font-size: 14px; }
.tcard blockquote { margin: 0; font-size: 14px; line-height: 1.75; color: var(--body-2); font-style: italic; }
.tcard figcaption { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--blush-dark); margin-top: auto; }
@media (max-width: 900px) { .greviews, .tcards { grid-template-columns: 1fr; } }

/* --- FAQ ---------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq h2 { font-size: 32px; margin: 0 0 26px; text-align: center; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary { cursor: pointer; font-size: 15.5px; font-weight: 500; padding: 18px 4px; list-style-position: inside; }
.faq details p { margin: 0; padding: 0 26px 18px; color: var(--muted); line-height: 1.75; font-size: 14.5px; }

/* --- Event card --------------------------------------------------------- */
.event-card {
  background: var(--white); border: 1px solid var(--hairline); border-radius: 6px;
  overflow: hidden; box-shadow: 0 14px 40px rgba(75,66,55,.07); margin-bottom: 40px;
}
.event-card .cover { height: 280px; }
.event-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.event-card .body { padding: 40px 44px; text-align: center; }
.event-card .date { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--blush-dark); margin-bottom: 10px; }
.event-card h2 { font-size: 34px; margin: 0 0 14px; }
.event-card .desc { line-height: 1.8; color: var(--muted); margin: 0 auto 24px; font-size: 15.5px; max-width: 58ch; }
.inclusions { display: flex; justify-content: center; gap: 12px 22px; flex-wrap: wrap; margin-bottom: 28px; font-size: 13.5px; color: var(--body-2); letter-spacing: .04em; }
.inclusions .dot { color: #D9C2A8; }
.event-card .venue { margin: 18px 0 0; font-size: 13px; color: var(--faint); }

/* --- Coming-soon event card ---------------------------------------------- */
.event-card.coming-soon .cover {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; background: var(--lilac-tint);
}
.event-card.coming-soon .cover::before {
  content: ""; width: 84px; height: 50px;
  background: var(--cloud) center / contain no-repeat;
}
.event-card.coming-soon .cover .script { font-size: 34px; color: var(--lilac-dark); }

/* --- Offers ------------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.offer { border-radius: 6px; padding: 32px; text-align: center; }
.offer.blush { background: var(--blush-tint); }
.offer.lilac { background: var(--lilac-tint); }
.offer .tag { font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; margin-bottom: 10px; }
.offer.blush .tag { color: var(--blush-dark); }
.offer.lilac .tag { color: var(--lilac-dark); }
.offer h3 { font-size: 24px; margin: 0 0 10px; }
.offer p { margin: 0 0 16px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.cta-row { text-align: center; border-top: 1px solid var(--hairline); padding-top: 36px; }
.cta-row p { margin: 0 0 14px; color: var(--muted); font-size: 15px; }

/* --- Package tiles (hire) ---------------------------------------------- */
.packages { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; margin-bottom: 56px; align-items: start; }
.package {
  background: var(--white); border: 1px solid var(--hairline); border-radius: 6px;
  overflow: hidden; text-align: center; box-shadow: var(--shadow-card); position: relative;
}
.package.featured { border-color: var(--blush-border); box-shadow: var(--shadow-feature); }
.package .badge {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--blush); color: var(--white); font-size: 10.5px; letter-spacing: .22em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 99px;
}
.package .photo { height: 230px; }
.package .photo img { width: 100%; height: 100%; object-fit: cover; }
.package .body { padding: 28px 26px 32px; }
.package .kicker { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--lilac); margin-bottom: 8px; }
.package h3 { font-size: 26px; margin: 0 0 12px; }
.package ul { list-style: none; margin: 0 0 20px; padding: 0; text-align: left; display: inline-block; }
.package li { color: var(--muted); font-size: 14px; line-height: 1.9; padding-left: 22px; position: relative; }
.package li::before { content: "✓"; position: absolute; left: 0; color: var(--blush); font-size: 13px; }

/* --- Notes / add-ons / terms ------------------------------------------- */
.note-line { text-align: center; color: var(--muted); font-size: 14.5px; margin: 0 auto 40px; max-width: 70ch; }
.note-line strong { color: var(--text); }
.addons { max-width: 900px; margin: 0 auto 56px; text-align: center; }
.addons h2 { font-size: 28px; margin: 0 0 8px; }
.addons .grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 18px; margin-top: 26px; }
.packages.two { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 920px; margin-inline: auto; }
.addons .grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.addons .grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.addons .item { background: var(--bg-alt); border-radius: 6px; padding: 20px 14px; font-size: 13.5px; color: var(--body-2); line-height: 1.5; overflow-wrap: break-word; }
.addons .item::before {
  content: ""; display: block; width: 36px; height: 22px; margin: 0 auto 8px;
  background: var(--cloud-blush) center / contain no-repeat;
}
.addons .item .free { display: block; margin-top: 4px; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--blush-dark); }
.terms { max-width: 720px; margin: 0 auto; background: var(--blush-tint); border: 1px solid var(--blush-border); border-radius: 6px; padding: 32px 36px; text-align: center; position: relative; overflow: hidden; }
.terms::before { content: ""; position: absolute; top: -8px; right: -14px; width: 90px; height: 54px; background: var(--cloud-blush) center / contain no-repeat; opacity: .8; pointer-events: none; }
.terms h2 { font-size: 24px; margin: 0 0 14px; }
.terms p { margin: 0; color: var(--body-2); font-size: 14.5px; line-height: 1.8; }

/* --- Cloud decorations ---------------------------------------------------- */
.cloud-divider { height: 34px; margin: 0 auto; background: var(--cloud) center / 62px 34px no-repeat; }
.band { position: relative; overflow: hidden; }
.band::before, .band::after {
  content: ""; position: absolute; width: 130px; height: 78px;
  background: var(--cloud) center / contain no-repeat; opacity: .55; pointer-events: none;
}
.band::before { top: 18px; left: -26px; }
.band::after { bottom: 14px; right: -30px; background-image: var(--cloud-blush); }
.site-footer { position: relative; overflow: hidden; }
.site-footer::before, .site-footer::after {
  content: ""; position: absolute; width: 110px; height: 66px;
  background: var(--cloud) center / contain no-repeat; opacity: .5; pointer-events: none;
}
.site-footer::before { top: 12px; left: -20px; }
.site-footer::after { bottom: 10px; right: -24px; background-image: var(--cloud-blush); }
.page-head .cloud-divider { margin-bottom: 6px; }

/* --- Info blocks (booking info / T&Cs) ------------------------------------ */
.info-block {
  background: var(--white); border: 1px solid var(--hairline); border-radius: 6px;
  box-shadow: var(--shadow-card); padding: 30px 34px; margin-bottom: 22px;
}
.info-block h2 { font-size: 24px; margin: 0 0 12px; }
.info-block p { margin: 0 0 10px; color: var(--body-2); font-size: 14.5px; line-height: 1.8; }
.info-block p:last-child { margin-bottom: 0; }
.info-block ul { margin: 0; padding: 0; list-style: none; }
.info-block li { color: var(--muted); font-size: 14.5px; line-height: 1.9; padding-left: 24px; position: relative; }
.info-block li::before { content: "✓"; position: absolute; left: 0; color: var(--blush); font-size: 13px; }
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.area-pills span { background: var(--lilac-tint); color: var(--body-2); border-radius: 99px; padding: 6px 15px; font-size: 13px; }

/* --- Colour options note --------------------------------------------------- */
.colour-line { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 0 0 40px; flex-wrap: wrap; }
.colour-line .swatch { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--hairline); display: inline-block; }
.colour-line .swatch.pastel { background: linear-gradient(135deg, #F3D9E0 50%, #D9E8F0 50%); }
.colour-line .swatch.beige { background: linear-gradient(135deg, #EFE6D8 50%, #FFFFFF 50%); }
.colour-line span.label { font-size: 14px; color: var(--body-2); }

/* --- How it works ------------------------------------------------------- */
.how { text-align: center; max-width: 720px; margin: 0 auto; border-top: 1px solid var(--hairline); padding-top: 44px; }
.how h2 { font-size: 28px; margin: 0 0 24px; }
.how .steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; font-size: 14px; line-height: 1.7; color: var(--muted); }
.how .num { font-family: var(--font-script); font-size: 32px; color: var(--script); margin-bottom: 6px; }

/* --- About -------------------------------------------------------------- */
.about-split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 52px; align-items: center; margin-bottom: 64px; }
.about-split .photo { height: 400px; border-radius: 4px; overflow: hidden; }
.about-split .photo img { width: 100%; height: 100%; object-fit: cover; }
.about-split p { font-size: 16px; line-height: 1.9; color: var(--body-2); margin: 0 0 18px; }
.about-split p:last-child { margin-bottom: 0; }
.values { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); text-align: center; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.values .val { padding: 36px 28px; }
.values .val:not(:last-child) { border-right: 1px solid var(--hairline); }
.values h3 { font-size: 22px; margin: 0 0 8px; }
.values p { margin: 0; font-size: 14px; line-height: 1.75; color: var(--muted); }

/* --- Gallery ------------------------------------------------------------ */
.ig-embed { min-height: 200px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.gallery-grid .cell { aspect-ratio: 1; border-radius: 3px; overflow: hidden; }
.gallery-grid .cell img { width: 100%; height: 100%; object-fit: cover; }
.gallery-note { text-align: center; color: var(--faint); font-size: 13px; margin: 26px 0 0; }

/* --- Contact form ------------------------------------------------------- */
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--body-2); }
.field.full { grid-column: 1 / -1; }
.field input, .field select {
  border: none; border-bottom: 1.5px solid var(--input-line); background: none;
  padding: 11px 2px; font-size: 15px; min-height: 44px; color: var(--text);
  width: 100%; max-width: 100%;
}
.field select { text-overflow: ellipsis; }
.field textarea {
  border: 1.5px solid var(--input-line); border-radius: 4px; background: none;
  padding: 13px; font-size: 15px; resize: vertical; color: var(--text);
  width: 100%; max-width: 100%;
}
.field input:focus, .field select:focus { border-bottom-color: var(--blush); outline: none; }
.field textarea:focus { border-color: var(--blush); outline: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field-note { grid-column: 1 / -1; margin: -8px 0 0; font-size: 13px; color: var(--faint); text-align: left; }
.time-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.addon-group { grid-column: 1 / -1; border: none; margin: 0; padding: 0; }
.addon-group legend { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--body-2); padding: 0; margin-bottom: 4px; }
.addon-included { margin: 6px 0 10px; font-size: 13.5px; color: var(--blush-dark); background: var(--blush-tint); border-radius: 6px; padding: 12px 16px; line-height: 1.6; }
.addon-charge-note { margin: 6px 0 10px; font-size: 13px; color: var(--faint); }
.addon-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.addon-choices label {
  display: flex; gap: 10px; align-items: flex-start; font-size: 14px;
  text-transform: none; letter-spacing: 0; color: var(--body-2);
  background: var(--bg-alt); border-radius: 6px; padding: 12px 14px; cursor: pointer; line-height: 1.5;
}
.addon-choices input { accent-color: var(--blush); width: 16px; height: 16px; margin-top: 3px; flex: none; }
.addon-choices .free-tag { color: var(--blush-dark); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.booking-note {
  grid-column: 1 / -1; background: var(--blush-tint); border: 1px solid var(--blush-border);
  border-radius: 6px; padding: 16px 20px; font-size: 14px; color: var(--body-2); line-height: 1.7;
  text-align: center; margin: 0;
}
.form-submit { grid-column: 1 / -1; justify-self: center; }
.form-success {
  background: var(--blush-tint); border: 1px solid var(--blush-border); border-radius: 6px;
  padding: 44px; text-align: center;
}
.form-success .script { font-size: 38px; }
.form-success h2 { font-size: 28px; margin: 8px 0 10px; }
.form-success p { margin: 0; color: var(--muted); font-size: 15px; }
.form-error { grid-column: 1/-1; color: var(--blush-deep); font-size: 14px; text-align: center; margin: 0; }
.quick-contact { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 0 0 36px; }
.contact-foot { text-align: center; color: var(--faint); font-size: 13.5px; margin: 36px 0 0; }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--hairline); padding: 52px 48px; text-align: center; }
.site-footer .script { font-size: 26px; }
.footer-nav { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin: 16px 0 10px; }
.footer-nav a { color: var(--body-2); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; padding: 10px 12px; min-height: 44px; display: inline-flex; align-items: center; }
.footer-nav a:hover { color: var(--blush-dark); text-decoration: none; }
.site-footer .locale { margin: 0; font-size: 12px; color: var(--faint); letter-spacing: .06em; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 900px) {
  .grid-3, .packages, .packages.two, .how .steps { grid-template-columns: 1fr; }
  .addons .grid, .addons .grid.cols-3, .addons .grid.cols-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 28px; }
  .values { grid-template-columns: 1fr; }
  .values .val:not(:last-child) { border-right: none; border-bottom: 1px solid var(--hairline); }
  .hero-overlay h1 { font-size: 40px; }
  .hero-overlay .script { font-size: 34px; }
}
@media (max-width: 720px) {
  .section, .band, .announce ~ * .section { padding-left: 22px; padding-right: 22px; }
  .site-header { padding: 8px 16px; justify-content: center; }
  .brand { width: 100%; justify-content: center; padding-bottom: 0; }
  .site-nav { justify-content: center; }
  .site-nav a, .nav-drop-toggle { padding: 8px 10px; font-size: 12.5px; }
  .grid-2, .contact-form { grid-template-columns: 1fr; }
  .grid-4, .addon-choices { grid-template-columns: 1fr; }
  .info-block { padding: 24px 20px; }
  .event-card .body { padding: 32px 24px; }
  .hero { height: 460px; }
  .page-head h1, .welcome h2 { font-size: 34px; }
  .site-footer, .terms { padding-left: 22px; padding-right: 22px; }
}
