:root {
  --bg: #f5f0e8;
  --bg-alt: #ffffff;
  --text: #2e2a27;
  --accent: #c27b41;
  --accent-dark: #9b5c2c;
  --border: #e0d7c8;
  --max-width: 1100px;
  --radius: 10px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* HERO */

.hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  max-height: 720px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.25),
    transparent
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 1.5rem 3rem;
}

.hero-content {
  max-width: var(--max-width);
  width: 100%;
  color: #fff;
}

.hero-content h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
}

.hero-content p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
}

/* NAV */

.top-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.top-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

/* LAYOUT */

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.section {
  margin-bottom: 3rem;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-alt {
  background: var(--bg-alt);
  padding: 2rem 1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Ensure anchor scroll not hidden by sticky nav */
.section,
.section-alt {
  scroll-margin-top: 70px;
}

/* CARDS */

.cards {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.card-body h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

/* TWO COLUMN + IMAGES */

.two-col {
  display: grid;
  gap: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 0.5rem;
}

.image-stack {
  display: grid;
  gap: 0.75rem;
}

.image-stack img {
  width: 100%;
  border-radius: 8px;
  height: 190px;
  object-fit: cover;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

/* FORM */

.contact-form {
  max-width: 650px;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row label {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row .full {
  grid-column: 1 / -1;
}

input,
textarea {
  font: inherit;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #faf7f1;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

/* BUTTONS */

.btn-primary {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

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

/* NOTE */

.note {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: italic;
}

/* FAQS */

.faqs {
  display: grid;
  gap: 1rem;
}

.faq-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

/* FOOTER */

.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #756b61;
}

/* RESPONSIVE */

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: 3fr 2.4fr;
    align-items: start;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-stack img {
    height: 220px;
  }
}

@media (max-width: 699px) {
  main {
    padding: 2rem 1.1rem 2.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .top-nav {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  .top-nav a {
    font-size: 0.8rem;
  }
}
