:root {
  /* Label + lifestyle photo (burgundy coat, soft light) */
  --color-navy: #203850;
  --color-teal: #488088;
  --color-teal-dark: #306070;
  --color-wine: #6b2b3a;
  --color-accent: #c45a32;
  --color-accent-dark: #a84a2a;
  --color-bg: #eef1f0;
  --color-bg-alt: #e4e9e8;
  --color-blush: #f3ecee;
  --color-surface: #fafbfa;
  --color-text: #1c2428;
  --color-text-muted: #5a646c;
  --color-border: #c5cecb;
  --color-on-navy: #eef1f0;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --header-h: 72px;
  --container: min(1080px, 100% - 2rem);
}

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

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

body.nav-open {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(107, 43, 58, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 30%, rgba(72, 128, 136, 0.08), transparent 45%),
    var(--color-bg);
}

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

a {
  color: var(--color-teal-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--color-navy);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
}

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

.narrow {
  max-width: 680px;
}

.section {
  padding: 4.75rem 0;
}

.section--blush {
  background: linear-gradient(180deg, var(--color-blush) 0%, var(--color-bg-alt) 100%);
}

.section--navy {
  background: linear-gradient(145deg, var(--color-navy) 0%, #2a4a58 100%);
  color: var(--color-on-navy);
}

.section--navy h2 {
  color: #fff;
}

.section--offer {
  padding: 3.5rem 0 4.5rem;
}

.section--contact {
  background:
    linear-gradient(180deg, var(--color-bg-alt) 0%, #dfe8e6 40%, var(--color-bg) 100%);
}

.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-left: 3px solid var(--color-wine);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(238, 241, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 206, 203, 0.7);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}

.logo__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-navy);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

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

.nav__cta {
  padding: 0.55rem 1.15rem;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 999px;
}

.nav__cta:hover {
  background: var(--color-accent-dark);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  transition: transform 0.2s, opacity 0.2s;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero — full-bleed lifestyle */
.hero {
  position: relative;
  min-height: min(94vh, 900px);
  display: grid;
  margin-top: var(--header-h);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 18%;
  animation: hero- ken 18s ease-out forwards;
}

@keyframes hero-ken {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.hero__veil {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: min(94vh, 900px);
  background:
    linear-gradient(105deg, rgba(32, 56, 80, 0.88) 0%, rgba(32, 56, 80, 0.55) 42%, rgba(107, 43, 58, 0.18) 100%),
    linear-gradient(0deg, rgba(32, 56, 80, 0.65) 0%, transparent 48%);
  color: #fff;
  padding: 3rem 0 3.5rem;
}

.hero__content {
  max-width: 620px;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 0.85rem;
  color: #f0c4b0;
}

.hero__subtitle {
  font-size: 1.12rem;
  color: rgba(238, 241, 240, 0.92);
  max-width: 34rem;
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero__proof {
  margin: 1.15rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(238, 241, 240, 0.85);
}

/* Strip */
.strip--sell {
  background: var(--color-navy);
  color: #fff;
  padding: 1rem 0;
}

@media (max-width: 767px) {
  .strip--sell {
    display: none;
  }
}

.strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.strip__inner p {
  margin: 0;
  font-size: 0.98rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn__icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 56, 80, 0.18);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}

.section--contact .btn--ghost {
  color: var(--color-teal);
  border-color: var(--color-teal);
}

.section--contact .btn--ghost:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn--secondary:hover {
  background: var(--color-navy);
  color: #fff;
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
}

.section-cta {
  margin-top: 2rem;
}

/* Pain list — selling, not chips/cards heavy */
.pain-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 800px) {
  .pain-list {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }
}

.pain-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  gap: 0.35rem;
}

.pain-list strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-wine);
}

.pain-list span {
  color: var(--color-text-muted);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.steps li {
  padding: 1.35rem 0 0;
  border-top: 3px solid var(--color-teal);
  display: grid;
  gap: 0.4rem;
}

.steps strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.steps span {
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

/* Offer panel */
.offer-panel {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.25rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(32, 56, 80, 0.08);
  text-align: center;
}

.offer-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.offer-list {
  margin: 1.75rem 0;
  display: grid;
  gap: 0;
  text-align: left;
  border-top: 1px solid var(--color-border);
}

.offer-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
}

.offer-list dt {
  color: var(--color-text-muted);
  font-weight: 500;
}

.offer-list dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
}

.offer-price {
  color: var(--color-accent) !important;
  font-size: 1.45rem !important;
}

.offer-note {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  text-align: left;
}

.offer-actions {
  justify-content: center;
}

/* Methods */
.methods__title {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.25rem;
}

.methods {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.methods li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

.methods-note {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--color-teal-dark);
  border-left: 3px solid var(--color-teal);
  padding-left: 1rem;
}

/* About */
.about__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .about__grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.about__photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(32, 56, 80, 0.15);
}

.about__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--color-navy);
}

.advantage__title {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.35rem;
  color: var(--color-wine);
}

.advantage__lead {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.experience {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.experience li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.experience span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-accent);
  white-space: nowrap;
  min-width: 3.5rem;
  line-height: 1.2;
}

.experience strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}

.experience em {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Guarantees */
.guarantees {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(238, 241, 240, 0.25);
}

@media (min-width: 800px) {
  .guarantees {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: none;
  }
}

.guarantees li {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(238, 241, 240, 0.25);
}

@media (min-width: 800px) {
  .guarantees li {
    border-bottom: none;
    border-top: 1px solid rgba(238, 241, 240, 0.25);
    padding-top: 1.5rem;
  }
}

.guarantees strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #fff;
}

.guarantees p {
  margin: 0;
  color: rgba(238, 241, 240, 0.82);
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 0.95rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.2rem;
  list-style: none;
}

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

.faq p {
  margin: 0.75rem 0 0.35rem;
  color: var(--color-text-muted);
}

/* Contact */
.contact__bot {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.contact-actions {
  justify-content: center;
}

.form__hint {
  margin-top: 1rem;
  color: var(--color-text-muted);
}

.contact__privacy {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact__direct,
.contact__email {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact__direct a,
.contact__email a {
  font-weight: 600;
  color: var(--color-text);
}

/* Footer */
.footer {
  padding: 2rem 0;
  background: var(--color-navy);
  color: rgba(238, 241, 240, 0.7);
}

.footer a {
  color: rgba(238, 241, 240, 0.85);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer__inner p {
  margin: 0;
  font-size: 0.9rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

/* Sticky */
.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1.35rem;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(196, 90, 50, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

@media (max-width: 860px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav--legal {
    display: flex;
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    gap: 0.75rem;
  }

  .nav--legal a {
    padding: 0;
    border: none;
    font-size: 0.85rem;
  }

  .nav a {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav--legal .nav__cta {
    margin-top: 0;
    padding: 0.45rem 0.9rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(32, 56, 80, 0.2) 0%, rgba(32, 56, 80, 0.88) 68%),
      linear-gradient(90deg, rgba(32, 56, 80, 0.5), transparent 75%);
  }

  .offer-panel {
    padding: 1.75rem 1.25rem;
  }
}

/* Legal pages */
.legal-page {
  width: min(720px, 100% - 2rem);
  margin: calc(var(--header-h) + 2.5rem) auto 4rem;
}

.legal-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.legal-page h1 {
  margin-bottom: 0.75rem;
}

.legal-meta {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.legal-page li {
  margin-bottom: 0.45rem;
}

.legal-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
