:root {
  --ink: #111111;
  --ink-soft: #272322;
  --paper: #f6f2eb;
  --paper-deep: #ebe4db;
  --white: #ffffff;
  --red: #99141a;
  --red-dark: #6d0d11;
  --grey: #706b66;
  --line: rgba(17, 17, 17, 0.18);
  --line-light: rgba(255, 255, 255, 0.24);
  --display: "Libre Caslon Display", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  padding-bottom: 66px;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #e8464f;
  outline-offset: 4px;
}

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

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

.site-header {
  align-items: center;
  background: rgba(246, 242, 235, 0.97);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: var(--header-height);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 40;
}

.brand-lockup {
  display: grid;
  gap: 0;
  line-height: 1.1;
  width: max-content;
}

.brand-lockup strong {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0;
}

.brand-lockup span {
  color: var(--red);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 3px;
  text-transform: uppercase;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  min-height: 42px;
  padding: 8px 14px;
  text-transform: uppercase;
}

.site-nav {
  align-content: start;
  background: var(--paper);
  bottom: 0;
  display: none;
  gap: 0;
  left: 0;
  padding: 28px 20px 100px;
  position: fixed;
  right: 0;
  top: var(--header-height);
  z-index: 39;
}

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

.site-nav a {
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.1;
  padding: 17px 0;
}

