:root {
  color-scheme: only light;
  --bg: #f6f1ea;
  --bg-alt: #efe4d7;
  --card: #ffffff;
  --text: #1f1712;
  --muted: #64594f;
  --accent: #b06b3b;
  --accent-strong: #8a4b21;
  --deep: #1f3a2e;
  --border: rgba(31, 23, 18, 0.1);
  --shadow: 0 24px 60px rgba(31, 23, 18, 0.14);
  --radius: 18px;
  --radius-lg: 28px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Source Sans 3";
  src: local("Source Sans 3"), local("SourceSans3");
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: local("Cormorant Garamond"), local("CormorantGaramond");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #fffaf4 0%, var(--bg) 55%, #efe0d0 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin: 0 0 0.6rem;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.1rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 1rem;
}

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

.section {
  padding: 80px 0;
  position: relative;
}

.section.alt {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(239, 228, 215, 0.8));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(246, 241, 234, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.brand-name {
  font-weight: 600;
  margin: 0;
}

.brand-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(176, 107, 59, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(176, 107, 59, 0.3);
  background: var(--accent-strong);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: var(--deep);
  color: #fff;
}

.hero {
  padding: 96px 0 70px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 107, 59, 0.25), transparent 70%);
  top: -160px;
  right: -120px;
  z-index: 0;
}

.hero::after {
  top: auto;
  bottom: -240px;
  left: -160px;
  background: radial-gradient(circle, rgba(31, 58, 46, 0.2), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.badge {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 16px;
}

.badge-title {
  font-weight: 600;
  display: block;
}

.badge-text {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-media {
  display: grid;
  gap: 20px;
}

.media-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.media-card.highlight {
  transform: translateX(20px);
}

.media-caption {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.price-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border);
  padding: 10px 0;
  gap: 12px;
}

.price-card li:last-child {
  border-bottom: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.gallery img {
  border-radius: 16px;
  height: 220px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.hours-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.hours-card strong {
  font-size: 1.2rem;
}

.hours-note {
  background: var(--deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

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

.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta {
  background: linear-gradient(120deg, rgba(176, 107, 59, 0.18), rgba(31, 58, 46, 0.18));
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.legal h3 {
  margin-top: 24px;
}

.site-footer {
  padding: 30px 0 50px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 12px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 16px;
}

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

[data-animate] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0 6px;
    border-top: 1px solid var(--border);
  }

  .nav-actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    padding-top: 6px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links.is-open {
    display: flex;
  }

  .media-card.highlight {
    transform: none;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 70px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-badges {
    flex-direction: column;
  }

  .media-card img {
    height: 240px;
  }

  .cta {
    padding: 28px;
  }
}
