:root {
  --ink: #2b1e26;
  --muted: #705f68;
  --wine: #4a2338;
  --wine-dark: #351827;
  --cream: #fffaf5;
  --paper: #f7efe8;
  --peach: #eab09d;
  --peach-soft: #f6ded4;
  --line: #dfd1ca;
  --white: #fff;
  --green: #355c50;
  --shadow: 0 26px 70px rgb(74 35 56 / 13%);
  --radius: 26px;
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

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

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 7vw, 6.25rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 5vw, 4.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.3;
}

section {
  scroll-margin-top: 100px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--wine);
  color: var(--white);
  transform: translateY(-150%);
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--peach);
  content: "";
}

.status-pill,
.credential {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgb(74 35 56 / 18%);
  border-radius: 999px;
  background: rgb(255 255 255 / 72%);
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 700;
}

.status-pill::before,
.credential::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--peach);
  content: "";
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #af5943;
  outline-offset: 5px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--wine);
  box-shadow: 0 12px 30px rgb(74 35 56 / 22%);
  color: var(--white);
}

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

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

.button-link {
  min-height: 48px;
  padding-inline: 4px;
  background: transparent;
  color: var(--wine);
}

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

.button-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(74 35 56 / 9%);
  background: rgb(255 250 245 / 96%);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: none;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgb(74 35 56 / 8%));
}

.brand-text {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.33rem;
  line-height: 1;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a:not(.button) {
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  overflow: hidden;
  padding: 58px 0 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 68px;
}

.lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.22rem);
}

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

.microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.875rem;
}

.microcopy svg {
  width: 17px;
  color: var(--green);
}

.portrait-placeholder {
  position: relative;
  display: flex;
  min-height: 600px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgb(74 35 56 / 8%);
  border-radius: 220px 220px 28px 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.portrait-placeholder::before,
.portrait-placeholder::after {
  position: absolute;
  border-radius: 50%;
  background: var(--peach-soft);
  content: "";
}

.portrait-placeholder::before {
  top: 76px;
  right: -92px;
  width: 300px;
  height: 300px;
}

.portrait-placeholder::after {
  bottom: 80px;
  left: -60px;
  width: 180px;
  height: 180px;
}

.portrait-inner {
  position: relative;
  z-index: 2;
  max-width: 270px;
  text-align: center;
}

.portrait-icon {
  display: grid;
  width: 108px;
  height: 108px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px dashed var(--wine);
  border-radius: 50%;
  color: var(--wine);
}

.portrait-icon svg {
  width: 42px;
}

.portrait-inner strong {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.05;
}

.portrait-inner > span:last-child {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.portrait-note {
  position: absolute;
  bottom: 26px;
  left: 26px;
  z-index: 3;
  padding: 15px 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 40px rgb(74 35 56 / 14%);
  font-size: 0.875rem;
  font-weight: 700;
}

.portrait-note small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 500;
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 25px 30px;
  text-align: left;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--peach-soft);
  color: var(--wine);
}

.trust-icon svg {
  width: 19px;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 0.94rem;
}

.trust-item small {
  color: var(--muted);
  font-size: 0.8rem;
}