.site-header .header-book {
  display: none;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0;
  min-height: 50px;
  padding: 14px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-red {
  background: var(--red);
  color: var(--white);
}

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

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

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

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

.button-light:hover {
  background: var(--paper-deep);
}

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

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.eyebrow {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e67b80;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: 3rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 2.55rem;
  margin-bottom: 24px;
}

h1 em,
h2 em {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

.hero {
  background: #e7e5d7;
  display: grid;
  overflow: hidden;
  position: relative;
}

.hero-background {
  height: 400px;
  object-fit: cover;
  object-position: center bottom;
  order: 2;
  position: relative;
  width: 100%;
}

.hero-copy {
  align-content: center;
  background: #e7e5d7;
  display: grid;
  padding: 52px 20px 58px;
  position: relative;
  z-index: 1;
}

.hero-summary {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 18px;
  max-width: 590px;
}

.signature-line {
  border-left: 2px solid var(--red);
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 4px 0 28px;
  max-width: 520px;
  padding-left: 16px;
}

.action-row {
  display: grid;
  gap: 10px;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 10px;
  margin-top: 22px;
  text-transform: uppercase;
  width: max-content;
}

.text-link:hover {
  color: var(--red);
}

.hero-trust-mark {
  align-items: end;
  display: flex;
  gap: 12px;
  margin-top: 28px;
  width: max-content;
}

.hero-trust-mark img {
  height: auto;
  width: 84px;
}

.hero-trust-mark span {
  border-left: 1px solid rgba(17, 17, 17, 0.35);
  font-size: 0.62rem;
  font-weight: 700;
  padding-left: 12px;
  text-transform: uppercase;
}

@media (max-width: 699px) {
  .hero-copy > .signature-line,
  .hero-copy > .text-link {
    display: none;
  }

  .hero-trust-mark {
    margin-top: 22px;
  }
}

.trust-strip {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.trust-strip p {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  display: flex;
  font-size: 0.68rem;
  font-weight: 600;
  justify-content: center;
  margin: 0;
  min-height: 70px;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip .review-trust {
  color: var(--white);
  display: grid;
  gap: 3px;
}

.review-trust span,
.review-stars {
  color: #e67b80;
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.featured-review {
  background: var(--white);
  display: grid;
  gap: 12px;
  padding: 82px 20px;
}

.featured-review-mark {
  color: var(--red);
  font-family: var(--display);
  font-size: 7rem;
  height: 64px;
  line-height: 1;
}

.featured-review blockquote {
  margin: 0;
}

.featured-review blockquote > p {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.38;
  margin-bottom: 18px;
  max-width: 900px;
}

.featured-review footer,
.review-slide footer {
  display: grid;
  gap: 2px;
  margin-top: 26px;
}

.featured-review footer strong,
.review-slide footer strong {
  font-size: 0.84rem;
  text-transform: uppercase;
}

.featured-review footer span:not(.review-stars),
.review-slide footer span:not(.review-stars) {
  color: var(--grey);
  font-size: 0.76rem;
}

.inline-pullquote {
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 30px 0 0;
  padding-top: 18px;
}

.inline-pullquote cite,
.pillar-quote cite {
  color: var(--red);
  display: block;
  font-family: var(--body);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  margin-top: 8px;
  text-transform: uppercase;
}

.section {
  margin: 0 auto;
  max-width: 1240px;
  padding: 84px 20px;
  width: 100%;
}

.section-intro > p:not(.eyebrow):not(.fine-print) {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 580px;
}

.fine-print,
.section-disclaimer,
.supporting-copy,
.microcopy {
  color: var(--grey);
  font-size: 0.82rem;
}

.concierge {
  display: grid;
  gap: 48px;
}

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

.location-list li {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 34px 1fr;
  min-height: 70px;
}

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

.location-list span,
.service-list > article > span,
.pillar-grid article > span,
.process-list > li > span,
.lead-paths button > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
}

.location-list strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.services-section {
  background: var(--red-dark);
  color: var(--white);
  display: grid;
}

.services-image {
  min-height: 420px;
  overflow: hidden;
}

.services-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.services-content {
  padding: 70px 20px;
}

.services-content h2,
.process-section h2,
.testimonials-section h2,
.contact-section h2 {
  color: var(--white);
}

.services-content h2 em,
.process-section h2 em,
.testimonials-section h2 em,
.contact-section h2 em {
  color: #e67b80;
}

.service-list {
  margin: 36px 0;
}

.service-list article {
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 14px;
  grid-template-columns: 32px 1fr;
  padding: 24px 0;
}

.service-list article:last-child {
  border-bottom: 1px solid var(--line-light);
}

.service-list h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.service-list p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.services-content .section-disclaimer {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 18px;
  max-width: 620px;
}

.difference {
  display: grid;
  gap: 54px;
}

.difference-lead {
  display: grid;
  gap: 32px;
}

.difference-portrait {
  aspect-ratio: 4 / 5;
  margin: 0;
  max-height: 660px;
  overflow: hidden;
}

.difference-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
}

.difference-heading blockquote {
  border-left: 2px solid var(--red);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 32px 0 0;
  max-width: 560px;
  padding-left: 18px;
}

.pillar-grid {
  display: grid;
}

.pillar-grid article {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.pillar-grid article:last-child {
  border-bottom: 1px solid var(--line);
}

.pillar-grid h3 {
  margin: 8px 0 10px;
}

.pillar-grid p {
  color: var(--grey);
  margin: 0;
}

.pillar-quote {
  border-left: 1px solid var(--red);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 20px 0 0;
  padding-left: 14px;
}

.editorial-divider {
  background: var(--ink);
  color: var(--white);
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.editorial-divider::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.08));
  content: "";
  inset: 0;
  position: absolute;
}

.editorial-divider img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.editorial-divider > div {
  bottom: 36px;
  left: 20px;
  max-width: 620px;
  position: absolute;
  right: 20px;
  z-index: 1;
}

.editorial-divider p {
  font-family: var(--display);
  font-size: 2.45rem;
  line-height: 1;
  margin-bottom: 12px;
}

.editorial-divider span {
  color: rgba(255, 255, 255, 0.72);
}

.editorial-divider-subtle {
  min-height: 360px;
}

.editorial-divider-subtle img {
  opacity: 0.72;
}

.floral-divider {
  background: var(--red-dark);
  color: var(--white);
  min-height: 72svh;
  overflow: hidden;
  position: relative;
}

.floral-divider img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.floral-divider p {
  bottom: 36px;
  font-family: var(--display);
  font-size: 2.4rem;
  left: 20px;
  line-height: 1;
  margin: 0;
  max-width: 460px;
  position: absolute;
}

.floral-divider em {
  color: #f1c6c5;
  font-style: italic;
}

.results-intro {
  margin-bottom: 38px;
}

.results-grid {
  display: grid;
  gap: 30px;
}

.results-grid figure {
  background: var(--white);
  border: 1px solid var(--line);
  margin: 0;
}

.results-grid img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  width: 100%;
}

.results-grid figcaption {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding: 16px;
}

.results-grid figcaption strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
}

