:root {
  --ink: #17201c;
  --ink-soft: #26342e;
  --cream: #f3efe7;
  --paper: #fbfaf7;
  --sage: #a9b7a7;
  --sage-light: #dfe5dc;
  --line: rgba(23, 32, 28, 0.16);
  --white: #fff;
  --radius: 3px;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.site-header {
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4.5vw;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-logo { display: block; width: 158px; height: 64px; object-fit: contain; }
.desktop-nav { display: flex; gap: 34px; font-size: 13px; font-weight: 600; }
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background: var(--ink);
  transition: transform .2s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-book { justify-self: end; }

.button {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #2c3933; }
.button-light { background: var(--cream); color: var(--ink); }
.button-light:hover { background: var(--white); }
.button-outline { border-color: var(--ink); background: transparent; }
.button-outline:hover { background: var(--ink); color: var(--white); }
.text-link {
  border: 0;
  padding: 6px 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.text-link span { margin-left: 20px; }
.text-link-light { color: var(--white); }
.eyebrow {
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}
.eyebrow-light { color: rgba(255,255,255,.72); }
h1, h2, h3 { margin: 0; font-family: var(--display); letter-spacing: -.045em; }

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 86px));
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,17,14,.91) 0%, rgba(11,17,14,.66) 31%, rgba(11,17,14,.05) 68%);
}
.hero-content { position: relative; z-index: 1; width: 48%; padding: 80px 0 80px 8vw; }
.hero h1 { font-size: clamp(54px, 6.2vw, 98px); line-height: .96; font-weight: 500; }
.hero-intro { max-width: 520px; margin: 32px 0 36px; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.hero-proof {
  position: absolute;
  z-index: 1;
  right: 4.5vw;
  bottom: 42px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 14px;
  align-items: center;
  padding: 17px 20px;
  background: rgba(18,26,22,.78);
  backdrop-filter: blur(10px);
}
.hero-proof strong { font: 600 24px var(--display); }
.hero-proof .stars { color: #dce4d9; letter-spacing: 2px; font-size: 11px; }
.hero-proof small { grid-column: 1 / -1; margin-top: 5px; color: rgba(255,255,255,.65); }

.statement { padding: 130px 8vw 110px; }
.statement h2, .section-heading h2 { font-size: clamp(46px, 5.8vw, 86px); line-height: 1.02; font-weight: 500; }
.statement-copy { max-width: 540px; margin: 34px 0 90px auto; font-size: 18px; line-height: 1.75; color: #55605b; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.experience-grid article { min-height: 240px; padding: 30px 42px 20px 0; border-right: 1px solid var(--line); }
.experience-grid article + article { padding-left: 42px; }
.experience-grid article:last-child { border-right: 0; }
.feature-number { color: #8a948f; font-size: 11px; }
.experience-grid h3 { margin-top: 58px; font-size: 24px; font-weight: 600; }
.experience-grid p { max-width: 310px; color: #65706a; line-height: 1.6; }

.services-section { padding: 130px 8vw; background: var(--ink); color: var(--white); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 80px; }
.section-heading > p { max-width: 350px; color: #65706a; line-height: 1.7; }
.service-list { border-top: 1px solid rgba(255,255,255,.2); }
.service-row {
  width: 100%;
  min-height: 116px;
  display: grid;
  grid-template-columns: 80px 1fr auto 50px;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: padding .25s ease, background .25s ease;
}
.service-row:hover { padding-left: 18px; padding-right: 18px; background: rgba(255,255,255,.045); }
.service-index { color: rgba(255,255,255,.44); font-size: 11px; }
.service-name { font: 500 clamp(22px, 2.5vw, 36px) var(--display); letter-spacing: -.035em; }
.service-name small { display: block; margin-top: 7px; color: rgba(255,255,255,.46); font: 400 12px var(--body); letter-spacing: 0; }
.service-meta { color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .1em; }
.service-arrow { font-size: 22px; text-align: right; }

.locations-section { padding: 130px 8vw; }
.section-heading-dark { align-items: end; }
.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.location-card { background: var(--cream); }
.location-art {
  aspect-ratio: 16/9;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #87958c;
}
.location-art::before, .location-art::after { content: ""; position: absolute; inset: 0; }
.location-art::before {
  background:
    linear-gradient(115deg, transparent 47%, rgba(255,255,255,.25) 48%, transparent 49%),
    radial-gradient(circle at 75% 55%, transparent 0 18%, rgba(21,29,25,.92) 18.5% 20%, transparent 20.5%),
    linear-gradient(0deg, #37483f 0 18%, transparent 18%);
}
.location-newbridge .location-art { background: #b2a58f; }
.location-art::after { background: linear-gradient(0deg, rgba(15,22,18,.42), transparent 60%); }
.location-art span { z-index: 1; color: rgba(255,255,255,.88); font: 600 clamp(38px, 6vw, 84px) var(--display); letter-spacing: -.06em; }
.location-info { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding: 34px; }
.location-info .eyebrow { margin-bottom: 13px; }
.location-info h3 { font-size: 42px; font-weight: 500; }
.location-info p:not(.eyebrow) { color: #637069; line-height: 1.55; }

.rebook-banner { padding: 120px 8vw; text-align: center; color: var(--white); background: #6f8175; }
.rebook-banner h2 { font-size: clamp(52px, 7vw, 104px); line-height: .95; font-weight: 500; }
.rebook-banner > p:not(.eyebrow) { max-width: 530px; margin: 32px auto; color: rgba(255,255,255,.74); line-height: 1.7; }

footer {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  padding: 70px 8vw;
  background: #101713;
  color: var(--white);
}
.brand-light { color: var(--white); }
.brand-light .brand-logo { width: 220px; height: auto; filter: invert(1); }
.footer-block { display: flex; flex-direction: column; gap: 9px; font-size: 12px; color: rgba(255,255,255,.55); }
.footer-block strong { margin-bottom: 6px; color: var(--white); font-size: 12px; }
.footer-block a:hover { color: var(--white); }

.booking-dialog {
  width: min(760px, 100%);
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform .35s ease, display .35s allow-discrete, overlay .35s allow-discrete;
}
.booking-dialog[open] { transform: translateX(0); }
@starting-style { .booking-dialog[open] { transform: translateX(100%); } }
.booking-dialog::backdrop { background: rgba(8,13,10,.66); backdrop-filter: blur(4px); }
.booking-shell { min-height: 100%; padding: 42px clamp(24px, 6vw, 70px); }
.booking-header { display: flex; justify-content: space-between; align-items: start; }
.booking-header .eyebrow { margin-bottom: 8px; }
.booking-header h2 { font-size: clamp(34px, 5vw, 54px); font-weight: 500; }
.icon-button {
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 27px; font-weight: 300;
}
.booking-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin: 36px 0 46px; }
.booking-progress span { height: 3px; background: #d9ddd9; }
.booking-progress span.active { background: var(--ink); }
.booking-step { display: none; animation: step-in .25s ease; }
.booking-step.active { display: block; }
@keyframes step-in { from { opacity: 0; transform: translateY(8px); } }
.step-label { color: #87908b; font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.booking-step h3 { margin-bottom: 30px; font-size: clamp(31px, 5vw, 47px); font-weight: 500; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice-button, .stacked-choice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: border .2s ease, background .2s ease;
}
.choice-button { min-height: 150px; padding: 25px; }
.choice-button:hover, .choice-button.selected, .stacked-choice:hover, .stacked-choice.selected { border-color: var(--ink); background: #edf1eb; }
.choice-button strong { display: block; margin: 10px 0 7px; font: 600 25px var(--display); }
.choice-button span, .stacked-choice small { color: #6a756f; font-size: 12px; }
.choice-icon { font-size: 24px; }
.stacked-choices { display: flex; flex-direction: column; gap: 9px; }
.stacked-choice { width: 100%; min-height: 78px; display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 17px 20px; }
.stacked-choice strong { font: 600 16px var(--display); }
.stacked-choice small { display: block; margin-top: 6px; }
.stacked-choice span { font-size: 12px; font-weight: 700; }
.back-button { margin: 0 0 25px; padding: 0; border: 0; background: transparent; cursor: pointer; font-size: 12px; font-weight: 700; }
.field-label { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 700; }
.select-field, .form-grid input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 15px;
  background: var(--white);
  outline: none;
}
.select-field:focus, .form-grid input:focus { border-color: var(--ink); }
.date-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; margin: 28px 0 22px; }
.date-button { padding: 13px 5px; border: 1px solid var(--line); background: var(--white); cursor: pointer; }
.date-button strong, .date-button span { display: block; text-align: center; }
.date-button strong { font-size: 18px; }
.date-button span { margin-top: 4px; color: #737d77; font-size: 9px; text-transform: uppercase; }
.date-button.selected { background: var(--ink); color: var(--white); }
.date-button.selected span { color: rgba(255,255,255,.6); }
.availability-note { color: #6a746f; font-size: 12px; }
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.time-button { height: 45px; border: 1px solid var(--line); background: var(--white); cursor: pointer; }
.time-button:hover, .time-button.selected { background: var(--ink); color: var(--white); }
.booking-summary { margin: 0 0 26px; padding: 20px; border-left: 3px solid var(--sage); background: var(--cream); }
.booking-summary strong { display: block; font: 600 19px var(--display); }
.booking-summary span { display: block; margin-top: 6px; color: #68736d; font-size: 12px; line-height: 1.5; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
.form-grid label { font-size: 11px; font-weight: 700; }
.form-grid input { display: block; margin-top: 8px; font-weight: 400; }
.full-field { grid-column: 1 / -1; }
.check-row { display: flex; gap: 11px; align-items: start; margin-top: 18px; color: #4d5952; font-size: 12px; line-height: 1.45; }
.check-row input { margin: 2px 0 0; accent-color: var(--ink); }
.submit-booking { width: 100%; margin-top: 25px; }
.fine-print { text-align: center; color: #818a85; font-size: 10px; }
.confirmation { padding-top: 30px; text-align: center; }
.confirmation-mark { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 24px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 24px; }
.confirmation .booking-summary { margin-top: 30px; text-align: left; }
.confirmation > p:not(.eyebrow) { max-width: 440px; margin: 22px auto; color: #67716c; line-height: 1.6; }
.calendar-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px; }
.calendar-actions .button { display: grid; place-items: center; width: 100%; margin: 0; }
.done-link { margin-top: 23px; padding: 8px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 12px; font-weight: 700; }
body.dialog-open { overflow: hidden; }

@media (max-width: 860px) {
  .site-header { height: 72px; grid-template-columns: 1fr auto; padding: 0 20px; }
  .desktop-nav { display: none; }
  .header-book { min-height: 42px; padding: 0 17px; }
  .hero { min-height: calc(100svh - 72px); align-items: end; }
  .hero > img { object-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(10,16,13,.96) 0%, rgba(10,16,13,.55) 58%, rgba(10,16,13,.1) 100%); }
  .hero-content { width: 100%; padding: 70px 24px 115px; }
  .hero h1 { font-size: clamp(49px, 14vw, 72px); }
  .hero-intro { margin: 24px 0 28px; font-size: 15px; }
  .hero-proof { left: 24px; right: auto; bottom: 24px; }
  .statement, .services-section, .locations-section { padding: 86px 24px; }
  .statement h2, .section-heading h2 { font-size: 46px; }
  .statement-copy { margin: 30px 0 65px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-grid article, .experience-grid article + article { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .experience-grid h3 { margin-top: 35px; }
  .section-heading { display: block; margin-bottom: 50px; }
  .section-heading .text-link { margin-top: 30px; }
  .service-row { grid-template-columns: 30px 1fr auto; min-height: 104px; }
  .service-meta { grid-column: 2; margin-top: -18px; }
  .service-arrow { grid-column: 3; grid-row: 1 / 3; }
  .location-grid { grid-template-columns: 1fr; }
  .location-info { align-items: start; flex-direction: column; }
  .rebook-banner { padding: 90px 24px; }
  footer { grid-template-columns: repeat(2, 1fr); padding: 60px 24px; }
  footer .brand { grid-column: 1 / -1; margin-bottom: 20px; }
}

@media (max-width: 560px) {
  .site-header .brand-logo { width: 118px; height: 54px; }
  .hero-actions { align-items: start; flex-direction: column; gap: 20px; }
  .hero-content { padding-bottom: 130px; }
  .hero-proof { padding: 12px 15px; }
  .service-index { display: none; }
  .service-row { grid-template-columns: 1fr 32px; }
  .service-name { font-size: 23px; }
  .service-meta { grid-column: 1; }
  .service-arrow { grid-column: 2; }
  .location-info { padding: 27px; }
  footer { grid-template-columns: 1fr; }
  footer .brand { grid-column: auto; }
  .booking-dialog { width: 100%; }
  .booking-shell { padding: 25px 20px; }
  .booking-progress { margin: 25px 0 35px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-button { min-height: 112px; }
  .date-strip { overflow-x: auto; grid-template-columns: repeat(5, minmax(64px, 1fr)); }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .calendar-actions { grid-template-columns: 1fr; }
}

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