:root {
  color-scheme: light;
  --paper: #fbf7f1;
  --ink: #2b2520;
  --muted: #756b63;
  --line: #e4d7c9;
  --rose: #c86373;
  --rose-dark: #8d3545;
  --sage: #667a62;
  --clay: #b98362;
  --cream: #fffdf9;
  --shadow: 0 24px 70px rgba(73, 45, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 241, 0.9);
  border-bottom: 1px solid rgba(228, 215, 201, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose-dark);
  font-family: Georgia, serif;
  font-size: 24px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a {
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--rose-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.icon-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}

.lang-toggle {
  font-weight: 800;
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 8vw, 92px) clamp(18px, 5vw, 76px) clamp(30px, 6vw, 76px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--rose-dark);
}

.button.secondary {
  color: var(--rose-dark);
  background: var(--cream);
  border: 1px solid var(--line);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 34px 0 0;
}

.quick-facts div {
  padding: 18px;
  background: rgba(255, 253, 249, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.hero-media img {
  height: min(70vh, 680px);
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  width: min(260px, calc(100% - 28px));
  padding: 18px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-card span,
.floating-card small {
  display: block;
  color: var(--muted);
}

.floating-card strong {
  display: block;
  margin: 4px 0;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.strip div {
  padding: 24px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.strip div:last-child {
  border-right: 0;
}

.strip strong,
.strip span {
  display: block;
}

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

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.two-column,
.visit-section,
.contact-section,
.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.two-column p,
.section-heading p,
.visit-card p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-list span {
  color: var(--sage);
  font-weight: 900;
}

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

.gallery-section {
  background: #efe5dc;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid figure {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.visit-card,
.hours-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
}

.visit-card {
  background: var(--sage);
  color: #fff;
}

.visit-card .section-kicker,
.visit-card p {
  color: rgba(255, 255, 255, 0.82);
}

.visit-card .button.primary {
  background: #fff;
  color: var(--sage);
}

.hours-card {
  background: var(--cream);
  border: 1px solid var(--line);
}

.hours-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hours-card p {
  color: var(--muted);
  font-size: 14px;
}

.proof-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.proof-grid span {
  color: var(--muted);
}

.contact-actions {
  margin-top: 0;
}

.contact-actions a {
  display: block;
  width: 100%;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.contact-actions a:hover {
  border-color: var(--rose);
}

.contact-actions span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-actions strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
  font-size: 20px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .two-column,
  .visit-section,
  .contact-section,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    height: 62vh;
    min-height: 430px;
  }

  .strip,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-mark,
  .lang-toggle,
  .icon-link {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 14px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 430px;
    min-height: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .wide {
    grid-column: span 1;
  }

  .gallery-grid figure {
    min-height: 250px;
  }

  .hours-card li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
