:root {
  --ink: #1c1b18;
  --ink-soft: #625a52;
  --cream: #f4efea;
  --cream-light: #f4efea;
  --cream-deep: #dccdba;
  --sand: #dccdba;
  --taupe: #a38f7a;
  --warm-grey: #b7ada0;
  --bronze: #c7a97d;
  --bronze-light: #dccdba;
  --green: #7a8b6f;
  --line: rgba(23, 19, 15, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(58, 42, 28, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--bronze-light);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(23, 19, 15, 0.08);
  background: rgba(244, 239, 234, 0.96);
  backdrop-filter: blur(14px);
}

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

.wordmark {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 8px;
  text-decoration: none;
  line-height: 1;
}

.wordmark > span:not(.wordmark-star) {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.2em;
}

.wordmark small {
  grid-column: 2;
  margin-top: 5px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.42em;
}

.wordmark-star {
  grid-row: 1 / 3;
  color: var(--bronze);
  font-size: 17px;
}

.header-logo {
  width: 142px;
  height: 90px;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.header-logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  position: relative;
  color: #423b35;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-book)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--bronze);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-book):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-book {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  transition: 180ms ease;
}

.site-nav .nav-book:hover {
  color: var(--cream-light);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 9% 8%, rgba(197, 167, 124, 0.16), transparent 27%),
    linear-gradient(135deg, var(--cream) 0%, var(--sand) 160%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  padding-block: 82px 92px;
}

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

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(154, 113, 61, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 690px;
  height: 690px;
  top: -240px;
  right: -120px;
}

.hero-orbit-two {
  width: 460px;
  height: 460px;
  right: 40px;
  bottom: -230px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(52px, 6.3vw, 88px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--bronze);
  font-weight: 400;
}

h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions,
.social-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--cream-light);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--green);
}

.button-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button-outline-dark:hover {
  color: var(--cream-light);
  background: var(--ink);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button-light:hover {
  color: var(--ink);
  background: var(--cream-light);
}

.button-cream {
  color: var(--ink);
  background: var(--cream-light);
}

.button-cream:hover {
  color: var(--cream-light);
  background: var(--bronze);
}

.text-link {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero-note {
  margin: 26px 0 0;
  color: #6a6058;
  font-size: 13px;
}

.hero-note span {
  margin-right: 7px;
  color: var(--bronze);
}

.hero-mark {
  position: relative;
}

.logo-frame {
  overflow: visible;
  display: block;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.logo-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  object-fit: contain;
}

.floating-card {
  position: absolute;
  min-width: 190px;
  padding: 16px 19px;
  border: 1px solid rgba(154, 113, 61, 0.22);
  background: rgba(255, 250, 246, 0.95);
  box-shadow: 0 16px 40px rgba(58, 42, 28, 0.1);
  backdrop-filter: blur(8px);
}

.floating-card span,
.detail-block > span {
  display: block;
  margin-bottom: 5px;
  color: var(--bronze);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.floating-card strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.floating-card-top {
  top: 10%;
  right: -34px;
}

.floating-card-bottom {
  bottom: -3%;
  left: -28px;
}

.trust-strip {
  color: var(--cream);
  background: var(--ink);
}

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

.trust-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 26px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid span {
  color: var(--bronze-light);
  font-family: var(--serif);
  font-size: 15px;
}

.trust-grid p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(80px, 10vw, 140px);
}

.intro {
  background: var(--cream-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 130px);
}

.intro h2 {
  max-width: 540px;
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 33px;
  border-top: 1px solid var(--line);
}

.intro-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.services-section {
  background: color-mix(in srgb, var(--sand) 45%, var(--cream));
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

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

.pricing-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
  padding: 25px clamp(24px, 4vw, 38px);
  border: 1px solid rgba(122, 139, 111, 0.42);
  background: rgba(244, 239, 234, 0.78);
}

.pricing-notice-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cream-light);
  background: var(--green);
  font-size: 18px;
}