.intro {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.intro p,
.about-copy > p,
.service-copy > p,
.reviews-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.step {
  min-height: 0;
  padding: 28px 18px 22px;
  border-top: 1px solid var(--line);
}

.step-number {
  margin-bottom: 28px;
  color: var(--peach);
  font-family: "Newsreader", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.video-section {
  background: var(--wine);
  color: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.video-placeholder {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border-radius: 32px;
  background: radial-gradient(circle at 18% 25%, rgb(234 176 157 / 32%), transparent 30%), linear-gradient(145deg, #765165 0%, #4a2338 55%, #2b1e26 100%);
  box-shadow: 0 28px 60px rgb(24 8 18 / 34%);
}

.video-placeholder-copy {
  width: min(75%, 420px);
  text-align: center;
}

.video-placeholder-copy > span {
  display: block;
  margin-bottom: 16px;
  color: var(--peach);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-placeholder-copy strong {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.02;
}

.video-placeholder-copy small {
  display: block;
  margin-top: 18px;
  color: #eadde4;
  font-size: 0.95rem;
  line-height: 1.55;
}

.video-label {
  position: absolute;
  bottom: 20px;
  left: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--white);
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 700;
}

.video-copy .eyebrow,
.closing-card .eyebrow {
  color: var(--peach);
}

.video-copy p,
.closing-card p {
  color: #eadde4;
  font-size: 1.08rem;
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  margin: 14px 0;
}

.check-list svg {
  width: 19px;
  flex: none;
  color: var(--peach);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 90px;
}

.about-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 42px;
  border-radius: 30px;
  background: var(--peach-soft);
}

.about-card::before {
  position: absolute;
  top: -35px;
  right: -6px;
  color: rgb(74 35 56 / 8%);
  content: "B";
  font-family: "Newsreader", Georgia, serif;
  font-size: 16rem;
  line-height: 1;
}

.about-card .portrait-icon {
  position: relative;
  margin: 0 0 auto;
  background: rgb(255 255 255 / 50%);
}

.about-card strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.about-card > span:last-child {
  margin-top: 8px;
  color: var(--muted);
}

blockquote {
  margin: 30px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--peach);
  color: var(--wine);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.25;
}

.credential {
  margin-bottom: 0;
  font-size: 0.8rem !important;
}

.service-section {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 58px;
}

.service-copy {
  position: sticky;
  top: 120px;
}

.zone-pricing {
  margin: 28px 0;
}

.zone-pricing > div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.zone-pricing > div > strong {
  font-size: 1.05rem;
}

.zone-pricing b {
  float: right;
  color: var(--wine);
  font-size: 1.35rem;
}

.zone-pricing p {
  margin: 10px 0;
  font-size: 0.95rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.small-copy {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.service-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.price-row h3 {
  max-width: 330px;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
}

.price {
  color: var(--wine);
  font-family: "Newsreader", Georgia, serif;
  font-size: 4.2rem;
  line-height: 0.9;
  white-space: nowrap;
}

.price small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.included {
  margin: 0 0 26px;
  padding: 12px 0;
  list-style: none;
}

.included li {
  display: flex;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid #eee5df;
}

.included span {
  color: var(--green);
  font-weight: 700;
}

.service-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
  text-align: center;
}

.models-section {
  padding-bottom: 86px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.model-slot {
  min-height: 205px;
  padding: 30px 20px;
  border: 1px dashed #bca9b2;
  border-radius: 22px;
  background: var(--paper);
  text-align: center;
}

.model-slot span,
.model-slot strong,
.model-slot small {
  display: block;
}

.model-slot span {
  margin-bottom: 24px;
  color: var(--muted);
  font-family: "Newsreader", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.model-slot small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.centered {
  margin-top: 24px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 28px;
}

.reviews-copy {
  padding: 26px 10px 26px 0;
}

.review-placeholder {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff 0%, #fbf4ee 100%);
}

.review-placeholder h3,
.review-placeholder p {
  position: relative;
  z-index: 1;
  max-width: 360px;
}

.review-placeholder p {
  color: var(--muted);
}

.review-quote {
  position: absolute;
  top: -44px;
  right: 28px;
  color: var(--peach-soft);
  font-family: "Newsreader", Georgia, serif;
  font-size: 11rem;
  line-height: 1;
}

.faq-section {
  padding-top: 40px;
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 44px 24px 0;
  color: var(--muted);
}

.closing {
  padding: 120px 0 100px;
}

.closing-card {
  position: relative;
  overflow: hidden;
  padding: 76px;
  border-radius: 38px;
  background: var(--wine);
  color: var(--white);
}

.closing-card::after {
  position: absolute;
  top: -85px;
  right: -65px;
  width: 330px;
  height: 330px;
  border: 1px solid rgb(244 198 183 / 35%);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgb(244 198 183 / 6%), 0 0 0 72px rgb(244 198 183 / 4%);
  content: "";
}

.closing-card h2,
.closing-card p,
.closing-actions {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

footer {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

footer strong {
  color: var(--ink);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.mobile-reserve {
  display: none;
}

dialog {
  width: min(650px, calc(100% - 32px));
  padding: 34px;
  border: 0;
  border-radius: 28px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 30px 100px rgb(0 0 0 / 35%);
}

dialog::backdrop {
  background: rgb(36 20 30 / 66%);
  backdrop-filter: blur(5px);
}

dialog h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.dialog-close {
  display: grid;
  width: 43px;
  height: 43px;
  flex: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  nav a:not(.button) {
    display: none;
  }

  .hero-grid,
  .video-grid,
  .about-grid,
  .service-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-grid {
    gap: 45px;
  }

  .portrait-placeholder {
    min-height: 520px;
  }

  .trust-item {
    padding: 22px 16px;
  }

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

  .video-grid,
  .about-grid {
    gap: 42px;
  }

  .about-card {
    min-height: 400px;
  }

  .service-copy {
    position: static;
  }

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

  .closing-card {
    padding: 54px 40px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 72px;
  }

  .brand-text small,
  .nav nav {
    display: none;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 1.35rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.72rem;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .portrait-placeholder {
    min-height: 430px;
    border-radius: 150px 150px 24px 24px;
  }

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

  .trust-item {
    justify-content: flex-start;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .video-placeholder {
    aspect-ratio: 16 / 10;
  }

  .video-placeholder-copy small {
    display: none;
  }

  .video-label {
    bottom: 12px;
    left: 12px;
    padding: 6px 9px;
    font-size: 0.75rem;
  }

  .about-card {
    min-height: 360px;
    padding: 30px;
  }

  .service-card {
    padding: 28px 22px;
  }

  .price-row {
    flex-wrap: wrap;
    align-items: start;
  }

  .price-row h3 {
    font-size: 1.55rem;
  }

  .price {
    font-size: 3rem;
  }

  .model-slot {
    min-height: 190px;
    padding: 25px 10px;
  }

  .review-placeholder {
    padding: 30px;
  }

  .closing {
    padding: 80px 0;
  }

  .closing-card {
    padding: 45px 26px;
    border-radius: 28px;
  }

  .closing-actions {
    display: grid;
  }

  .footer-grid {
    display: block;
  }

  .footer-links {
    margin-top: 22px;
  }

  footer {
    padding-bottom: 125px;
  }

  .mobile-reserve {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 18px calc(11px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: var(--cream);
  }

  .mobile-reserve strong,
  .mobile-reserve small {
    display: block;
  }

  .mobile-reserve strong {
    color: var(--wine);
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .mobile-reserve small {
    color: var(--muted);
    font-size: 0.8rem;
  }

  .mobile-reserve .button {
    min-height: 46px;
    padding: 11px 24px;
  }

  dialog {
    padding: 26px 20px;
    border-radius: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
