:root {
  --ink: #211b18;
  --ink-soft: #453b36;
  --cream: #f6f0ea;
  --paper: #fffdfa;
  --blush: #ead6d2;
  --rose: #a96261;
  --rose-dark: #814847;
  --gold: #b18a59;
  --line: rgba(33, 27, 24, 0.14);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(50, 37, 30, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.1rem, 12vw, 5.25rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 8vw, 3.65rem);
  line-height: 1.04;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  max-width: 980px;
}

.section {
  padding: 4.75rem 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  border-radius: 0.35rem;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.offer-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  color: #fff;
  background: var(--ink);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 250, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand img {
  width: 47px;
  height: 47px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 0.33rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.35rem;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(33, 27, 24, 0.14);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: #fff;
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.brand:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(169, 98, 97, 0.42);
  outline-offset: 4px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 42px;
  padding: 0.75rem 1rem;
  font-size: 0.73rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0 4rem;
  background:
    radial-gradient(circle at 12% 15%, rgba(234, 214, 210, 0.75), transparent 33rem),
    var(--cream);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(177, 138, 89, 0.26);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

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

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 .price {
  color: var(--rose-dark);
  font-style: italic;
  white-space: nowrap;
}

.hero-lead {
  max-width: 36rem;
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.17rem;
  line-height: 1.55;
}

.price-note {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(33, 27, 24, 0.11);
  border-radius: 0.65rem;
  font-size: 0.76rem;
}

.price-note-label {
  width: 100%;
  color: var(--rose-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-note strong {
  font-size: 1.03rem;
}

.price-note-divider {
  width: 1px;
  height: 1rem;
  background: var(--line);
}

.price-note s {
  color: var(--ink-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  padding: 0;
  margin: 1.35rem 0 0;
  color: var(--ink-soft);
  list-style: none;
  font-size: 0.76rem;
  font-weight: 650;
}

.hero-details li {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.hero-details svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--rose-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-media {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: 48% 48% 1.2rem 1.2rem;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 23, 20, 0.3), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  object-position: center;
}

.hero-media-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  min-width: 145px;
  flex-direction: column;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: rgba(255, 253, 250, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.65rem;
  box-shadow: 0 12px 30px rgba(33, 27, 24, 0.16);
  backdrop-filter: blur(10px);
}

.hero-media-card span,
.hero-media-card small {
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media-card strong {
  margin: 0.18rem 0 0.12rem;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 2rem;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.includes {
  background: var(--paper);
}

.includes-grid {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.includes-grid li {
  display: flex;
  min-height: 124px;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: 0 14px 40px rgba(53, 38, 31, 0.05);
}

.check {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: #fff;
  background: var(--rose);
  border-radius: 50%;
  font-size: 0.84rem;
  font-weight: 800;
}

.includes-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
}

.includes-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.fit {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.fit::before {
  position: absolute;
  top: -170px;
  left: -130px;
  width: 370px;
  height: 370px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  content: "";
}

.fit-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.fit-copy {
  max-width: 620px;
}

.eyebrow-light {
  color: #dfaaa5;
}

.fit-copy > p:not(.eyebrow) {
  max-width: 37rem;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.72);
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button-light:hover {
  color: #fff;
}

.comparison-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--white-line);
  border-radius: 1rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.comparison-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--white-line);
}

.comparison-topline span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-topline strong {
  color: #e2aaa5;
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1;
}

.comparison-card ul {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem 0;
  margin: 0;
  border-bottom: 1px solid var(--white-line);
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.86rem;
}

.comparison-card li::before {
  position: absolute;
  left: 0;
  color: #dfaaa5;
  content: "✓";
}

.comparison-card p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
}

.comparison-card p strong {
  color: #fff;
}

.experience {
  background: var(--cream);
}

.steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0.5rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.steps strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.location {
  background: #fff;
}

.location-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.location-intro > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
}

.location-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.location-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--rose-dark);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.55;
}

.hours {
  margin: 0;
}

.hours > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

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

.hours dt {
  color: var(--ink-soft);
}

.hours dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.final-cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.62), transparent 18rem),
    var(--blush);
}

.final-inner {
  max-width: 720px;
  text-align: center;
}

.final-inner > img {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.final-inner > p:not(.eyebrow) {
  max-width: 550px;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
  color: var(--ink-soft);
}

.terms-section {
  padding: 2rem 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

details {
  padding: 0.5rem 0;
}

summary {
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.terms-list {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.site-footer {
  padding: 2.3rem 0 7rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 0.77rem;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

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

.mobile-book {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem max(0.8rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.8rem, env(safe-area-inset-left));
  background: rgba(255, 253, 250, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(33, 27, 24, 0.12);
  backdrop-filter: blur(14px);
}

.mobile-book > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
}

.mobile-book span {
  color: var(--rose-dark);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-book strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 560px) {
  .container {
    width: min(1160px, calc(100% - 3rem));
  }

  .hero {
    padding-top: 3.5rem;
  }

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

  .includes-grid li:last-child {
    grid-column: 1 / -1;
  }

  .location-card {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 6rem 0;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .fit-grid,
  .location-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.75fr);
    gap: 4.5rem;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.8rem;
    border-top: 0;
    border-right: 1px solid var(--line);
  }

  .steps li:first-child {
    padding-left: 0;
  }

  .steps li:last-child {
    padding-right: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .footer-links {
    align-items: flex-end;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }

  .mobile-book {
    display: none;
  }
}

@media (min-width: 940px) {
  .hero {
    padding: 4.5rem 0 5.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.76fr);
    gap: 4rem;
  }

  .hero-media,
  .hero-media > img {
    min-height: 570px;
  }

  .hero-media > img {
    object-position: 54% center;
  }

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

  .includes-grid li {
    grid-column: span 2;
  }

  .includes-grid li:nth-last-child(2) {
    grid-column: 2 / span 2;
  }

  .includes-grid li:last-child {
    grid-column: 4 / span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
