:root {
  color-scheme: light;
  --bg: #fff9fa;
  --surface: #ffffff;
  --surface-soft: #fdeef1;
  --surface-warm: #fff3ee;
  --border: #f0e1e5;
  --text: #2a2a2e;
  --text-secondary: #5f6672;
  --text-muted: #68717d;
  --accent: #f26e7e;
  --accent-dark: #d95062;
  --accent-soft: #fce1e6;
  --success: #3f8667;
  --shadow-soft: 0 18px 55px rgba(78, 48, 57, 0.09);
  --shadow-card: 0 10px 30px rgba(78, 48, 57, 0.07);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(244, 160, 172, 0.18), transparent 27rem),
    radial-gradient(circle at 94% 18%, rgba(255, 177, 153, 0.15), transparent 24rem),
    var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1,
h2,
h3,
p,
li,
a {
  overflow-wrap: break-word;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--accent-dark);
  transform: translateY(-150%);
}

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

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  padding: 12px 16px;
  border: 1px solid rgba(240, 225, 229, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(242, 110, 126, 0.22);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand-copy span,
.site-nav a,
.hero-text,
.section-heading > p:last-child,
.feature-card p,
.workflow-step p,
.availability-text,
.footer-brand p,
.footer-note {
  color: var(--text-secondary);
}

.brand-copy span {
  font-size: 0.82rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a,
.footer-links a {
  border-radius: 8px;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--accent-dark);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "▾";
  color: var(--text-muted);
  font-size: 0.78rem;
  transition: transform 160ms ease;
}

.language-switcher[open] summary::after {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 184px;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
}

.language-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 700;
}

.language-menu a:hover {
  color: var(--accent-dark);
  background: var(--surface-soft);
}

.language-menu a[aria-current="page"] {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(242, 110, 126, 0.4);
  outline-offset: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: 54px;
  padding: 96px 0 76px;
}

.hero-copy,
.section-heading,
.availability-shell > div {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6.8vw, 5.5rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.hero-text {
  max-width: 58ch;
  margin-top: 24px;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #f58a98, var(--accent));
  box-shadow: 0 14px 32px rgba(242, 110, 126, 0.3);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--text-secondary);
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(78, 48, 57, 0.13);
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  min-height: 610px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 57% center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(42, 42, 46, 0.24));
}

.hero-price-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  max-width: 260px;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.hero-price-card strong {
  font-size: 1.06rem;
}

.hero-price-card > span:last-child {
  color: var(--text-secondary);
  font-size: 0.84rem;
}