.pricing-notice h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.pricing-notice p {
  max-width: 940px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

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

.service-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(23, 19, 15, 0.12);
  background: rgba(255, 250, 246, 0.72);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(58, 42, 28, 0.08);
}

.service-card-featured {
  color: var(--cream-light);
  background: var(--ink);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.service-kicker {
  color: var(--bronze);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card-featured .service-kicker {
  color: var(--bronze-light);
}

.price {
  font-family: var(--serif);
  font-size: 27px;
}

.service-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 43px);
  font-weight: 400;
  line-height: 1.05;
}

.service-card p {
  max-width: 580px;
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.service-card-featured p {
  color: rgba(255, 250, 246, 0.72);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: auto;
  margin-bottom: 21px;
  color: #766b62;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-featured .service-meta {
  color: rgba(255, 250, 246, 0.6);
}

.service-card > a {
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card > a span {
  margin-left: 6px;
}

.menu-columns {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  margin-top: 18px;
}

.menu-panel {
  padding: clamp(28px, 4vw, 44px);
  background: var(--cream-light);
}

.menu-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.menu-title span {
  color: var(--bronze);
}

.menu-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding-block: 16px;
  border-bottom: 1px solid rgba(23, 19, 15, 0.08);
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list strong {
  display: block;
  font-size: 14px;
}

.price-list span {
  display: block;
  margin-top: 3px;
  color: #766c64;
  font-size: 12px;
}

.price-list b {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.price-book {
  padding: 7px 0 5px 12px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-book span {
  display: inline;
  margin: 0 0 0 4px;
  color: var(--bronze);
  font-size: inherit;
}

.price-book:hover {
  color: var(--green);
}

.menu-note {
  margin-top: 28px;
  padding: 28px;
  color: var(--cream-light);
  background: var(--green);
}

.menu-note p {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 24px;
}

.menu-note span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 250, 246, 0.75);
  font-size: 13px;
}

.appointment-prep {
  margin-top: 18px;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(23, 19, 15, 0.12);
  background: rgba(255, 250, 246, 0.8);
}

.prep-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: end;
  gap: clamp(28px, 6vw, 76px);
  margin-bottom: 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.prep-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 58px);
}

.prep-heading > p {
  max-width: 510px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

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

.prep-item {
  min-height: 210px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(23, 19, 15, 0.09);
  background: rgba(244, 239, 234, 0.58);
}

.prep-number {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 14px;
}

.prep-item h3 {
  margin: 2px 0 11px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.55;
  text-transform: uppercase;
}

.prep-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.prep-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 12px;
  padding: 26px 30px;
  color: var(--cream-light);
  background: var(--green);
}

.prep-help span {
  font-family: var(--serif);
  font-size: 22px;
}

.prep-help p {
  margin: 2px 0 0;
  color: rgba(255, 250, 246, 0.72);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.prep-help > a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 250, 246, 0.65);
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.prep-help > a span {
  margin-left: 6px;
  font-family: inherit;
  font-size: inherit;
}

.social-feature {
  overflow: hidden;
  color: var(--cream-light);
  background: var(--ink);
}

.social-inner {
  padding-block: clamp(80px, 10vw, 130px);
}

.social-copy {
  max-width: 760px;
  padding: 0 0 52px;
}

.social-copy h2 {
  max-width: 650px;
}

.social-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 250, 246, 0.68);
  font-size: 17px;
}

.social-actions a {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.social-actions a:hover {
  color: var(--bronze-light);
}

.artistry-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.artistry-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #292722;
}

.artistry-gallery img {
  width: 100%;
  height: auto;
  transition: transform 300ms ease;
}

.artistry-gallery figcaption {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 18px 14px;
  color: var(--cream-light);
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.15;
  text-align: center;
}

