* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1a16;
  --muted: #5f5b55;
  --sand: #f4efe7;
  --clay: #d5c6b3;
  --paper: #fbfaf7;
  --accent: #2b6a6f;
  --accent-dark: #1f4c50;
  --sunset: #e1b58f;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.page {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid #e6ded2;
  background: #fffaf2;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 40px 0 32px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0 0 16px;
}

.hero-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sand);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.btn-sand {
  background: var(--sunset);
  border-color: var(--sunset);
  color: var(--ink);
}

.section {
  padding: 44px 0;
}

.section.alt {
  background: var(--sand);
}

.section.clay {
  background: var(--clay);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
}

.layout-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.layout-columns.reverse {
  flex-direction: column-reverse;
}

.layout-wide {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.quote-box {
  background: #fff;
  padding: 20px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-row img {
  border-radius: 14px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form label {
  font-weight: 600;
  font-size: 0.95rem;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8d1c7;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
}

.site-footer {
  background: #1c1b19;
  color: #f6f2ea;
  padding: 32px 0 40px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.two-up {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.side-note {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hidden {
  display: none;
}

@media (min-width: 760px) {
  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-grid > div {
    flex: 1;
  }

  .layout-columns {
    flex-direction: row;
    align-items: flex-start;
  }

  .layout-columns.reverse {
    flex-direction: row-reverse;
  }

  .layout-columns > div {
    flex: 1;
  }

  .layout-wide {
    flex-direction: row;
    align-items: stretch;
  }

  .layout-wide > div {
    flex: 1;
  }

  .gallery-row {
    flex-direction: row;
  }

  .gallery-row img {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .two-up {
    flex-direction: row;
  }

  .two-up > div {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }
}
