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

:root {
  --green:   #1A2F33;
  --green2:  #1a2d30;
  --amber:   #b8936a;
  --amber-lt:#d4b08a;
  --cream:   #f5f0e8;
  --cream2:  #ece4d4;
  --text:    #1c1c1c;
  --muted:   #6b6b6b;
  --border:  rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


/* ═══════════════════════════════
   HERO
═══════════════════════════════ */

.hero {
  position: relative;
  /* 92vh: the about section's top edge is just visible — no false bottom */
  min-height: 92vh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--green);
  overflow: hidden;
}

/* Photo layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/splash-hero.jpg');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.38;
}

/* Gradient pulls the eye downward */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(to bottom, transparent, var(--green));
}

/* Centred content */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
}

.hero-logo {
  width: clamp(320px, 48vw, 860px);
  max-width: min(860px, 92vw);
  height: auto;
  margin: 0 auto 2.25rem;
  display: block;
  /* `logo.svg` is black; invert for the dark hero */
  filter: invert(1) brightness(1.08);
  opacity: 0.45;
}

/* Amber eyebrow */
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

/* FONTHILL — large, normal weight */
.hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.h1-fonthill {
  display: block;
  font-size: clamp(56px, 12vw, 104px);
  font-weight: 400;
  font-style: normal;
}

/* COLLECTIVE — italic, slightly smaller, muted */
.h1-collective {
  display: block;
  font-size: clamp(40px, 9vw, 78px);
  font-weight: 400;
  font-style: italic;
  color: rgba(245,240,232,0.6);
  margin-top: -0.05em; /* tighten the pair */
}

/* The George–style dot descriptors */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin: 1.75rem 0 2.75rem;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.65),
    0 0 16px rgba(26, 46, 42, 0.8);
  padding: 0.25rem 0.35rem;
  background: transparent;
  box-shadow: 0 0 38px rgba(0, 0, 0, 0.35);
}
.hero-badges .dot {
  color: var(--amber-lt);
  font-size: 14px;
  line-height: 1;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-cue {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 2.5rem 0 2.25rem;
  color: rgba(245,240,232,0.3);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--amber-lt), transparent);
  animation: breathe 2.4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.55); }
}

/* Bottom strip with quick-links — bridges hero to content */
.hero-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hero-strip a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.hero-strip a:hover { color: var(--amber-lt); }

.hero-strip-sep {
  color: rgba(184,147,106,0.35);
  font-size: 10px;
}


/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  padding: 13px 30px;
  transition: opacity 0.18s, background 0.18s;
}

.btn-amber {
  background: var(--amber);
  color: var(--green);
}
.btn-amber:hover { opacity: 0.88; }

.btn-ghost {
  border: 1px solid rgba(245,240,232,0.28);
  color: var(--cream);
}
.btn-ghost:hover { border-color: rgba(245,240,232,0.55); }

.btn-dark {
  background: var(--green);
  color: var(--cream);
}
.btn-dark:hover { opacity: 0.84; }

.btn-outline-dark {
  border: 1.5px solid var(--green);
  color: var(--green);
}
.btn-outline-dark:hover { background: var(--green); color: var(--cream); }


/* ═══════════════════════════════
   SECTION CHROME
═══════════════════════════════ */

/* "── LABEL ──" dividers */
.eyebrow-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.eyebrow-rule::before,
.eyebrow-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.eyebrow-rule span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* Amber accent bar above a heading */
.amber-bar {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 1.25rem;
}


/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */

.about {
  background: var(--cream);
  padding: 6rem 1.5rem;
}

.about-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  display: block;
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 2rem;
}

/* The italic emphasis within the heading */
.about-heading em {
  font-style: italic;
  color: #4a6b60;
}

.about-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 580px;
}

/* Dot badges — same pattern as The George */
.about-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-badges .dot { color: var(--amber); font-size: 14px; }

.about-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}


/* ═══════════════════════════════
   VENUES
═══════════════════════════════ */

.venues {
  padding: 6rem 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.venue-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.venue-card {
  border: 1px solid var(--border);
  border-left-width: 5px;
  border-radius: 6px;
  padding: 1.6rem 1.75rem 1.4rem;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}
.venue-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.venue-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.venue-icon {
  font-size: 14px;
  margin-bottom: 0.65rem;
}

.venue-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
}

.venue-loc {
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.03em;
}

.venue-visit {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  flex-shrink: 0;
  transition: color 0.18s;
}
.venue-visit:hover { color: var(--text); }
.venue-visit i { font-size: 10px; }

.venue-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0.8rem 0 1.1rem;
  max-width: 600px;
}

.venue-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-link {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.social-link:hover {
  color: var(--text);
  border-color: rgba(0,0,0,0.22);
  background: rgba(0,0,0,0.02);
}
.social-link i { font-size: 12px; }


/* ═══════════════════════════════
   HIRE
═══════════════════════════════ */

.hire {
  background: var(--green);
  padding: 7rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Large decorative logo */
.hire::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 900px);
  aspect-ratio: 497 / 120;
  background: url('../images/logo.svg') center / contain no-repeat;
  filter: invert(1);
  opacity: 0.05;
  pointer-events: none;
}

.hire-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.hire-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  display: block;
}

.hire h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hire h2 em {
  font-style: italic;
  color: rgba(245,240,232,0.65);
}

.hire-body {
  font-size: 15px;
  color: rgba(245,240,232,0.55);
  line-height: 1.85;
  margin-bottom: 2.75rem;
}

.hire-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ═══════════════════════════════
   NEWSLETTER
═══════════════════════════════ */

.newsletter {
  background: var(--cream);
  padding: 6rem 1.5rem;
}

.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
}

.newsletter-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  display: block;
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 1.1rem;
}

.newsletter h2 em {
  font-style: italic;
  color: #4a6b60;
}

.newsletter-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin-bottom: 1.1rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 3px;
  border: 1.5px solid rgba(0,0,0,0.14);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.18s;
}
.newsletter-form input:focus { border-color: var(--amber); }
.newsletter-form input::placeholder { color: rgba(0,0,0,0.3); }

.newsletter-form button {
  padding: 14px 24px;
  background: var(--amber);
  color: var(--green);
  border: none;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.18s;
}
.newsletter-form button:hover { opacity: 0.88; }

.newsletter-success {
  display: none;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--green);
  padding: 1rem 0;
}

.newsletter-small {
  font-size: 12px;
  color: rgba(0,0,0,0.35);
}
.newsletter-small a { color: rgba(0,0,0,0.4); }


/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */

footer {
  background: var(--green);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(245,240,232,0.45);
  margin-bottom: 1rem;
}

.footer-tagline a,
.footer-tagline a:visited {
  color: inherit;
}

.footer-contact {
  font-size: 13px;
  color: rgba(245,240,232,0.4);
  line-height: 1.9;
}
.footer-contact a {
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--amber-lt); }

.footer-divider {
  width: 36px;
  height: 1px;
  background: rgba(184,147,106,0.35);
  margin: 1.5rem auto;
}


/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */

@media (max-width: 520px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .venue-card-top { flex-wrap: wrap; }
  .hire::before { width: min(95vw, 520px); }
  .hero-strip { display: none; }

  .hero-buttons,
  .hire-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-buttons .btn,
  .hire-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 700px) {
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .about-left { grid-column: 1; }
  .about-right { grid-column: 2; padding-top: 0.25rem; }
  .about-body, .about-badges, .about-buttons { grid-column: 2; }
}