.artistry-gallery figcaption span {
  color: var(--bronze-light);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.artistry-gallery figure:hover img {
  transform: scale(1.015);
}

.visit-section {
  background: var(--cream-light);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(55px, 10vw, 150px);
}

.visit-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 17px;
}

.visit-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  border-top: 1px solid var(--line);
}

.detail-block {
  min-height: 155px;
  padding: 28px 20px 28px 0;
  border-bottom: 1px solid var(--line);
}

.detail-block:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.detail-block:nth-child(even) {
  padding-left: 28px;
}

.detail-block:last-child {
  grid-column: 1 / -1;
  border-right: 0;
}

.detail-block p {
  margin: 0;
  color: #49413a;
}

.detail-block a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.detail-block small {
  color: #7d7168;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 150px);
  color: var(--cream-light);
  background: var(--green);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  width: 520px;
  height: 520px;
  top: -350px;
  left: -160px;
}

.final-cta::after {
  width: 390px;
  height: 390px;
  right: -130px;
  bottom: -270px;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  color: rgba(255, 250, 246, 0.7);
}

.final-cta h2 {
  margin-bottom: 18px;
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgba(255, 250, 246, 0.78);
}

.site-footer {
  padding-block: 65px 25px;
  color: rgba(255, 250, 246, 0.78);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 55px;
}

.wordmark-footer {
  color: var(--cream-light);
}

.footer-logo {
  width: 180px;
  display: block;
}

.footer-logo img {
  width: 100%;
  height: auto;
  filter: invert(1) grayscale(1) brightness(1.8);
}

.footer-brand p {
  margin: 22px 0 0;
  color: rgba(255, 250, 246, 0.5);
  font-size: 13px;
  line-height: 1.8;
}

.footer-links,
.footer-social {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.footer-links a,
.footer-social a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--bronze-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 250, 246, 0.38);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

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

  .hero-mark {
    width: min(620px, calc(100% - 30px));
    margin: 0 auto;
  }

  .logo-frame img {
    min-height: auto;
  }

  .intro-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 28px;
  }

  .menu-columns {
    grid-template-columns: 1fr;
  }

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

  .prep-heading > p {
    max-width: none;
  }

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

  .social-copy {
    padding: 0 0 42px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .site-header {
    background: #f4efea;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

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

  .header-logo {
    width: 112px;
    height: 72px;
  }

  .header-logo img {
    width: 100%;
    transform: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 1001;
    top: 70px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 30px 22px;
    background: #f4efea;
    box-shadow: 0 20px 45px rgba(28, 27, 24, 0.16);
    opacity: 1;
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav .nav-book {
    margin-top: 20px;
    padding: 16px;
    color: var(--cream-light);
    background: var(--ink);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    gap: 55px;
    padding-block: 55px 75px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .hero-lede {
    font-size: 16px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    text-align: center;
  }

  .floating-card {
    min-width: 155px;
    padding: 12px 14px;
  }

  .floating-card-top {
    right: -12px;
  }

  .floating-card-bottom {
    left: -12px;
  }

  .floating-card strong {
    font-size: 14px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    padding: 20px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-notice {
    grid-template-columns: 1fr;
  }

  .signature-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .prep-heading,
  .prep-grid {
    grid-template-columns: 1fr;
  }

  .prep-item {
    min-height: 0;
  }

  .prep-help {
    align-items: flex-start;
    flex-direction: column;
  }

  .artistry-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .visit-details {
    grid-template-columns: 1fr;
  }

  .detail-block,
  .detail-block:nth-child(even) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
  }

  .detail-block:last-child {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .wordmark > span:not(.wordmark-star) {
    font-size: 21px;
  }

  .hero-mark {
    width: 100%;
  }

  .logo-frame {
    padding: 0;
    border-radius: 0;
  }

  .floating-card-top {
    top: 4%;
  }

  .floating-card-bottom {
    bottom: -4%;
  }

  .price-list li {
    gap: 12px;
  }

  .social-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

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

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

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