:root {
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f7f7f4;
  --paper: #ffffff;
  --ink: #0d0d0d;
  --muted: #5f5f5a;
  --soft: #eeeeea;
  --line: #d8d8d2;
  --line-strong: #0d0d0d;
  --inverse: #f8f8f4;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.035) 1px, transparent 1px) 0 0 / 8rem 8rem,
    linear-gradient(180deg, rgba(13, 13, 13, 0.035) 1px, transparent 1px) 0 0 / 8rem 8rem,
    var(--bg);
}

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: 1rem;
  min-height: 4.7rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.75rem);
  border-bottom: 1px solid rgba(13, 13, 13, 0.14);
  background: rgba(247, 247, 244, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.8rem;
}

.brand img {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  object-fit: contain;
}

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

.brand strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.top-nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 860;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.button:hover,
.button:focus-visible {
  background: var(--ink);
  color: var(--inverse);
  outline: none;
  transform: translateY(-1px);
}

.admin-link,
.button--primary {
  background: var(--ink) !important;
  color: var(--inverse) !important;
}

.admin-link:hover,
.admin-link:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
  background: transparent !important;
  color: var(--ink) !important;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(43rem, calc(100vh - 4.7rem));
  padding: clamp(4rem, 8vw, 7.2rem) clamp(1rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(247, 247, 244, 0.98) 0%, rgba(247, 247, 244, 0.9) 48%, rgba(247, 247, 244, 0.42) 76%),
    radial-gradient(circle at 80% 42%, rgba(13, 13, 13, 0.12), transparent 22rem),
    #f3f3ef;
}

.hero::after {
  position: absolute;
  right: clamp(1rem, 6vw, 5rem);
  bottom: clamp(1rem, 5vw, 3rem);
  width: min(34rem, 54vw);
  height: min(34rem, 54vw);
  content: "";
  border: 1px solid rgba(13, 13, 13, 0.18);
  border-radius: 50%;
}

.hero__media {
  position: absolute;
  right: clamp(1rem, 7vw, 8rem);
  top: 52%;
  z-index: 1;
  width: min(21rem, 34vw);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero__photo {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background:
    linear-gradient(135deg, #fff, #ecece6),
    var(--paper);
  box-shadow: var(--shadow);
}

.hero__photo img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  align-self: end;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 920;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 950;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4vw, 4.15rem);
  font-weight: 930;
}

h3 {
  font-size: 1.05rem;
  font-weight: 900;
}

.hero__copy p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.booking-band p,
.service-list p,
.intro-strip p,
.contact-form .form-status,
.location-facts dd {
  color: var(--muted);
  line-height: 1.68;
}

.hero__copy p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.2rem 0 1.6rem;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.intro-strip,
.location-panel,
.section-grid,
.booking-band,
footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: -3rem;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.intro-strip article {
  min-height: 12rem;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  background: rgba(255, 255, 255, 0.96);
}

.intro-strip span {
  display: inline-flex;
  margin-bottom: 1.15rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 920;
}

.intro-strip strong {
  display: block;
  font-size: 1.08rem;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.15fr) auto;
  gap: clamp(1rem, 4vw, 2rem);
  align-items: stretch;
  margin-top: clamp(4rem, 8vw, 6rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
}

.location-panel h2 {
  max-width: 8ch;
  font-size: clamp(1.9rem, 3.4vw, 3.3rem);
}

.location-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.location-facts div {
  min-height: 6.2rem;
  padding: 1rem;
  background: #fff;
}

.location-facts dt {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 920;
  text-transform: uppercase;
}

.location-facts dd {
  margin: 0;
  font-weight: 740;
}

.location-facts a,
.phone-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.map-link {
  display: grid;
  min-width: 10rem;
  padding: 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--inverse);
  place-content: space-between;
}

.map-link span {
  font-size: 0.86rem;
  font-weight: 900;
}

.map-link strong {
  margin-top: 2.5rem;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: 0.92;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(4rem, 8vw, 7rem) 0 0;
}

.section-copy {
  position: sticky;
  top: 6rem;
}

.section-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 1.02rem;
}

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

.service-list article,
.contact-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
}

.service-list article {
  position: relative;
  min-height: 14rem;
  padding: 1.35rem;
  overflow: hidden;
}

.service-list article::after {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  color: rgba(13, 13, 13, 0.12);
  content: "BP";
  font-size: 3.8rem;
  font-weight: 950;
}

.service-list article:nth-child(2),
.service-list article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(13, 13, 13, 0.055), rgba(255, 255, 255, 0) 44%),
    #fff;
}

.service-list p {
  margin: 0.65rem 0 0;
}

.booking-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--inverse);
}

.booking-band .eyebrow,
.booking-band h2,
.booking-band p {
  color: var(--inverse);
}

.booking-band h2 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.booking-band p {
  max-width: 43rem;
  margin: 0.75rem 0 0;
  opacity: 0.78;
}

.booking-band .button {
  min-width: 11rem;
  border-color: var(--inverse);
  background: var(--inverse) !important;
  color: var(--ink) !important;
}

.booking-band .button:hover,
.booking-band .button:focus-visible {
  background: transparent !important;
  color: var(--inverse) !important;
}

.section-grid--contact {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.contact-card {
  display: grid;
  gap: 0.45rem;
  width: min(100%, 28rem);
  margin-top: 1.3rem;
  padding: 1rem;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.phone-link {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 930;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0.82rem 0.9rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  outline: 3px solid rgba(13, 13, 13, 0.14);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.92rem;
  white-space: pre-wrap;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

footer span {
  color: var(--ink);
  font-weight: 880;
}

footer a {
  font-weight: 820;
}

@media (max-width: 980px) {
  .location-panel {
    grid-template-columns: 1fr;
  }

  .map-link {
    min-height: 11rem;
  }
}

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

  .top-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 44rem;
    padding-top: 3rem;
  }

  .hero__media {
    right: 1rem;
    top: auto;
    bottom: 1.4rem;
    width: min(15rem, 48vw);
    transform: none;
  }

  h1 {
    max-width: 11ch;
  }

  .intro-strip,
  .section-grid,
  .service-list,
  .location-facts {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .booking-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
  }

  .brand img {
    width: 2.6rem;
    height: 2.6rem;
  }

  .top-nav a,
  .button {
    min-height: 2.45rem;
    padding-inline: 0.82rem;
    font-size: 0.87rem;
  }

  .hero {
    min-height: 43rem;
    padding-inline: 1rem;
  }

  .hero__copy p:not(.eyebrow) {
    max-width: 100%;
  }

  .hero__media {
    opacity: 0.65;
  }

  .actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 19rem;
  }

  .intro-strip {
    margin-top: -1.2rem;
  }

  .intro-strip article,
  .service-list article {
    min-height: auto;
  }

  .contact-form .button {
    width: 100%;
  }
}
