/* ─── Design tokens ────────────────────────────────────────────────────── */
:root {
  --color-page:           #0e0e14;
  --color-surface:        var(--color-page);
  --color-surface-raised: #14141c;
  --color-card:           #1a1a24;
  --color-card-hover:     #20202c;
  --color-text:           hsl(43 18% 92%);
  --color-text-muted:     hsl(40 10% 62%);
  --color-accent:         #d4af37;
  --color-accent-bright:  #e8c547;
  --color-accent-dim:     #8f7328;
  --color-border-subtle:  rgba(212, 175, 55, 0.12);
  --color-border-accent:  rgba(212, 175, 55, 0.32);
  --shadow-card:          0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-card-hover:    0 24px 60px rgba(0, 0, 0, 0.52);
  --shadow-btn:           0 4px 24px rgba(212, 175, 55, 0.28);
  --shadow-btn-hover:     0 10px 36px rgba(212, 175, 55, 0.4);
  --radius-sm:            clamp(8px, 1.5vw, 14px);
  --radius-md:            clamp(12px, 2vw, 20px);
  --font-ui:              "DM Sans", system-ui, -apple-system, sans-serif;
  --prose-max:            62ch;
  --site-max:             1200px;
  --header-pos-x:         50%;
  --header-pos-y:         40%;
}

/* ─── Reset ────────────────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--color-page);
  background-image:
    radial-gradient(ellipse 120% 70% at 50% -10%, rgba(212, 175, 55, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(90, 70, 130, 0.04), transparent 45%);
  color: var(--color-text);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 1.0625rem;
  line-height: 1.68;
}

/* ─── Typography ───────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin: 0 0 1rem;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  h1 {
    background: linear-gradient(150deg,
      hsl(43 28% 98%) 0%,
      hsl(40 22% 90%) 40%,
      hsl(43 32% 78%) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

h2 {
  font-size: clamp(1.65rem, 3.8vw, 2.3rem);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  position: relative;
}

h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-border-subtle);
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}

p { margin: 0 0 1rem; }

/* Centred prose constraint (sections with standard centred content) */
main h1,
main h2,
main h3,
.section-eyebrow,
main > section p,
main > section .hint,
details.faq-item summary,
.faq-answer {
  max-width: var(--prose-max);
  margin-inline: auto;
}

main h1,
main h2,
main h3,
.section-eyebrow {
  text-align: center;
}

main h2::after {
  left: 50%;
  transform: translateX(-50%);
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.18s ease;
}
a:hover { color: var(--color-accent-bright); }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ─── Shell ────────────────────────────────────────────────────────────── */
.shell {
  width: 100%;
  min-height: 100vh;
  background: var(--color-page);
}

/* ─── Header ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-surface) 80%, transparent);
  border-bottom: 1px solid var(--color-border-subtle);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin-inline: auto;
}

/* ─── Brand ────────────────────────────────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.06em 0.18em;
  font-size: 1.5rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.18s ease;
}
.brand:hover { color: var(--color-accent); }

.brand__plain {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  font-size: 1em;
}

.brand__hand {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 1.35em;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ─── Nav ──────────────────────────────────────────────────────────────── */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

nav a:not(.btn-cta) {
  color: hsl(43 12% 84%);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.18s ease;
}
nav a:not(.btn-cta):hover { color: var(--color-accent); }

/* ─── CTA button ───────────────────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  color: #07070a;
  background: linear-gradient(150deg,
    var(--color-accent-bright) 0%,
    var(--color-accent) 45%,
    var(--color-accent-dim) 100%
  );
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
  color: #07070a;
}

.btn-cta--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-border-accent);
  box-shadow: none;
}
.btn-cta--outline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-accent-bright);
  border-color: var(--color-accent);
  filter: none;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.18);
}

/* ─── Section layout ───────────────────────────────────────────────────── */
.section-inner {
  padding: 5rem clamp(1.5rem, 5vw, 3rem) 6rem;
  max-width: var(--site-max);
  margin-inline: auto;
}

.section-inner--wide {
  max-width: 1340px;
}

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-dim);
  margin: 0 0 0.5rem;
  display: block;
}

/* Ensure sections have visual separation */
main > section + section,
main > div + section,
main > section + div {
  border-top: 1px solid var(--color-border-subtle);
}

/* ─── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: #08080c;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top,
      rgba(8, 8, 12, 0.96) 0%,
      rgba(8, 8, 12, 0.72) 35%,
      rgba(8, 8, 12, 0.18) 65%,
      transparent 100%
    ),
    linear-gradient(to bottom,
      rgba(8, 8, 12, 0.55) 0%,
      transparent 30%
    );
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--header-pos-x) var(--header-pos-y);
  display: block;
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0 clamp(1.5rem, 7vw, 5.5rem) clamp(3.5rem, 8vh, 6rem);
  max-width: 820px;
}

.hero__eyebrow {
  color: var(--color-accent);
  text-align: left;
  max-width: none;
  margin-inline: 0;
  margin-bottom: 1.1rem;
}

.hero__content h1 {
  text-align: left;
  max-width: none;
  margin-inline: 0;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(1rem, 2.1vw, 1.15rem);
  color: hsl(43 14% 80%);
  line-height: 1.65;
  max-width: 52ch;
  margin: 0 0 2.25rem;
  text-align: left;
}

/* ─── TRUST BAR ────────────────────────────────────────────────────────── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  background: var(--color-surface-raised);
  border-bottom: 1px solid var(--color-border-subtle);
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.6rem 2.75rem;
  text-align: center;
}

.trust-bar__num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 0.02em;
}

.trust-bar__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.trust-bar__divider {
  width: 1px;
  height: 2.75rem;
  background: var(--color-border-subtle);
  flex-shrink: 0;
}

@media (max-width: 580px) {
  .trust-bar { gap: 0.25rem 0; }
  .trust-bar__divider { display: none; }
  .trust-bar__item { padding: 1.1rem 1.75rem; }
}

/* ─── TESTIMONIALS ─────────────────────────────────────────────────────── */
#testimonials {
  background: var(--color-surface-raised);
}

