:root {
  --bg: #f4efe6;
  --paper: #fffdfa;
  --ink: #2c241f;
  --muted: #6f6258;
  --brand: #9f6f3b;
  --brand-strong: #7b552c;
  --accent: #2f6d70;
  --line: #e7dccf;
  --shadow: 0 18px 40px rgba(65, 44, 24, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(159, 111, 59, 0.2), transparent 38%),
    radial-gradient(circle at 90% 15%, rgba(47, 109, 112, 0.17), transparent 36%),
    var(--bg);
  line-height: 1.65;
}

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

a {
  color: var(--brand-strong);
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

.container {
  width: min(var(--container), calc(100% - 2.6rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #111;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
}

.skip-link:focus {
  left: 1rem;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.82);
  backdrop-filter: blur(8px);
}

.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  padding: 0.75rem 0;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 245, 238, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.nav a {
  color: var(--ink);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: rgba(159, 111, 59, 0.14);
  color: var(--brand-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.82rem 1.4rem;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 10px 24px rgba(123, 85, 44, 0.25);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-soft {
  background: rgba(159, 111, 59, 0.12);
  border-color: rgba(159, 111, 59, 0.24);
}

.hero {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: clamp(440px, 64vh, 650px);
  margin: 1.4rem auto 1rem;
  box-shadow: var(--shadow);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(23, 17, 12, 0.72), rgba(68, 42, 18, 0.3));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 1.05rem;
  padding: clamp(1.4rem, 6vw, 4rem);
  max-width: min(790px, 92%);
  color: #fff;
}

.eyebrow {
  font-size: 0.83rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  color: #f3debf;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 7vw, 4.3rem);
  font-weight: 700;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3.7vw, 2.9rem);
  font-weight: 700;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.28rem, 2.3vw, 1.8rem);
  font-weight: 700;
}

.hero p {
  margin: 0;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 0.6rem;
}

section {
  padding: clamp(2.2rem, 6vw, 4.2rem) 0;
}

.section-head {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

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

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

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 7px 18px rgba(55, 35, 19, 0.06);
}

.card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.media-split {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 1.3rem;
  align-items: stretch;
}

.media-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  min-height: 320px;
}

.highlight-band {
  background: linear-gradient(110deg, #1f5b5f, #2e6f73);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.1rem, 3.8vw, 2rem);
  display: grid;
  gap: 0.75rem;
  box-shadow: 0 18px 32px rgba(18, 62, 66, 0.25);
}

.highlight-band p {
  margin: 0;
  max-width: 70ch;
}

.highlight-band a,
.highlight-band a:visited,
.highlight-band a:hover,
.highlight-band a:active {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
}

.list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.list li {
  padding-left: 1.55rem;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 0.18rem;
  top: 0.64rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: grid;
  gap: 0.75rem;
  box-shadow: 0 7px 20px rgba(35, 24, 14, 0.08);
}

.price-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.72rem;
}

.price-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--brand-strong);
  font-weight: 700;
}

.price-unit {
  color: var(--muted);
  font-size: 0.95rem;
}

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.map-frame {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero {
  margin-top: 1.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.page-hero img {
  width: 100%;
  height: clamp(240px, 42vw, 350px);
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(24, 19, 15, 0.56), rgba(37, 55, 48, 0.25));
}

.page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 0.5rem;
  color: #fff;
  padding: 1.2rem clamp(1rem, 4vw, 2.2rem);
}

.breadcrumb {
  font-size: 0.92rem;
  color: #f4e8d8;
}

.breadcrumb a {
  color: #f5e4c7;
}

.cta-card {
  background: linear-gradient(122deg, rgba(159, 111, 59, 0.98), rgba(123, 85, 44, 0.98));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 14px 30px rgba(70, 41, 18, 0.28);
}

.cta-card a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
}

.cta-card a:hover,
.cta-card a:visited,
.cta-card a:active {
  color: inherit;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.72), rgba(246, 238, 228, 0.92));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
  padding: 2.2rem 0;
}

.footer-title {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.4rem;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.small {
  font-size: 0.92rem;
  color: var(--muted);
}

.copy {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0 1.3rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.animate-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease forwards;
}

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.68s ease forwards;
}

.stagger > *:nth-child(2) {
  animation-delay: 0.1s;
}

.stagger > *:nth-child(3) {
  animation-delay: 0.2s;
}

.stagger > *:nth-child(4) {
  animation-delay: 0.3s;
}

.stagger > *:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  body {
    display: flex;
    flex-direction: column;
  }

  .site-header {
    order: 1;
  }

  .topbar {
    order: 2;
  }

  main {
    order: 3;
  }

  .site-footer {
    order: 4;
  }

  .media-split,
  .grid-2,
  .grid-3,
  .price-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .nav {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

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

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 1.15rem;
  }

  .nav {
    gap: 0.18rem;
  }

  .nav a {
    padding: 0.45rem 0.74rem;
    font-size: 0.94rem;
  }
}
