:root {
  --black: #000000;
  --charcoal: #171717;
  --ink: #242424;
  --muted: #6f6a64;
  --line: #e6e1da;
  --soft: #f7f5f1;
  --white: #ffffff;
  --warm: #c8a96a;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.12);
  --radius: 6px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

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

p {
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  color: var(--black);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: 74px;
  max-width: 840px;
}

h2 {
  font-size: 52px;
}

h3 {
  font-size: 29px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 17px 18px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

td:nth-child(2),
td:nth-child(3),
th:nth-child(2),
th:nth-child(3) {
  text-align: right;
  white-space: nowrap;
}

.skip-link {
  background: var(--black);
  color: var(--white);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  min-height: 78px;
  padding: 16px 42px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: baseline;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 210px;
}

.brand-mark,
.footer-brand {
  color: var(--black);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.brand-sub {
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  color: var(--ink);
  padding: 8px 0;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--black);
}

.nav-book,
.button {
  align-items: center;
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: var(--radius);
  color: var(--white) !important;
  display: inline-flex;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.button:hover,
.nav-book:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
}

.button-secondary {
  background: var(--white);
  color: var(--black) !important;
}

.button-secondary:hover {
  background: var(--soft);
}

.button-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white) !important;
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-invert {
  background: var(--white);
  border-color: var(--white);
  color: var(--black) !important;
}

.button-invert:hover {
  background: var(--soft);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 8px;
  width: 44px;
}

.menu-toggle span {
  background: var(--black);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 26px;
}

.hero {
  min-height: 86vh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.04));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: var(--container);
  padding: 128px 42px 92px;
  position: relative;
  width: 100%;
}

.hero-content h1,
.hero-content .eyebrow {
  color: var(--white);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.65;
  margin: 26px 0 0;
  max-width: 640px;
}

.hero-actions,
.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-strip {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: grid;
  font-size: 13px;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip span {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 22px;
  text-align: center;
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.split-section,
.content-section,
.page-hero,
.quote-section,
.pricing-section,
.final-cta {
  margin: 0 auto;
  max-width: var(--container);
  padding: 112px 42px;
}

.split-section {
  align-items: center;
  display: grid;
  gap: 74px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.split-reverse .split-copy {
  order: 2;
}

.split-copy p,
.narrow-copy,
.page-hero-copy p {
  color: var(--muted);
  font-size: 18px;
  max-width: 690px;
}

.split-media,
.page-hero-media {
  margin: 0;
}

.split-media img,
.page-hero-media img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.section-heading {
  margin: 0 auto 54px;
  max-width: 760px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 auto;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.three-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 245px;
  padding: 32px;
}

.card-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.card h3 {
  margin-bottom: 18px;
}

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

.text-link {
  border-bottom: 1px solid var(--black);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  margin-top: 12px;
  padding-bottom: 4px;
}

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

.step {
  border-top: 1px solid var(--black);
  padding: 22px 10px 0 0;
}

.step span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

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

.page-hero {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  min-height: 74vh;
}

.page-hero-copy h1 {
  margin-bottom: 24px;
}

.quote-section {
  background: var(--black);
  color: var(--white);
  max-width: none;
  padding-left: max(42px, calc((100vw - var(--container)) / 2 + 42px));
  padding-right: max(42px, calc((100vw - var(--container)) / 2 + 42px));
}

blockquote {
  margin: 0;
  max-width: 940px;
}

blockquote p {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 46px;
  line-height: 1.15;
}

blockquote cite {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  font-style: normal;
  margin-top: 22px;
}

.spec-grid,
.stat-row,
.area-grid,
.care-grid,
.contact-panel,
.location-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.spec-grid div,
.stat-row div,
.area-grid div,
.care-grid div,
.contact-panel > div,
.note-panel {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.spec-grid span,
.stat-row span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.spec-grid strong,
.stat-row strong {
  color: var(--black);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.area-grid,
.care-grid,
.contact-panel,
.location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-grid h3,
.care-grid h3,
.contact-panel h3 {
  margin-bottom: 16px;
}

.center-row {
  justify-content: center;
}

.tick-list {
  color: var(--muted);
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.tick-list li {
  border-top: 1px solid var(--line);
  padding: 13px 0;
}

.tick-list li::before {
  color: var(--warm);
  content: "•";
  font-weight: 600;
  margin-right: 10px;
}

.two-column-list {
  columns: 2;
  max-width: 850px;
}

.note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 24px;
}

.pricing-section {
  display: grid;
  gap: 36px;
  padding-top: 40px;
}

.table-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-block h3 {
  background: var(--black);
  color: var(--white);
  padding: 24px 28px;
}

.table-block tr:last-child td {
  border-bottom: 0;
  font-weight: 600;
}

.faq-list {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 860px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

summary {
  color: var(--black);
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 760px;
}

.final-cta {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  max-width: none;
  padding-left: max(42px, calc((100vw - var(--container)) / 2 + 42px));
  padding-right: max(42px, calc((100vw - var(--container)) / 2 + 42px));
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 560px;
}

.map-frame {
  border-radius: var(--radius);
  min-height: 360px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  height: 100%;
  min-height: 360px;
  width: 100%;
}

.hours-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0 auto;
  max-width: 760px;
  overflow: hidden;
}

.hours-table div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
}

.hours-table div:last-child {
  border-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 900px;
}

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

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

textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.checkbox {
  align-items: start;
  color: var(--muted);
  display: flex;
  font-weight: 400;
}

.checkbox input {
  min-height: auto;
  width: 18px;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.legal-copy {
  margin: 0 auto;
  max-width: 860px;
}

.legal-copy h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  margin: 40px 0 12px;
}

.legal-copy p {
  color: var(--muted);
}

.site-footer {
  background: var(--soft);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 72px 42px 28px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin: 0 auto;
  max-width: var(--container);
}

.footer-grid h2 {
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--black);
}

.hours-strip,
.footer-bottom {
  border-top: 1px solid var(--line);
  margin: 42px auto 0;
  max-width: var(--container);
  padding-top: 20px;
}

.footer-bottom {
  display: flex;
  font-size: 13px;
  gap: 24px;
  justify-content: space-between;
}

@media (max-width: 980px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 42px;
  }

  .site-header {
    padding: 14px 24px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 24px;
    position: absolute;
    right: 0;
    top: 73px;
  }

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

  .site-nav a,
  .site-nav .nav-book {
    width: 100%;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 94px 24px 68px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .content-section,
  .page-hero,
  .quote-section,
  .pricing-section,
  .final-cta {
    padding: 78px 24px;
  }

  .split-section,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-copy {
    order: initial;
  }

  .two-cards,
  .three-cards,
  .four-cards,
  .steps,
  .spec-grid,
  .stat-row,
  .area-grid,
  .care-grid,
  .contact-panel,
  .location-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  blockquote p {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 25px;
  }

  .brand {
    min-width: auto;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-shade {
    background: rgba(0, 0, 0, 0.58);
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .two-cards,
  .three-cards,
  .four-cards,
  .steps,
  .spec-grid,
  .stat-row,
  .area-grid,
  .care-grid,
  .contact-panel,
  .location-grid,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
    padding: 26px;
  }

  .section-heading {
    text-align: left;
  }

  .two-column-list {
    columns: 1;
  }

  td,
  th {
    padding: 13px 10px;
  }

  td:first-child,
  th:first-child {
    width: 46%;
  }

  .table-block {
    overflow-x: auto;
  }

  .table-block table {
    min-width: 560px;
  }

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