:root {
  --wine: #621027;
  --wine-dark: #350613;
  --wine-light: #8b2841;
  --gold: #e9a83e;
  --gold-light: #f6ce7e;
  --cream: #fff7eb;
  --paper: #fffdf9;
  --peach: #f6ddca;
  --ink: #41111f;
  --muted: #76525d;
  --line: #ead5c9;
  --shadow: 0 24px 65px rgba(77, 8, 29, 0.13);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(235, 214, 202, 0.72);
  padding: 14px clamp(22px, 5vw, 78px);
  background: rgba(255, 253, 249, 0.93);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.site-brand img {
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  border-radius: 15px 15px 15px 5px;
  object-fit: cover;
  object-position: 50% 18%;
  box-shadow: 0 8px 20px rgba(78, 7, 29, 0.16);
}

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

.site-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
}

.site-brand small {
  margin-top: 4px;
  color: #93606d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 35px);
}

.site-nav a {
  color: #68414c;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

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

.site-nav .nav-login {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.site-nav .nav-cta {
  border-radius: 12px;
  padding: 12px 17px;
  background: var(--wine);
  color: white;
  box-shadow: 0 9px 22px rgba(98, 16, 39, 0.16);
}

.site-nav .nav-cta:hover {
  background: var(--wine-dark);
  color: white;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.menu-button i {
  display: block;
  width: 17px;
  height: 2px;
  margin: 2px 0;
  border-radius: 99px;
  background: var(--wine);
}

.overline {
  margin: 0 0 13px;
  color: #a66a44;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.overline.light {
  color: var(--gold-light);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

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

.button-gold {
  background: linear-gradient(135deg, #f2bc59, #dc9430);
  color: #3a0b18;
  box-shadow: 0 16px 35px rgba(229, 157, 52, 0.24);
}

.button-burgundy {
  background: var(--wine);
  color: white;
  box-shadow: 0 14px 30px rgba(98, 16, 39, 0.18);
}

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

.full-button {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  min-height: 730px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  background:
    radial-gradient(circle at 15% 20%, rgba(150, 47, 72, 0.42), transparent 31%),
    linear-gradient(135deg, #5d0d25 0%, #3c0716 58%, #27030d 100%);
  color: white;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-glow {
  position: absolute;
  border: 1px solid rgba(244, 190, 91, 0.25);
  border-radius: 50%;
}

.hero-glow-one {
  top: -280px;
  right: -80px;
  width: 800px;
  height: 800px;
}

.hero-glow-two {
  right: 20%;
  bottom: -420px;
  width: 650px;
  height: 650px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(690px, 100%);
  align-self: center;
  justify-self: end;
  padding: 85px 38px 92px clamp(28px, 6vw, 95px);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.hero h1 em,
.section-heading h2 em,
.demo-copy h2 em,
.audience-section h2 em {
  color: var(--gold-light);
  font-weight: inherit;
}

.hero-lead {
  max-width: 640px;
  margin: 27px 0 29px;
  color: #f3dfe3;
  font-size: 16px;
  line-height: 1.7;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.light-link {
  color: #f2dfe3;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 33px;
}

.hero-points span {
  color: #e7cfd5;
  font-size: 10px;
}

.hero-points i {
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-right: 6px;
  place-items: center;
  border: 1px solid rgba(244, 190, 91, 0.65);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 9px;
  font-style: normal;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.portrait-frame {
  position: absolute;
  top: 45px;
  right: clamp(28px, 5vw, 82px);
  bottom: 0;
  left: 10px;
  overflow: hidden;
  border: 1px solid rgba(244, 190, 91, 0.42);
  border-bottom: 0;
  border-radius: 280px 280px 0 0;
  background: #601127;
  box-shadow: 0 0 0 18px rgba(235, 171, 68, 0.05);
}

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

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(49, 4, 17, 0.42), transparent 38%);
  content: "";
}

.hero-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(66, 5, 22, 0.77);
  box-shadow: 0 25px 55px rgba(24, 1, 8, 0.3);
  backdrop-filter: blur(15px);
}

.hero-card-top {
  top: 70px;
  left: -105px;
  display: flex;
  width: 270px;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.mini-avatar {
  position: relative;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
}

.mini-avatar img {
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
}

.mini-avatar i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px;
  height: 11px;
  border: 2px solid #5d0d24;
  border-radius: 50%;
  background: #f1b64c;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 12px;
}

.hero-card span {
  margin-top: 4px;
  color: #e7cbd2;
  font-size: 9px;
}

.hero-card-bottom {
  right: 38px;
  bottom: 66px;
  width: min(320px, 72%);
  padding: 17px 19px;
}

.hero-card-bottom .card-label {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.hero-card-bottom p {
  margin: 8px 0 0;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.4;
}

.context-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  padding: 24px clamp(24px, 6vw, 90px);
  background: #fff4e5;
}

.context-strip p {
  margin: 0;
  color: #8a5d69;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.context-strip div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
}

.context-strip span {
  color: #653340;
  font-family: Georgia, serif;
  font-size: 13px;
  white-space: nowrap;
}

.context-strip i {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 105px clamp(24px, 7vw, 110px);
}

.section-heading {
  max-width: 830px;
}

.section-heading.centered {
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading h2,
.demo-copy h2,
.steps-copy h2,
.pricing-copy h2,
.faq-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.4vw, 59px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading h2 em {
  color: #a44d2f;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.problem-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.problem-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: white;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

.problem-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.problem-grid article > span {
  color: #bd8871;
  font-family: Georgia, serif;
  font-size: 12px;
}

.problem-grid h3 {
  margin: 33px 0 12px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.problem-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.solution-line {
  display: flex;
  max-width: 920px;
  align-items: center;
  gap: 18px;
  margin: 38px 0 0 auto;
  border-left: 3px solid var(--gold);
  padding: 13px 0 13px 20px;
}

.solution-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}

.solution-avatar img {
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
}

.solution-line p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.solution-line strong {
  color: var(--ink);
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(50px, 7vw, 110px);
  background:
    radial-gradient(circle at 82% 30%, rgba(159, 51, 75, 0.35), transparent 30%),
    var(--wine-dark);
  color: white;
}

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

.demo-copy > p:not(.overline) {
  margin: 22px 0 29px;
  color: #e8d1d7;
  font-size: 14px;
  line-height: 1.7;
}

.demo-copy ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 15px;
}

.demo-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f1e3e6;
  font-size: 12px;
}

.demo-copy li span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border: 1px solid rgba(244, 190, 91, 0.52);
  border-radius: 8px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 10px;
}

.demo-chat {
  overflow: hidden;
  border: 1px solid rgba(246, 210, 157, 0.32);
  border-radius: 25px;
  background: #fffaf3;
  color: var(--ink);
  box-shadow: 0 35px 80px rgba(22, 1, 8, 0.32);
  transform: rotate(1deg);
}

.demo-chat-head {
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid #efded4;
  padding: 15px 18px;
  background: white;
}

.demo-chat-head img {
  width: 39px;
  height: 39px;
  border: 2px solid var(--gold);
  border-radius: 12px 12px 12px 4px;
  object-fit: cover;
  object-position: 50% 18%;
}

.demo-chat-head strong,
.demo-chat-head span {
  display: block;
}

.demo-chat-head strong {
  font-family: Georgia, serif;
  font-size: 16px;
}

.demo-chat-head span {
  margin-top: 3px;
  color: #9b7a82;
  font-size: 9px;
}

.demo-chat-body {
  padding: 25px;
}

.demo-message {
  border-radius: 16px;
  padding: 15px 17px;
  font-size: 12px;
  line-height: 1.6;
}

.user-message {
  width: 78%;
  margin-left: auto;
  border-bottom-right-radius: 5px;
  background: var(--wine);
  color: white;
}

.mel-message {
  width: 92%;
  margin-top: 16px;
  border: 1px solid #ecd8cc;
  border-bottom-left-radius: 5px;
  background: white;
}

.message-title {
  color: #a2694b;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.mel-message p {
  margin: 8px 0 0;
}

.message-divider {
  height: 1px;
  margin: 16px 0;
  background: #f0e2da;
}

.next-step {
  margin-top: 16px;
  border-radius: 11px;
  padding: 12px;
  background: #fff0d8;
}

.next-step span {
  display: block;
  margin-bottom: 5px;
  color: #a2694b;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.deliveries-section {
  background: #fff9f0;
}

.deliveries-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.delivery-card {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 21px;
  padding: 24px;
  background: white;
}

.delivery-card.featured {
  background: var(--wine);
  color: white;
  box-shadow: 0 22px 45px rgba(98, 16, 39, 0.17);
}

.delivery-index {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #c4937e;
  font-family: Georgia, serif;
  font-size: 11px;
}

.featured .delivery-index {
  color: #dcae89;
}

.delivery-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: #fff0d8;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.featured .delivery-icon {
  background: rgba(255, 239, 214, 0.13);
  color: var(--gold-light);
}

.delivery-card h3 {
  margin: 36px 0 10px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.delivery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.featured p {
  color: #ead3d9;
}

.steps-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.steps-visual {
  position: relative;
  max-width: 530px;
  justify-self: end;
}

.steps-image-frame {
  overflow: hidden;
  border-radius: 250px 250px 24px 24px;
  box-shadow: var(--shadow);
}

.steps-image-frame img {
  width: 100%;
}

.steps-badge {
  position: absolute;
  right: -35px;
  bottom: 42px;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 8px solid #fff6e9;
  border-radius: 50%;
  background: var(--gold);
  color: #3a0916;
  box-shadow: 0 18px 40px rgba(85, 12, 35, 0.2);
  text-align: center;
}

.steps-badge strong {
  font-family: Georgia, serif;
  font-size: 39px;
  font-weight: 500;
  line-height: 1;
}

.steps-badge span {
  max-width: 90px;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.steps-copy {
  max-width: 650px;
}

.steps-copy ol {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  gap: 4px;
}

.steps-copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.steps-copy li > span {
  color: #bd876c;
  font-family: Georgia, serif;
  font-size: 12px;
}

.steps-copy h3 {
  margin: 0 0 7px;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 500;
}

.steps-copy li p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

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

.audience-section .section-heading {
  max-width: 850px;
}

.audience-grid {
  display: grid;
  max-width: 920px;
  margin: 45px auto 0;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.audience-grid article {
  border: 1px solid rgba(246, 208, 151, 0.25);
  border-radius: 22px;
  padding: 31px;
  background: rgba(255, 255, 255, 0.055);
}

.audience-grid article > span {
  display: inline-grid;
  min-width: 53px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: rgba(244, 190, 91, 0.13);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.audience-grid h3 {
  margin: 35px 0 10px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.audience-grid p {
  margin: 0;
  color: #e6ced4;
  font-size: 13px;
  line-height: 1.7;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
  background:
    radial-gradient(circle at 75% 35%, #ffe3bb, transparent 34%),
    #fff8ed;
}

.pricing-copy {
  max-width: 610px;
  justify-self: end;
}

.pricing-copy > p:not(.overline, .price-note) {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.price {
  display: flex;
  align-items: flex-start;
}

.price > span {
  margin: 9px 6px 0 0;
  color: #a0674b;
  font-size: 16px;
  font-weight: 800;
}

.price strong {
  font-family: Georgia, serif;
  font-size: 62px;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price small {
  align-self: flex-end;
  margin: 0 0 8px 7px;
  color: var(--muted);
  font-size: 12px;
}

.price-note {
  margin: 8px 0 0;
  color: #9b737d;
  font-size: 10px;
}

.pricing-card {
  width: min(560px, 100%);
  border: 1px solid #ead3c4;
  border-radius: 27px;
  padding: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.pricing-card-head {
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.pricing-card-head img {
  width: 52px;
  height: 52px;
  border: 2px solid var(--gold);
  border-radius: 16px 16px 16px 6px;
  object-fit: cover;
  object-position: 50% 18%;
}

.pricing-card-head strong,
.pricing-card-head span {
  display: block;
}

.pricing-card-head strong {
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 500;
}

.pricing-card-head span {
  margin-top: 4px;
  color: #94727a;
  font-size: 9px;
}

.pricing-card ul {
  display: grid;
  margin: 22px 0 25px;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #66404b;
  font-size: 12px;
}

.pricing-card li i {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  background: #fff0d8;
  color: #99532e;
  font-size: 9px;
  font-style: normal;
}

.pricing-disclaimer {
  display: block;
  margin: 13px 9px 0;
  color: #a1838a;
  font-size: 8px;
  line-height: 1.45;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 8vw, 120px);
}

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

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

.faq-list summary {
  position: relative;
  padding-right: 40px;
  font-family: Georgia, serif;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 0;
  right: 5px;
  color: #a26748;
  content: "+";
  font-family: Inter, sans-serif;
  font-size: 21px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 13px 40px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.final-cta {
  display: grid;
  min-height: 560px;
  overflow: hidden;
  grid-template-columns: 1fr minmax(360px, 0.72fr);
  background:
    radial-gradient(circle at 28% 20%, rgba(151, 49, 73, 0.42), transparent 34%),
    var(--wine-dark);
  color: white;
}

.final-cta-copy {
  width: min(770px, 100%);
  align-self: center;
  justify-self: end;
  padding: 70px 60px 70px clamp(28px, 7vw, 110px);
}

.final-cta h2 {
  margin: 0 0 30px;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.final-cta-image {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(244, 190, 91, 0.3);
}

.final-cta-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(53, 6, 19, 0.4), transparent 45%);
  content: "";
}

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

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 45px;
  border-top: 1px solid var(--line);
  padding: 28px clamp(22px, 5vw, 78px);
  background: #fffaf3;
}

.site-footer > p {
  margin: 0;
  color: #9a7780;
  font-size: 10px;
}

.site-footer > div {
  display: flex;
  gap: 25px;
}

.site-footer > div a {
  color: #754e59;
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(43, 3, 15, 0.78);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(510px, 100%);
  border: 1px solid #ecd3c4;
  border-radius: 25px;
  padding: 30px;
  background: #fffaf3;
  box-shadow: 0 35px 90px rgba(30, 1, 10, 0.35);
  text-align: center;
}

.modal-card > img {
  width: 74px;
  height: 74px;
  margin: 0 auto 21px;
  border: 3px solid var(--gold);
  border-radius: 22px 22px 22px 7px;
  object-fit: cover;
  object-position: 50% 18%;
}

.modal-card h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.modal-card > p:not(.overline) {
  margin: 16px 0 23px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--wine);
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.nav-login, .nav-cta) {
    display: none;
  }

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

  .hero-copy {
    padding-left: 45px;
  }

  .hero-card-top {
    top: 54px;
    left: -62px;
  }

  .context-strip {
    grid-template-columns: 1fr;
    gap: 13px;
  }

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

@media (max-width: 780px) {
  .site-header {
    min-height: 72px;
    padding: 12px 18px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 17px;
    padding: 10px;
    background: #fffaf3;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a:not(.nav-login, .nav-cta) {
    display: block;
  }

  .site-nav a {
    border: 0;
    border-radius: 10px;
    padding: 12px;
  }

  .site-nav .nav-login {
    border-left: 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    padding: 65px 22px 52px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 65px);
  }

  .hero-lead {
    font-size: 14px;
  }

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

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

  .hero-visual {
    height: min(128vw, 540px);
  }

  .portrait-frame {
    top: 0;
    right: 18px;
    left: 18px;
  }

  .hero-card-top,
  .hero-card-bottom {
    display: none;
  }

  .context-strip {
    padding: 22px;
  }

  .context-strip div {
    align-items: flex-start;
    flex-direction: column;
  }

  .context-strip i {
    display: none;
  }

  .section {
    padding: 75px 20px;
  }

  .problem-grid,
  .deliveries-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .solution-line {
    align-items: flex-start;
  }

  .demo-section,
  .steps-section,
  .pricing-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .demo-chat {
    transform: none;
  }

  .steps-visual {
    justify-self: center;
    padding-right: 17px;
  }

  .steps-badge {
    right: -8px;
    bottom: 28px;
    width: 122px;
    height: 122px;
  }

  .pricing-copy {
    justify-self: start;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-copy {
    padding: 70px 22px 55px;
  }

  .final-cta-image {
    height: 450px;
    border-top: 1px solid rgba(244, 190, 91, 0.3);
    border-left: 0;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer > div {
    flex-wrap: wrap;
  }
}

@media (max-width: 470px) {
  .hero-visual {
    height: 118vw;
    max-height: 500px;
  }

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
  }

  .problem-grid article {
    min-height: auto;
  }

  .section-heading h2,
  .demo-copy h2,
  .steps-copy h2,
  .pricing-copy h2,
  .faq-section h2 {
    font-size: 37px;
  }

  .delivery-card {
    min-height: 220px;
  }

  .steps-badge {
    width: 108px;
    height: 108px;
  }

  .steps-badge strong {
    font-size: 31px;
  }

  .price strong {
    font-size: 54px;
  }
}

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