:root {
  --paper: #fbfaf7;
  --surface: #ffffff;
  --soft: #f1ece3;
  --soft-2: #e4ddd1;
  --ink: #1d1b19;
  --muted: #6f6962;
  --line: #ded6ca;
  --copper: #b9824f;
  --copper-dark: #8f5e35;
  --charcoal: #252220;
  --shadow: 0 18px 50px rgba(42, 34, 27, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(222, 214, 202, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--charcoal);
  border: 1px solid var(--copper);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

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

.brand strong {
  font-weight: 800;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  color: #fff !important;
  background: var(--charcoal);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 75px);
  padding: clamp(36px, 7vw, 86px) clamp(18px, 4vw, 56px) 36px;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(44px, 6vw, 78px);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: 20px;
}

.hero-subtitle {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.trust-line {
  margin: 18px 0 0;
  color: var(--charcoal);
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 12px 26px rgba(37, 34, 32, 0.16);
}

.btn-primary:hover {
  background: #090807;
}

.btn-secondary {
  color: var(--charcoal);
  background: var(--surface);
  border-color: var(--line);
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card span,
.hero-card strong {
  display: block;
}

.hero-card span {
  color: var(--muted);
  font-size: 13px;
}

.confidence-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px);
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.confidence-strip div {
  padding: 22px;
  background: var(--surface);
}

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

.confidence-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(68px, 9vw, 120px) clamp(18px, 4vw, 56px);
}

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

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card,
.price-card,
.hours-card,
.location-card,
.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(42, 34, 27, 0.06);
}

.service-card {
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--copper-dark);
  background: var(--soft);
  border-radius: 50%;
  font-size: 22px;
}

.service-card p {
  min-height: 68px;
  color: var(--muted);
}

.service-card strong:last-child {
  color: var(--copper-dark);
}

.price-section {
  background: var(--soft);
}

.price-card {
  max-width: 980px;
  padding: clamp(18px, 4vw, 34px);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px 24px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.price-row span {
  color: var(--copper-dark);
  font-weight: 800;
}

.price-note,
.small-note {
  color: var(--muted);
  font-size: 14px;
}

.price-note {
  margin: 24px 0 0;
  padding: 16px;
  background: var(--paper);
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.filter-btn.active {
  color: #fff;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

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

.gallery-item {
  overflow: hidden;
  padding: 0;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-item img {
  height: 250px;
  object-fit: cover;
}

.gallery-caption {
  padding: 18px;
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--copper-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-caption p {
  margin: 8px 0 0;
  color: var(--muted);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--charcoal);
  color: #fff;
}

.booking-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.booking-highlight {
  margin-top: 28px;
  padding: 18px;
  color: var(--ink);
  background: var(--soft);
  border-radius: var(--radius);
}

.booking-highlight strong,
.booking-highlight span {
  display: block;
}

.booking-highlight span {
  margin-top: 4px;
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 30px);
  color: var(--ink);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.booking-summary {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-summary h3 {
  margin-bottom: 12px;
}

.booking-summary p {
  margin: 7px 0;
}

.booking-summary .btn {
  margin-top: 14px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  height: 560px;
  object-fit: cover;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.values {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.values div {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.values span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.info-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 20px;
  background: var(--soft);
}

.hours-card,
.location-card {
  padding: clamp(20px, 4vw, 34px);
}

.hours-list {
  margin: 24px 0 18px;
}

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

.hours-row span:last-child {
  color: var(--muted);
  text-align: right;
}

.location-card p {
  color: var(--muted);
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  margin-top: 22px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(37, 34, 32, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(37, 34, 32, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-placeholder strong,
.map-placeholder small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.map-placeholder small {
  color: var(--muted);
}

.map-pin {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--copper);
  border: 8px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: var(--shadow);
  transform: rotate(-45deg) translate(18px, -18px);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin: clamp(68px, 9vw, 110px) clamp(18px, 4vw, 56px);
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background: var(--charcoal);
  border-radius: var(--radius);
}

.final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.final-cta .btn-secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.74);
  background: #171513;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.site-footer a:hover {
  color: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.72);
}

.modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(280px, 0.8fr);
  width: min(980px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-card img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.modal-content {
  padding: clamp(22px, 4vw, 36px);
}

.modal-content span {
  color: var(--copper-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-content p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero,
  .booking-section,
  .about-section,
  .info-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .final-cta {
    align-items: start;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 67px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-media,
  .hero-media img,
  .about-image img {
    min-height: 360px;
    height: 360px;
  }

  .hero-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .confidence-strip,
  .price-list,
  .service-grid,
  .gallery-grid,
  .form-row,
  .modal-card {
    grid-template-columns: 1fr;
  }

  .confidence-strip {
    margin: 0 18px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .gallery-item img {
    height: 230px;
  }

  .modal-card img {
    min-height: 280px;
    height: 280px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