.testimonial-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.6rem 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border-accent);
}

.testimonial-stars {
  font-size: 0.9rem;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.testimonial-body {
  flex: 1;
  margin: 0 0 1.35rem;
  padding: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.72;
  color: hsl(43 14% 82%);
  border: none;
}

.testimonial-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
  margin: 0 0 0.2rem;
  max-width: none;
  margin-inline: 0;
}

.testimonial-event {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: none;
  margin-inline: 0;
}

/* ─── PACKAGES ─────────────────────────────────────────────────────────── */
.package-grid {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .package-grid { grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--color-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.package-card--featured {
  border-color: var(--color-border-accent);
  background: var(--color-card-hover);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border-accent);
}

.package-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #07070a;
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-accent));
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.package-card__icon {
  font-size: 2rem;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 0.3rem;
  opacity: 0.85;
}

.package-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.15;
}

.package-card__desc {
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--color-text-muted);
  margin: 0.4rem 0 0;
  max-width: none;
  margin-inline: 0;
}

.packages-note {
  text-align: center;
  max-width: none;
  margin-inline: auto;
}

.section-cta {
  text-align: center;
  margin-top: 2.25rem;
  max-width: none;
  margin-inline: auto;
}

.package-card__enquire {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1rem;
}

/* ─── AREAS ────────────────────────────────────────────────────────────── */
.areas-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.areas-list li {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--color-border-accent);
  border-radius: 999px;
  padding: 0.45rem 1.25rem;
}

/* ─── ABOUT ────────────────────────────────────────────────────────────── */
#about {
  background: var(--color-surface-raised);
}

.about-layout {
  display: grid;
  gap: 3.5rem 5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
  }
}

/* Photo first on mobile */
.about-media { order: -1; }
@media (min-width: 800px) { .about-media { order: 0; } }

/* Override centred prose rules inside about text column */
.about-text .section-eyebrow {
  text-align: left;
  margin-inline: 0;
}

.about-text h2 {
  text-align: left;
  max-width: none;
  margin-inline: 0;
}

.about-text h2::after {
  left: 0;
  transform: none;
}

.about-text p {
  max-width: none;
  margin-inline: 0;
}

.about-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55),
              0 0 0 1px var(--color-border-accent);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── GALLERY ──────────────────────────────────────────────────────────── */
.video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #08080c;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.video-wrap--featured {
  max-width: 900px;
  margin: 2.25rem auto 0;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.media-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.media-grid .video-wrap {
  height: 100%;
}

.media-grid__thumb {
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #08080c;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.media-grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.media-grid__thumb:hover img {
  transform: scale(1.04);
}

/* ─── FAQ ──────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 0.5rem; }

details.faq-item {
  border-bottom: 1px solid var(--color-border-subtle);
  max-width: var(--prose-max);
  margin-inline: auto;
}

details.faq-item:first-of-type {
  border-top: 1px solid var(--color-border-subtle);
}

details.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 1.1rem 2.5rem 1.1rem 0;
  position: relative;
  color: var(--color-text);
  transition: color 0.18s ease;
  max-width: none;
  margin-inline: 0;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.22s ease;
}

details.faq-item[open] summary {
  color: var(--color-accent-bright);
}

details.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

details.faq-item .faq-answer {
  padding-bottom: 1.25rem;
  color: var(--color-text-muted);
  max-width: none;
  margin-inline: 0;
}

details.faq-item .faq-answer p { margin: 0; }

/* ─── CONTACT FORM ─────────────────────────────────────────────────────── */
.hint {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.inquiry-form {
  display: grid;
  gap: 0.75rem;
  max-width: var(--prose-max);
  margin: 1.75rem auto 1rem;
  text-align: left;
}

.inquiry-form label {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.inquiry-form__contact-hint {
  margin: -0.25rem 0 0;
  max-width: none;
  margin-inline: 0;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-subtle);
  background: var(--color-card);
  color: var(--color-text);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--color-border-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: hsl(40 8% 44%);
}

.inquiry-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.inquiry-form .btn-cta {
  margin-top: 0.5rem;
  justify-self: start;
  border: none;
}

/* ─── FOOTER ───────────────────────────────────────────────────────────── */
.site-footer {
  padding: 3.5rem clamp(1.5rem, 5vw, 3rem);
  border-top: 1px solid var(--color-border-subtle);
  background: var(--color-surface-raised);
}

.footer-inner {
  max-width: var(--site-max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  font-size: 1.3rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 2rem;
}

.footer-social a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-social a:hover { color: var(--color-accent); }

.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  color: hsl(40 8% 40%);
  margin: 0;
}

/* ─── Reduced motion ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .btn-cta,
  .package-card,
  .testimonial-card,
  .media-grid__thumb img,
  details.faq-item summary::after,
  nav a:not(.btn-cta) {
    transition: none;
  }

  .btn-cta:hover,
  .package-card:hover,
  .testimonial-card:hover,
  .media-grid__thumb:hover img {
    transform: none;
  }
}