.results-grid figcaption span {
  color: var(--grey);
  font-size: 0.82rem;
}

.results > .section-disclaimer {
  margin-top: 20px;
}

.process-section {
  background: var(--ink);
  color: var(--white);
}

.process-inner {
  display: grid;
  gap: 42px;
}

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

.process-list li {
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 14px;
  grid-template-columns: 34px 1fr;
  padding: 22px 0;
}

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

.process-list h3 {
  color: var(--white);
  margin-bottom: 6px;
}

.process-list p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.editorial-conversions {
  background: var(--paper);
}

.conversion-feature {
  display: grid;
}

.conversion-image {
  min-height: 440px;
  overflow: hidden;
}

.conversion-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.partnership-portrait img {
  object-position: center 28%;
}

.conversion-copy {
  align-content: center;
  display: grid;
  padding: 70px 20px 84px;
}

.conversion-copy > p:not(.eyebrow):not(.supporting-copy):not(.microcopy) {
  color: var(--grey);
  font-size: 1.02rem;
  max-width: 610px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 26px;
  padding: 0;
}

.tag-list li {
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 11px;
  text-transform: uppercase;
}

.conversion-copy .button {
  margin-top: 18px;
  width: 100%;
}

.conversion-copy .microcopy {
  margin: 10px 0 0;
}

.testimonials-section {
  background: var(--red-dark);
  color: var(--white);
}

.testimonials-inner {
  display: grid;
  gap: 42px;
}

.testimonial-subhead {
  color: rgba(255, 255, 255, 0.7);
  margin: -8px 0 0;
  max-width: 520px;
}

.review-carousel {
  display: grid;
  gap: 16px;
  grid-auto-columns: minmax(84%, 1fr);
  grid-auto-flow: column;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.review-slide {
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 24px 8px 20px 0;
  scroll-snap-align: start;
}

.review-slide blockquote {
  font-family: var(--display);
  font-size: 1.42rem;
  line-height: 1.4;
  margin: 28px 0 0;
}

.review-slide footer {
  margin-top: auto;
}

.review-slide footer span:not(.review-stars) {
  color: rgba(255, 255, 255, 0.55);
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 0;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.25rem;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.carousel-controls button:hover {
  background: var(--white);
  color: var(--red-dark);
}

.testimonial-grid {
  display: grid;
}

.testimonial-grid blockquote {
  border-top: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.35;
  margin: 0;
  padding: 24px 0;
}

.testimonial-grid blockquote:last-child {
  border-bottom: 1px solid var(--line-light);
}

.about {
  display: grid;
  gap: 42px;
}

.about-portrait {
  background: var(--ink);
  max-height: 620px;
  overflow: hidden;
}

.about-portrait img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-copy {
  align-self: center;
}

.about-copy > p:not(.eyebrow):not(.signature-line) {
  color: var(--grey);
}

.contact-section {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 0;
  padding: 0;
}

.contact-photo {
  min-height: 520px;
  overflow: hidden;
}

.contact-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  width: 100%;
}

.contact-content {
  display: grid;
  gap: 48px;
  padding: 76px 20px 84px;
}

.contact-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}

.contact-intro .button {
  margin-top: 18px;
}

.lead-paths {
  display: grid;
}

.lead-paths button {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-light);
  cursor: pointer;
  display: grid;
  gap: 6px 14px;
  grid-template-columns: 32px 1fr;
  padding: 22px 0;
  text-align: left;
}

.lead-paths button:last-child {
  border-bottom: 1px solid var(--line-light);
}

.lead-paths strong,
.lead-paths small {
  grid-column: 2;
}

.lead-paths strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
}

.lead-paths small {
  color: rgba(255, 255, 255, 0.62);
}

.lead-paths button:hover strong {
  color: #e67b80;
}

.social-contact {
  background: var(--white);
  display: grid;
}

.social-contact > a,
.social-contact-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding: 24px 20px;
}

.social-contact span,
.social-contact-item > a span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.social-contact strong,
.social-contact-item > a strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.social-contact > a:hover,
.social-contact-item:hover {
  background: var(--paper-deep);
}

