:root {
  color-scheme: light;
  --red: #d90912;
  --deep-red: #9f050b;
  --ink: #171717;
  --muted: #625a50;
  --cream: #fff8eb;
  --paper: #fffdf7;
  --line: #f0d5ba;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(80, 31, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--red);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 84px) 0;
}

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

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li,
address {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--deep-red);
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border-color: var(--red);
  color: var(--red);
}

.button.light {
  background: var(--white);
}

.price-poster {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero-poster {
  transform: rotate(1deg);
}

.price-poster img {
  width: 100%;
  height: auto;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

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

.section h2 {
  margin: 0;
  max-width: 780px;
  color: var(--deep-red);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 310px;
  padding: 26px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: var(--cream);
}

.service-card h3 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.note {
  margin: 0 0 20px;
  color: var(--muted);
  font-weight: 700;
}

.service-card ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px dashed rgba(217, 9, 18, 0.4);
}

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

.service-card strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.addons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.addons span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.addons strong {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--cream);
}

.poster-section,
.booking-section,
.contact-section {
  border-top: 1px solid var(--line);
}

.poster-section {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.poster-section p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 45px rgba(80, 31, 20, 0.08);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #dcc5ad;
  border-radius: 8px;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
}

.booking-form textarea,
.form-button,
.form-note {
  grid-column: 1 / -1;
}

.booking-form textarea {
  resize: vertical;
}

.form-button {
  width: min(360px, 100%);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-section address {
  margin: 18px 0 0;
  color: var(--muted);
  font-style: normal;
  font-size: 1.12rem;
}

.hours {
  margin: 16px 0 0;
  color: var(--deep-red);
  font-size: 1.08rem;
  font-weight: 850;
}

.review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 6px 22px rgba(80, 31, 20, 0.08);
}

.review-link:hover {
  border-color: var(--red);
}

.review-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
}

.yelp-mark {
  background: #d32323;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
}

.google-mark {
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .poster-section,
  .service-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-poster {
    transform: none;
  }

  .contact-section {
    display: grid;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 0.95rem;
  }

  .nav {
    gap: 10px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .button,
  .form-button,
  .review-link {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
