:root {
  --bg: #f8f1ea;
  --paper: #fffaf5;
  --paper-soft: #f4e7dc;
  --ink: #171313;
  --muted: #5f504c;
  --accent: #a55e60;
  --accent-dark: #87484c;
  --clay: #c18470;
  --line: rgba(91, 66, 58, 0.16);
  --shadow: 0 24px 70px rgba(83, 54, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px clamp(22px, 5vw, 72px);
  background: rgba(255, 250, 245, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: 3px;
  white-space: nowrap;
}

.brand em {
  color: var(--accent);
  font-family: "Mrs Saint Delafield", cursive;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}

.brand-heart {
  color: var(--accent);
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 54px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  border-bottom: 1px solid transparent;
  padding: 6px 0;
}

.main-nav a:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: calc(100vh - 82px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(255, 250, 245, 0.97) 41%, rgba(248, 241, 234, 0.58) 57%, rgba(248, 241, 234, 0.1) 100%),
    radial-gradient(circle at 88% 22%, rgba(193, 132, 112, 0.28), transparent 36%),
    linear-gradient(135deg, #f7eee6 0%, #ead4c2 100%);
}

.hero-copy {
  align-self: center;
  max-width: 660px;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5.5vw, 72px);
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  font-size: clamp(48px, 7vw, 82px);
}

h1 span,
.signature {
  color: var(--accent);
  font-family: "Mrs Saint Delafield", cursive;
  font-weight: 400;
  letter-spacing: 0;
}

h1 span {
  display: inline-block;
  font-size: 1.05em;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 17px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 30px rgba(135, 72, 76, 0.24);
}

.button-light {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 250, 245, 0.46), rgba(255, 250, 245, 0.04) 32%, rgba(23, 19, 19, 0.04));
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.portrait-card {
  position: absolute;
  right: clamp(24px, 6vw, 88px);
  bottom: clamp(28px, 7vw, 86px);
  z-index: 2;
  width: min(320px, 52vw);
  padding: 30px 28px;
  color: var(--accent-dark);
  background: rgba(255, 250, 245, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.portrait-card p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.portrait-card span {
  display: block;
  margin-top: 8px;
  font-family: "Mrs Saint Delafield", cursive;
  font-size: 34px;
}

.pain-points,
.truths {
  padding: 34px clamp(22px, 5vw, 72px) 44px;
  background: var(--paper);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.icon-grid,
.truth-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.icon-grid article,
.truth-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 150px;
  padding: 20px 14px;
  text-align: center;
}

.line-icon,
.truth-grid span {
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.icon-grid p,
.truth-grid p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.story {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 74px);
  align-items: center;
  padding: 54px clamp(22px, 5.5vw, 72px);
  background: linear-gradient(180deg, var(--paper), #fbf5ef);
}

.story-image {
  min-height: 420px;
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.story-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
}

.story-copy {
  max-width: 660px;
}

.story-copy p {
  margin: 18px 0 0;
  font-size: 17px;
}

.signature {
  font-size: 34px;
  line-height: 1.1;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(325px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 58px clamp(22px, 5.5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.98), rgba(255, 250, 245, 0.7)),
    radial-gradient(circle at 84% 24%, rgba(165, 94, 96, 0.14), transparent 34%),
    var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.video-copy {
  max-width: 620px;
}

.video-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.video-embed {
  justify-self: center;
  width: min(100%, 420px);
}

.tiktok-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(180deg, rgba(23, 19, 19, 0.06), rgba(23, 19, 19, 0.72)),
    url("img/MartinaNeussinger.png") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tiktok-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(165, 94, 96, 0.34), rgba(23, 19, 19, 0.18));
}

.tiktok-card > * {
  position: relative;
  z-index: 1;
}

.tiktok-card-label {
  align-self: start;
  justify-self: start;
  padding: 8px 12px;
  background: rgba(255, 250, 245, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.tiktok-card strong {
  align-self: end;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.tiktok-card span:not(.tiktok-card-label) {
  max-width: 320px;
  font-size: 17px;
  line-height: 1.5;
}

.tiktok-card small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.truth-grid article {
  min-height: 142px;
  background: linear-gradient(145deg, #fffaf5, #f1e4da);
  border: 1px solid rgba(91, 66, 58, 0.08);
  border-radius: 8px;
}

.offer-section,
.process-section {
  padding: 58px clamp(22px, 5.5vw, 72px);
  background: linear-gradient(180deg, #fffaf5, #f7eee6);
  border-top: 1px solid var(--line);
}

.offer-grid,
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 30px auto 0;
}

.offer-grid article,
.process-steps article {
  padding: 28px 24px;
  background: rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(91, 66, 58, 0.12);
  border-radius: 8px;
}

.offer-grid span,
.process-steps span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--accent-dark);
  border: 1px solid rgba(165, 94, 96, 0.34);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.offer-grid h3,
.process-steps h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  line-height: 1.08;
}

.offer-grid p,
.process-steps p,
.disclaimer-box p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 52px clamp(22px, 5.5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.96) 0 44%, rgba(255, 250, 245, 0.52) 64%, rgba(255, 250, 245, 0.18)),
    linear-gradient(135deg, #ead7c7 0%, #f9efe6 48%, #b87867 100%);
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 17px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.quote-panel {
  justify-self: end;
  display: grid;
  place-items: center;
  width: min(460px, 100%);
  min-height: 250px;
  padding: 34px;
  text-align: center;
  background: rgba(255, 250, 245, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quote-panel p {
  margin: 0;
  color: var(--accent-dark);
  font-family: "Mrs Saint Delafield", cursive;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 0.95;
}

.quote-panel span {
  color: var(--muted);
  font-weight: 600;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 66px);
  align-items: start;
  background:
    radial-gradient(circle at 10% 18%, rgba(165, 94, 96, 0.1), transparent 30%),
    linear-gradient(180deg, var(--paper), #f6ece4);
}

.process-copy {
  position: sticky;
  top: 126px;
}

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

.disclaimer-box {
  grid-column: 2;
  padding: 22px 24px;
  background: rgba(165, 94, 96, 0.08);
  border: 1px solid rgba(165, 94, 96, 0.2);
  border-radius: 8px;
}

.disclaimer-box strong {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px clamp(22px, 5.5vw, 72px);
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.contact-heart {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 70px;
  line-height: 1;
}

.contact-band .eyebrow,
.contact-band h2,
.contact-band p {
  color: white;
}

.contact-band h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.contact-band p {
  max-width: 720px;
  margin: 8px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  padding: 24px clamp(22px, 5.5vw, 72px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.footer-item {
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
}

.footer-item strong,
.footer-item a {
  grid-column: 2;
}

.footer-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--accent-dark);
  background: rgba(165, 94, 96, 0.08);
  border: 1px solid rgba(165, 94, 96, 0.18);
  border-radius: 50%;
}

.footer-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-icon-tiktok svg path {
  fill: currentColor;
  stroke: none;
}

.site-footer strong {
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-claim {
  justify-content: end;
  text-align: right;
}

.footer-legal {
  align-content: center;
  justify-content: end;
  text-align: right;
}

.footer-legal a,
.simple-footer a,
.legal-content a {
  color: var(--accent-dark);
  font-weight: 700;
}

.legal-page {
  padding: clamp(48px, 8vw, 90px) clamp(22px, 5.5vw, 72px);
  background:
    radial-gradient(circle at 82% 12%, rgba(165, 94, 96, 0.12), transparent 34%),
    linear-gradient(180deg, var(--paper), var(--bg));
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 250, 245, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-content h1 {
  margin-bottom: 34px;
}

.legal-content section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
}

.legal-content p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.simple-footer {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 26px clamp(22px, 5.5vw, 72px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.mobile-sticky-cta {
  display: none;
}

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

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    font-size: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 9px 12px;
    border: 1px solid rgba(165, 94, 96, 0.14);
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.72);
  }

  .hero,
  .story,
  .video-section,
  .process-section,
  .audience,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .process-copy {
    position: static;
  }

  .disclaimer-box {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

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

  .quote-panel,
  .video-embed,
  .footer-legal,
  .footer-claim {
    justify-self: stretch;
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    position: static;
    gap: 12px;
    padding: 16px 16px 12px;
  }

  .brand {
    gap: 7px;
    font-size: 22px;
    letter-spacing: 1.8px;
  }

  .brand em {
    font-size: 29px;
  }

  .main-nav {
    margin: 0 -16px;
    padding: 0 16px 4px;
    font-size: 11px;
  }

  .hero-copy,
  .pain-points,
  .truths,
  .story,
  .video-section,
  .offer-section,
  .process-section,
  .audience,
  .contact-band,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .eyebrow,
  .kicker {
    font-size: 11px;
    line-height: 1.4;
  }

  h1 {
    font-size: 40px;
    line-height: 1.03;
  }

  h2 {
    font-size: 31px;
    line-height: 1.06;
  }

  h1 span {
    display: block;
    font-size: 1.2em;
  }

  .hero-copy p:not(.eyebrow),
  .story-copy p,
  .video-copy p:not(.eyebrow),
  .check-list,
  .offer-grid p,
  .process-steps p,
  .disclaimer-box p {
    font-size: 16px;
  }

  .pain-points,
  .truths {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .story,
  .video-section,
  .offer-section,
  .process-section,
  .audience {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    font-size: 13px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual img {
    object-position: 58% center;
  }

  .portrait-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 20px 18px;
  }

  .portrait-card p {
    font-size: 24px;
  }

  .portrait-card span {
    font-size: 29px;
  }

  .icon-grid,
  .truth-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .icon-grid article,
  .truth-grid article {
    min-height: auto;
    padding: 18px 16px;
  }

  .story-image {
    min-height: 285px;
  }

  .story-image img {
    min-height: 285px;
  }

  .line-icon,
  .truth-grid span {
    font-size: 42px;
  }

  .offer-grid,
  .process-steps {
    gap: 14px;
    margin-top: 22px;
  }

  .offer-grid h3,
  .process-steps h3 {
    font-size: 26px;
  }

  .quote-panel {
    min-height: 190px;
    padding: 26px 22px;
  }

  .quote-panel p {
    font-size: 44px;
  }

  .video-embed {
    width: 100%;
  }

  .tiktok-card {
    min-height: 360px;
    padding: 24px;
    box-shadow: 0 18px 42px rgba(83, 54, 44, 0.13);
  }

  .contact-band {
    gap: 18px;
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .contact-heart {
    width: 70px;
    height: 70px;
    font-size: 56px;
  }

  .offer-grid article,
  .process-steps article,
  .disclaimer-box {
    padding: 22px 18px;
  }

  .legal-content {
    padding: 24px 18px;
  }

  .simple-footer {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 18px;
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(83, 54, 44, 0.28);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 20px;
    letter-spacing: 1.2px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .portrait-card {
    padding: 17px 16px;
  }

  .portrait-card span {
    font-size: 26px;
  }
}