.email-contact {
  align-content: start;
  grid-template-columns: 1fr auto;
}

.email-contact > a {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.email-contact > a small {
  color: var(--grey);
  font-size: 0.74rem;
  overflow-wrap: anywhere;
}

.email-contact > button {
  align-self: center;
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  min-height: 44px;
  padding: 9px 12px;
  text-transform: uppercase;
}

.email-contact > button:hover {
  background: var(--ink);
  color: var(--white);
}

.copy-feedback {
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 700;
  grid-column: 1 / -1;
  min-height: 1em;
}

.site-footer {
  background: #080808;
  color: var(--white);
  display: grid;
  gap: 30px;
  padding: 54px 20px 90px;
}

.footer-identity,
.footer-location,
.footer-links {
  display: grid;
  gap: 4px;
}

.footer-trust-mark {
  align-content: start;
  display: grid;
  gap: 9px;
}

.footer-trust-mark img {
  height: auto;
  width: 116px;
}

.footer-trust-mark span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  max-width: 210px;
}

.footer-identity strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.footer-identity span,
.footer-location,
.footer-links {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.footer-links a:hover,
.footer-location a:hover {
  color: #e67b80;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  margin: 0;
  max-width: 800px;
}

.site-credit {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.68rem;
  margin: 0;
}

.mobile-action-bar {
  background: var(--white);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 45;
}

.mobile-action-bar a,
.mobile-action-bar button {
  align-items: center;
  background: var(--white);
  border: 0;
  cursor: pointer;
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  min-height: 60px;
  text-transform: uppercase;
}

.mobile-action-bar a {
  background: var(--red);
  color: var(--white);
}

.mobile-action-bar button {
  border-left: 1px solid var(--line);
}

.lead-dialog {
  background: var(--paper);
  border: 0;
  border-radius: 0;
  color: var(--ink);
  height: 100svh;
  margin: 0;
  max-height: none;
  max-width: none;
  overflow-y: auto;
  padding: 0;
  width: 100%;
}

.lead-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dialog-header {
  align-items: start;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 24px 20px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.dialog-header h2 {
  font-size: 2rem;
  margin: 0;
  max-width: 660px;
}

.dialog-header .eyebrow {
  margin-bottom: 8px;
}

.dialog-close {
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  min-height: 42px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 940px;
  padding: 34px 20px 72px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label,
.consent span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.form-field label span {
  color: var(--grey);
  font-weight: 500;
}

input,
select,
textarea {
  appearance: none;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 0;
  color: var(--ink);
  min-height: 52px;
  padding: 12px 13px;
  width: 100%;
}

select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 19px) 23px, calc(100% - 13px) 23px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 40px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(153, 20, 26, 0.18);
  outline-offset: 0;
}

input:user-invalid,
select:user-invalid,
textarea:user-invalid {
  border-color: var(--red);
}

[aria-invalid="true"] {
  border-color: var(--red);
  outline: 3px solid rgba(153, 20, 26, 0.18);
}

.consent {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 22px 1fr;
}

.consent input {
  appearance: auto;
  accent-color: var(--red);
  height: 20px;
  min-height: 20px;
  margin-top: 2px;
  width: 20px;
}

.consent span {
  line-height: 1.45;
  text-transform: none;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  color: var(--red-dark);
  display: grid;
  gap: 14px;
  font-weight: 700;
  margin: 0;
  min-height: 24px;
}

.form-status.is-success,
.form-status.is-error {
  border: 1px solid currentColor;
  padding: 16px;
}

.form-status.is-success {
  color: var(--ink);
}

.form-status .form-success-action {
  width: max-content;
}

.form-error-summary {
  color: var(--red-dark);
  font-weight: 700;
  min-height: 0;
}

.form-error-summary:not(:empty) {
  border: 1px solid var(--red);
  padding: 12px;
}

.honeypot {
  left: -9999px;
  position: absolute;
}

.chooser-dialog {
  height: auto;
  margin: auto;
  max-width: 620px;
  width: calc(100% - 24px);
}

.chooser-options {
  display: grid;
  padding: 20px;
}

.chooser-options button {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.35rem;
  min-height: 66px;
  padding: 14px 0;
  text-align: left;
}

.chooser-options button:last-child {
  border-bottom: 1px solid var(--line);
}

.chooser-options button:hover {
  color: var(--red);
}

@media (min-width: 700px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  .action-row {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-background {
    height: 520px;
    object-position: center 32%;
  }

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

  .featured-review {
    gap: 28px;
    grid-template-columns: 100px 1fr;
    padding: 96px 7vw;
  }

  .featured-review blockquote > p {
    font-size: 1.85rem;
  }

  .concierge,
  .difference,
  .process-inner,
  .testimonials-inner {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .difference-lead {
    gap: 52px;
  }

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

  .pillar-grid article:nth-child(odd),
  .testimonial-grid blockquote:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 24px;
  }

  .pillar-grid article:nth-child(even),
  .testimonial-grid blockquote:nth-child(even) {
    padding-left: 24px;
  }

  .testimonial-grid blockquote:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .review-carousel {
    grid-auto-columns: minmax(45%, 1fr);
  }

  .editorial-divider {
    min-height: 520px;
  }

  .editorial-divider > div {
    bottom: 60px;
    left: 7vw;
  }

  .editorial-divider p {
    font-size: 3.8rem;
  }

  .floral-divider {
    min-height: 760px;
  }

  .floral-divider p {
    bottom: 64px;
    font-size: 4rem;
    left: 7vw;
  }

  .conversion-feature,
  .about {
    grid-template-columns: 1fr 1fr;
  }

  .conversion-feature-reverse .conversion-image {
    order: 2;
  }

  .conversion-copy {
    padding: 84px 7vw;
  }

  .conversion-copy .button {
    width: max-content;
  }

  .contact-content {
    grid-template-columns: 0.82fr 1.18fr;
    padding: 96px 7vw;
  }

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

  .social-contact a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 64px 7vw 90px;
  }

  .footer-disclaimer,
  .site-credit {
    grid-column: 1 / -1;
  }

  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 46px 28px 80px;
  }

  .form-field-wide,
  .form-error-summary,
  .honeypot {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1020px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 12px 5vw;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    align-items: center;
    background: transparent;
    display: flex;
    gap: 22px;
    justify-self: center;
    padding: 0;
    position: static;
  }

  .site-nav a {
    border: 0;
    font-family: var(--body);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 8px 0;
    text-transform: uppercase;
  }

  .site-nav a:hover {
    color: var(--red);
  }

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

  .site-header .header-book {
    display: inline-flex;
    min-height: 44px;
  }

  .hero {
    display: block;
    min-height: calc(100svh - var(--header-height));
  }

  .hero-background {
    height: 100%;
    inset: 0;
    object-position: center center;
    position: absolute;
  }

  .hero-copy {
    background: transparent;
    max-width: 720px;
    min-height: calc(100svh - var(--header-height));
    padding: 86px 6vw;
  }

  .hero-background {
    object-position: center center;
  }

  .hero-summary {
    max-width: 520px;
  }

  .section {
    padding: 118px 5vw;
  }

  .services-section {
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 820px;
  }

  .services-content {
    align-content: center;
    display: grid;
    padding: 100px 7vw;
  }

  .conversion-feature {
    min-height: 820px;
  }

  .contact-section {
    grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1.2fr);
    min-height: 920px;
  }

  .contact-content {
    align-content: center;
    grid-template-columns: 1fr;
    padding: 96px 7vw;
  }

  .about {
    gap: 7vw;
  }

  .social-contact {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer {
    grid-template-columns: repeat(4, 1fr);
  }

  .social-contact > a,
  .social-contact-item {
    border-right: 1px solid var(--line);
    min-height: 130px;
  }

  .social-contact > :last-child {
    border-right: 0;
  }

  .mobile-action-bar {
    display: none;
  }

  .lead-dialog {
    height: min(900px, calc(100svh - 48px));
    margin: auto;
    max-width: 1000px;
    width: calc(100% - 48px);
  }

  .dialog-header {
    padding: 28px 36px;
  }

  .dialog-header h2 {
    font-size: 2.6rem;
  }
}

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