@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  color: #2c241b;
  background: #f7f1e7;
  font-family: Inter, system-ui, sans-serif;
  --cream: #f7f1e7;
  --paper: #fffaf1;
  --fern: #31462e;
  --moss: #6f7c51;
  --gold: #b1844a;
  --ink: #2c241b;
  --shadow: 0 24px 60px rgba(42, 33, 22, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.hero {
  min-height: 92vh;
  background: linear-gradient(90deg, rgba(26, 35, 24, .8), rgba(26, 35, 24, .36), rgba(247, 241, 231, .08)), url('/assets/A BFM Spring 2024.jpg') center/cover;
  color: white;
  padding: 24px clamp(20px, 5vw, 72px) 84px;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 250, 241, .88);
  color: var(--fern);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.brand img { height: 68px; width: auto; }
.nav-links { display: flex; gap: clamp(14px, 3vw, 34px); font-weight: 700; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--gold); }

.hero-content { max-width: 760px; margin-top: auto; padding-top: 120px; }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .16em; margin: 0 0 12px; text-transform: uppercase; font-size: .78rem; }
.hero .eyebrow { color: #f5d69c; }
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; margin: 0; line-height: .95; }
h1 { font-size: clamp(4rem, 10vw, 8.8rem); letter-spacing: -.06em; }
h2 { color: var(--fern); font-size: clamp(2.6rem, 6vw, 5.8rem); letter-spacing: -.045em; }
h3 { color: var(--fern); font-size: 2rem; }
.hero-copy { font-size: clamp(1.08rem, 2vw, 1.38rem); line-height: 1.7; max-width: 660px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.button { align-items: center; border-radius: 999px; display: inline-flex; font-weight: 800; gap: 8px; justify-content: center; padding: 15px 24px; text-decoration: none; transition: .2s ease; }
.primary { background: var(--gold); color: white; box-shadow: 0 18px 35px rgba(66, 43, 15, .26); }
.secondary { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.55); color: white; }
.button:hover { transform: translateY(-2px); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ded1bd;
  border-bottom: 1px solid #ded1bd;
}
.stats div { background: var(--paper); padding: 28px; text-align: center; }
.stats svg { color: var(--moss); margin: 0 auto 8px; }
.stats strong { display: block; color: var(--fern); font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1; }
.stats span { color: #786a58; font-weight: 700; }

.section { padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 7vw, 90px); align-items: start; }
.story-copy { color: #675b4d; font-size: 1.08rem; line-height: 1.9; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-top: 0; }
.feature-card { background: var(--paper); border: 1px solid #e5d7c3; border-radius: 28px; padding: 34px; box-shadow: 0 16px 35px rgba(42, 33, 22, .08); }
.feature-card svg { color: var(--gold); margin-bottom: 18px; }
.feature-card p { color: #6f6252; line-height: 1.7; }
.section-heading { max-width: 900px; margin-bottom: 34px; }

.room-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.room-card { background: var(--paper); border-radius: 24px; box-shadow: 0 16px 35px rgba(42, 33, 22, .11); overflow: hidden; }
.room-card img { aspect-ratio: 4/5; height: 100%; object-fit: cover; width: 100%; }
.room-card div { padding: 18px; }
.room-card span { color: var(--gold); font-size: .75rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }

.gallery-section { background: #ebe0ce; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
figure { background: var(--paper); border-radius: 24px; margin: 0; overflow: hidden; position: relative; }
figure.wide { grid-column: span 2; grid-row: span 2; }
figure img { height: 100%; min-height: 280px; object-fit: cover; width: 100%; }
figcaption { background: linear-gradient(transparent, rgba(0,0,0,.65)); bottom: 0; color: white; font-weight: 800; left: 0; padding: 54px 20px 18px; position: absolute; width: 100%; }

.contact {
  align-items: center;
  background: var(--fern);
  color: white;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr .6fr;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}
.contact h2 { color: white; }
.contact p { color: #e5dccb; font-size: 1.08rem; line-height: 1.8; max-width: 760px; }
.contact-details { color: #e5dccb; font-size: 1.08rem; font-style: normal; font-weight: 700; justify-self: end; line-height: 1.8; }
.contact-details a { color: inherit; }

@media (max-width: 980px) {
  .stats, .features, .room-grid, .gallery-grid, .split, .contact { grid-template-columns: 1fr 1fr; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-details { justify-self: start; }
}

@media (max-width: 680px) {
  .hero { min-height: 860px; padding-inline: 16px; }
  .nav { align-items: flex-start; border-radius: 28px; flex-direction: column; }
  .nav-links { flex-wrap: wrap; }
  .stats, .features, .room-grid, .gallery-grid, .split, .contact { grid-template-columns: 1fr; }
  figure.wide { grid-column: auto; grid-row: auto; }
  h1 { font-size: 4rem; }
}
