/* =========================================================
   WHFL Master Template v2.0
   Config-driven: edit config.js only
========================================================= */

:root {
  --bg: #f4efe6;
  --bg-soft: #ebe1cf;
  --text: #1f1a15;
  --muted: #5f564d;
  --dark: #17120e;
  --gold: #bd8c2f;
  --gold-dark: #9f7424;
  --white: #fffaf2;
  --shadow: 0 18px 45px rgba(31, 26, 21, 0.12);
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  width: min(1120px, 88%);
  margin: 0 auto;
}

.section { padding: 96px 0; }

.section-label,
.eyebrow {
  font-family: "Inter", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  font-size: clamp(66px, 8.8vw, 118px);
  color: var(--white);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(42px, 5.4vw, 66px);
  margin-bottom: 30px;
}

p { margin-bottom: 18px; }

.copy p,
.location p,
.booking p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

/* HERO */

.hero {
  min-height: 100vh;
  background: url("images/hero.jpg") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(23, 18, 14, 0.24), rgba(23, 18, 14, 0.62)),
    rgba(23, 18, 14, 0.22);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero__text {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: clamp(18px, 2vw, 25px);
  color: var(--white);
  font-weight: 500;
}

/* BUTTONS */

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  text-decoration: none;
  padding: 15px 28px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.button--gold { background: var(--gold); color: var(--white); }
.button--gold:hover { background: var(--gold-dark); }
.button--outline { border-color: var(--white); color: var(--white); }
.button--outline:hover { background: var(--white); color: var(--dark); }
.button--dark { background: var(--dark); color: var(--white); }

/* LAYOUT */

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 90px;
  align-items: start;
}

/* GALLERY */

.gallery { padding-top: 40px; }

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

.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-grid img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 434px;
}

/* AMENITIES */

.amenities { background: var(--bg-soft); }

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

.amenity-card {
  background: rgba(255, 250, 242, 0.82);
  min-height: 185px;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.amenity-card h3 {
  font-family: "Inter", Arial, sans-serif;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 14px;
}

.amenity-card ul {
  list-style-position: inside;
  color: var(--muted);
  font-size: 14px;
}

/* LOCATION */

.location-card {
  background: var(--white);
  padding: 46px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* BOOKING */

.booking {
  background: var(--dark);
  color: var(--white);
}

.booking h2,
.booking p {
  color: var(--white);
}

.booking-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.contact-card {
  background: rgba(255, 250, 242, 0.06);
  padding: 40px;
  border: 1px solid rgba(255, 250, 242, 0.14);
}

.contact-card a { text-decoration: none; }

/* FOOTER */

.footer {
  background: #0f0c09;
  color: #cfc5b5;
  text-align: center;
  padding: 30px 20px;
  font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .two-column,
  .booking-box {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .gallery-grid,
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img:first-child {
    grid-column: auto;
    grid-row: auto;
    height: 230px;
  }

  .gallery-grid img { height: 230px; }
}

@media (max-width: 620px) {
  .section { padding: 68px 0; }

  h1 { font-size: 58px; }
  h2 { font-size: 42px; }

  .gallery-grid,
  .amenities-grid { grid-template-columns: 1fr; }

  .hero__buttons { flex-direction: column; }

  .button {
    width: 100%;
    text-align: center;
  }

  .location-card,
  .contact-card { padding: 28px; }
}