.price-card-label {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cost-story {
  padding-top: 64px;
}

.section-heading-wide h2 {
  max-width: 19ch;
}

.cost-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.84fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

.story-photo {
  position: relative;
  min-width: 0;
  min-height: 470px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo figcaption {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.story-photo figcaption span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cost-breakdown {
  display: grid;
  align-content: start;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.cost-breakdown-heading {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cost-breakdown-heading span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cost-breakdown-heading strong {
  font-size: 1.3rem;
}

.cost-breakdown dl {
  display: grid;
  gap: 0;
  margin: 12px 0 0;
}

.cost-breakdown dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.cost-breakdown dd {
  margin: 0;
  color: var(--text);
  font-weight: 750;
}

.cost-breakdown .cost-total {
  margin-top: 8px;
  color: var(--text);
  font-weight: 750;
}

.cost-breakdown .price-total {
  margin-top: 8px;
  padding: 16px;
  border: 0;
  border-radius: 17px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-weight: 800;
}

.price-total dd {
  color: var(--accent-dark);
  font-size: 1.25rem;
}

.cost-breakdown > p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.section {
  padding: 54px 0;
  scroll-margin-top: 110px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section-heading .eyebrow {
  margin: 0;
}

.section-heading > p:last-child {
  max-width: 60ch;
  font-size: 1.03rem;
  line-height: 1.65;
}

.feature-grid,
.workflow-steps {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.workflow-step {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.feature-card {
  display: grid;
  min-height: 240px;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.feature-card:nth-child(2),
.feature-card:nth-child(4) {
  background: rgba(255, 243, 238, 0.86);
}

.feature-card p,
.workflow-step p {
  line-height: 1.65;
}

.feature-number,
.workflow-step > span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workflow {
  padding-bottom: 42px;
}

.workflow-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-step {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.availability {
  padding-top: 24px;
}

.availability-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 34px;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 110, 126, 0.16), transparent 24rem),
    linear-gradient(145deg, #fff3ee, #ffffff);
  box-shadow: var(--shadow-soft);
}

.availability-shell .eyebrow {
  margin-bottom: 14px;
}

.availability-text {
  max-width: 58ch;
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.availability-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(242, 110, 126, 0.2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.availability-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.availability-card > span:last-child {
  display: grid;
  gap: 5px;
}

.availability-card strong {
  font-size: 1.35rem;
}

.store-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 19px;
  color: #ffffff;
  background: var(--accent);
}

.store-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.availability-label {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-meta {
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.site-footer {
  align-items: flex-start;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  display: grid;
  gap: 7px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 700;
}

.footer-note {
  max-width: 33ch;
  font-size: 0.83rem;
  line-height: 1.5;
  text-align: right;
}

.legal-shell {
  max-width: 1020px;
}

.legal-page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 88px 0 40px;
}

.legal-page > h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.legal-updated {
  margin-top: 18px;
  color: var(--text-muted);
}

.legal-page section,
.legal-callout {
  margin-top: 46px;
}

.legal-page section h2,
.legal-callout h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.legal-page section h3 {
  max-width: none;
  margin: 28px 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
}

.legal-page section p,
.legal-page li,
.legal-callout p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-page section p + p {
  margin-top: 16px;
}

.legal-page ol,
.legal-page ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 24px;
}

.legal-page p + ul,
.legal-page ul + p {
  margin-top: 16px;
}

.legal-page a:not(.button) {
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-callout {
  padding: 24px;
  border-left: 5px solid var(--accent);
  border-radius: 0 20px 20px 0;
  background: var(--accent-soft);
}

.legal-action {
  margin-top: 38px;
}

.error-page {
  display: grid;
  width: min(calc(100% - 40px), 680px);
  min-height: 100vh;
  margin: 0 auto;
  place-content: center;
  justify-items: start;
  gap: 20px;
  padding: 48px 0;
}

.error-page .eyebrow {
  margin: 8px 0 -4px;
}

.error-page h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 8vw, 5rem);
}

.error-page > p:last-of-type {
  max-width: 48ch;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

  .header-actions {
    width: 100%;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }

  .hero,
  .feature-grid,
  .workflow-steps,
  .cost-story-grid,
  .availability-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    gap: 42px;
    padding-top: 64px;
  }

  .hero-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-position: center;
  }

  .story-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .cost-breakdown {
    max-width: none;
  }

  h1,
  h2 {
    max-width: none;
  }

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

  .feature-card {
    min-height: 210px;
  }

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

  .footer-note {
    grid-column: 1 / -1;
    max-width: 60ch;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 10px;
  }

  .site-header {
    position: static;
    padding: 14px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .header-actions {
    display: grid;
    width: 100%;
    gap: 12px;
  }

  .site-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .language-switcher,
  .language-switcher summary {
    width: 100%;
  }

  .language-switcher summary {
    justify-content: space-between;
  }

  .language-menu {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
    box-shadow: none;
  }

  .hero {
    padding: 58px 6px 46px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    border-radius: 26px;
  }

  .hero-price-card {
    right: 14px;
    bottom: 14px;
  }

  .section {
    padding: 42px 6px;
    scroll-margin-top: 20px;
  }

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

  .feature-card,
  .workflow-step {
    min-height: 0;
    border-radius: 20px;
  }

  .availability-shell {
    padding: 24px;
    border-radius: 26px;
  }

  .availability-card {
    align-items: flex-start;
    min-height: 0;
    padding: 20px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .legal-page {
    padding: 58px 6px 30px;
  }
}

@media (max-width: 430px) {
  .hero-photo {
    aspect-ratio: 4 / 3;
    object-position: 58% center;
  }

  .hero-price-card {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: var(--surface);
    box-shadow: none;
  }

  .availability-card {
    display: grid;
  }
}

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

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