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

:root {
  --dark: #101612;
  --dark-2: #172019;
  --gold: #c9a86a;
  --cream: #f5f1e8;
  --text: #242823;
  --muted: #687068;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 40px));
}

.hero {
  min-height: 680px;
  position: relative;
  color: var(--white);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(90deg, rgba(10,18,13,.88), rgba(10,18,13,.45)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2000&q=85")
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(201,168,106,.12), transparent 32%);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
}

.nav-btn {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.55);
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 3px;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 90px;
}

.eyebrow,
.small-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  margin: 16px 0;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: clamp(19px, 2vw, 26px);
  max-width: 700px;
  color: #eee;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-points span {
  padding: 8px 13px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  font-size: 13px;
}

.cta {
  display: inline-block;
  border: 0;
  background: var(--gold);
  color: #111;
  text-decoration: none;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  border-radius: 3px;
}

.content-section {
  background: var(--cream);
  padding: 75px 0 55px;
}

.content-section h2,
.faq-section h2,
.enquiry h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--dark);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  margin: 42px 0 16px;
}

.content-section h2:first-of-type {
  margin-top: 34px;
}

.content-section p {
  color: #4e564f;
  font-size: 17px;
  margin-bottom: 18px;
}

.intro {
  font-size: 19px !important;
  color: #30372f !important;
}

.highlight {
  background: var(--dark);
  color: white;
  padding: 52px 0;
}

.highlight-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.highlight h2 {
  font-family: Georgia, "Times New Roman", serif;
  max-width: 700px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.25;
  margin-top: 8px;
}

.cta.light {
  background: white;
  color: var(--dark);
  white-space: nowrap;
}

.faq-section {
  padding: 65px 0;
  background: #fff;
}

.faq-section h2 {
  margin-top: 0;
}

details {
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

details:last-child {
  border-bottom: 1px solid #ddd;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--dark);
  font-size: 17px;
}

details p {
  color: var(--muted);
  margin-top: 12px;
}

.enquiry {
  padding: 70px 0;
  background: var(--cream);
}

.enquiry-box {
  background: white;
  padding: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  box-shadow: 0 15px 45px rgba(0,0,0,.07);
}

.enquiry h2 {
  margin-top: 10px;
}

.enquiry p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 13px;
  align-content: center;
}

input {
  width: 100%;
  padding: 15px;
  border: 1px solid #d9ddd8;
  background: #fafbf9;
  font: inherit;
  outline: none;
}

input:focus {
  border-color: var(--gold);
}

footer {
  background: #0c100d;
  color: #aeb4ae;
  font-size: 12px;
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 760px) {
  .hero {
    min-height: 650px;
  }

  .nav-btn {
    display: none;
  }

  .hero-content {
    margin-bottom: 55px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-points {
    display: grid;
  }

  .highlight-inner,
  .enquiry-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .enquiry-box {
    padding: 30px 22px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
