/* =========================================================
   GroupTops — Site Stylesheet
   Brand palette: Deep Navy #071D2E · Warm Gold #D5A94F · Warm White #F8F5EF
   ========================================================= */

:root {
  /* Brand */
  --navy: #071d2e;
  --navy-dark: #04141f;
  --navy-mid: #0f2e42;
  --gold: #d5a94f;
  --gold-dark: #b98f3c;
  --cream: #f8f5ef;

  /* UI */
  --paper: #fffefb;
  --ink: #16232f;
  --muted: #5d6b78;
  --line: #e3ddd0;

  /* Shared metrics */
  --header-h: 84px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
  padding: 15px 22px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--navy-dark);
}

.btn-small {
  padding: 11px 17px;
  font-size: 14px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy) !important;
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-wide {
  width: 100%;
  font-size: 16px;
  padding: 17px 24px;
}

/* ---------------------------------------------------------
   Header — dark navy, consistent on every page
   --------------------------------------------------------- */

.site-header {
  height: var(--header-h);
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-bottom: 1px solid rgba(248, 245, 239, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .logo {
  display: block;
  line-height: 0;
}

.site-header .logo img {
  width: 190px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: rgba(248, 245, 239, 0.85);
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--gold);
}

.nav a.is-active {
  color: var(--gold);
}

.nav .btn {
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.hero {
  min-height: 740px;
  background: #071D2E;
  position: relative;
  display: flex;
  align-items: center;
  padding: 90px 7vw;
  color: #fff;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: center / cover no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(4, 20, 31, 0.88), rgba(4, 20, 31, 0.18));
}

.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  right: 7vw;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(248, 245, 239, 0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot:hover {
  transform: scale(1.15);
}

.hero-dot.is-active {
  background: var(--gold, #D5A94F);
  border-color: var(--gold, #D5A94F);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.6s ease;
    transform: none !important;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero h1,
.restaurant-hero h1 {
  font: normal clamp(52px, 7vw, 92px) / 0.98 Georgia, serif;
  margin: 18px 0 26px;
}

.hero h1 em {
  font-weight: normal;
  font-style: normal;
  color: var(--gold);
}

.hero-content > p:not(.eyebrow) {
  font: 20px / 1.65 Georgia, serif;
  max-width: 650px;
}

.hero-proof {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 7vw;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.82;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--gold-dark);
}

.eyebrow.light {
  color: var(--gold);
}

/* ---------------------------------------------------------
   Finder form
   --------------------------------------------------------- */

.finder-wrap {
  padding: 0 6vw;
  transform: translateY(-44px);
  position: relative;
  z-index: 4;
}

.finder {
  max-width: 1180px;
  margin: auto;
  background: #fff;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 70px rgba(7, 29, 46, 0.16);
}

.finder-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.finder h2 {
  font: 36px Georgia, serif;
  margin: 8px 0 0;
}

.stepnote {
  font-size: 12px;
  color: var(--muted);
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 25px 0 8px;
}

label {
  font-size: 12px;
  font-weight: 700;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #ccd2cd;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: 15px Arial, sans-serif;
}

textarea {
  min-height: 125px;
  resize: vertical;
}

.fineprint {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   General sections
   --------------------------------------------------------- */

.section {
  padding: 105px 7vw;
}

.intro {
  text-align: center;
  max-width: 1020px;
  margin: auto;
  padding-top: 55px;
}

.section h2,
.section-title h2,
.restaurant-callout h2 {
  font: normal clamp(40px, 5vw, 68px) / 1.06 Georgia, serif;
  margin: 12px 0 25px;
}

.lede {
  font: 20px / 1.7 Georgia, serif;
  color: var(--muted);
}

.alt {
  background: var(--cream);
}

.section-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.cards article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.cards span {
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 12px;
}

.cards h3,
.space-grid h3 {
  font: 28px Georgia, serif;
}

.cards p,
.space-grid p {
  color: var(--muted);
  line-height: 1.65;
}

/* ---------------------------------------------------------
   Spaces grid
   --------------------------------------------------------- */

.space-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.space-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.space-grid h3,
.space-grid p {
  padding-left: 22px;
  padding-right: 22px;
}

.space-grid p {
  padding-bottom: 15px;
}

.space-art {
  height: 210px;
  background: var(--navy-mid);
  position: relative;
}

.space-art::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 47%;
  height: 32%;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 10px 0 var(--gold-dark);
}

.space-art.room {
  background: var(--navy-mid);
}

.space-art.wine {
  background: linear-gradient(120deg, #3a2924, #735245);
}

.space-art.chef {
  background: linear-gradient(120deg, #0f2e2a, #1c473f);
}

.space-art.terrace {
  background: linear-gradient(120deg, #4a6a76, #a9c3b8);
}

/* ---------------------------------------------------------
   Occasion chips
   --------------------------------------------------------- */

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

.chips a {
  padding: 15px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}

.chips a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ---------------------------------------------------------
   Trust + restaurant callout
   --------------------------------------------------------- */

.trust-card {
  max-width: 980px;
  margin: auto;
  text-align: center;
  border: 1px solid var(--gold);
  padding: 65px;
  border-radius: 26px;
}

.trust-card p:last-child {
  font: 19px / 1.7 Georgia, serif;
  color: var(--muted);
}

.restaurant-callout {
  padding: 85px 7vw;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.restaurant-callout > div {
  max-width: 850px;
}

.restaurant-callout p:not(.eyebrow) {
  font: 18px / 1.65 Georgia, serif;
  color: rgba(248, 245, 239, 0.85);
}

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */

.faq {
  max-width: 1000px;
  margin: auto;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq summary {
  font: 22px Georgia, serif;
  cursor: pointer;
}

.faq details p {
  color: var(--muted);
  line-height: 1.7;
}

/* ---------------------------------------------------------
   Restaurants page
   --------------------------------------------------------- */

.restaurant-hero {
  min-height: 620px;
  background: linear-gradient(90deg, rgba(4, 20, 31, 0.92), rgba(4, 20, 31, 0.46)),
    url("../img/hero-private-dining.svg") center / cover;
  color: #fff;
  padding: 90px 7vw;
  display: flex;
  align-items: center;
}

.restaurant-hero > div {
  max-width: 760px;
}

.restaurant-hero p:not(.eyebrow) {
  font: 20px / 1.65 Georgia, serif;
}

.partner-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.partner-fields .full,
.partner-fields button {
  grid-column: 1 / -1;
}

/* ---------------------------------------------------------
   Search result + legal pages
   --------------------------------------------------------- */

.result-page,
.legal {
  max-width: 900px;
  margin: auto;
  min-height: 60vh;
  padding: 100px 28px;
}

.result-page h1,
.legal h1 {
  font: 60px Georgia, serif;
  margin-bottom: 10px;
}

.result-page p,
.legal p {
  color: var(--muted);
  line-height: 1.7;
}

.legal .updated {
  font-size: 13px;
  color: var(--muted);
  margin-top: -4px;
}

.legal .lead-note {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--ink);
}

.summary {
  margin: 30px 0;
  padding: 25px;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.legal h2 {
  font: 26px Georgia, serif;
  margin-top: 44px;
  color: var(--navy);
}

.legal h3 {
  font: 18px Georgia, serif;
  margin-top: 26px;
  color: var(--navy);
}

.legal ul {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 22px;
}

.legal li {
  margin-bottom: 6px;
}

.legal .toc {
  columns: 2;
  gap: 24px;
  list-style: decimal;
  padding-left: 20px;
  color: var(--navy);
  font-weight: 700;
}

.legal .toc a {
  text-decoration: none;
  color: var(--navy);
}

.legal .toc a:hover {
  color: var(--gold-dark);
}

.legal .contact-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 44px;
}

/* ---------------------------------------------------------
   Footer — matches header (dark navy), consistent on every page
   --------------------------------------------------------- */

.site-footer {
  background: var(--navy);
  color: rgba(248, 245, 239, 0.88);
}

.footer-inner {
  padding: 64px 7vw 40px;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

.footer-brand img {
  width: 180px;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(248, 245, 239, 0.6);
  font-size: 14px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h3 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(248, 245, 239, 0.75);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 245, 239, 0.12);
  padding: 22px 7vw 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1300px;
  margin: auto;
}

.copyright {
  opacity: 0.55;
  font-size: 12px;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
}

.footer-legal-links a {
  font-size: 12px;
  text-decoration: none;
  color: rgba(248, 245, 239, 0.55);
}

.footer-legal-links a:hover {
  color: var(--gold);
}

/* ---------------------------------------------------------
   Cookie banner
   --------------------------------------------------------- */

.cookie {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.16);
  z-index: 40;
  font-size: 13px;
}

.cookie p {
  margin: 0;
}

.cookie button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  margin-left: 7px;
  cursor: pointer;
  font-weight: 700;
}

.cookie #essential {
  background: var(--cream);
  color: var(--ink);
}

.cookie #accept {
  background: var(--navy);
  color: #fff;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid rgba(248, 245, 239, 0.1);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: 700px;
    padding: 70px 6vw;
  }

  .hero-overlay {
    background: rgba(4, 20, 31, 0.72);
  }

  .finder-grid {
    grid-template-columns: 1fr 1fr;
  }

  .space-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .restaurant-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 80px 6vw;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .legal .toc {
    columns: 1;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 70px;
  }

  .site-header .logo img {
    width: 160px;
  }

  .nav {
    top: 70px;
  }

  .hero {
    min-height: 650px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-dots {
    right: auto;
    left: 6vw;
    bottom: 22px;
  }

  .hero-proof {
    display: none;
  }

  .finder-wrap {
    padding: 0 4vw;
  }

  .finder {
    padding: 24px;
  }

  .finder-head {
    display: block;
  }

  .finder-grid,
  .space-grid,
  .partner-fields {
    grid-template-columns: 1fr;
  }

  .partner-fields .full,
  .partner-fields button {
    grid-column: auto;
  }

  .section {
    padding: 68px 5vw;
  }

  .trust-card {
    padding: 38px 24px;
  }

  .cookie {
    flex-direction: column;
    align-items: flex-start;
  }

  .restaurant-callout {
    padding: 65px 6vw;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
