:root {
  --bg: #f8f2eb;
  --bg-deep: #f0e4da;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fff8f1;
  --surface-accent: #fff1ef;
  --text: #1a2540;
  --muted: #5d677b;
  --line: rgba(26, 37, 64, 0.14);
  --primary: #18346f;
  --primary-soft: #355e8d;
  --accent: #d7838d;
  --accent-strong: #bf5f72;
  --shadow: 0 24px 70px rgba(41, 49, 70, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 131, 141, 0.28), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(24, 52, 111, 0.12), transparent 20%),
    linear-gradient(180deg, #fcf7f2 0%, #f7eee6 48%, #f5ede5 100%);
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 75%);
  opacity: 0.35;
}

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

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

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0 36px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(250, 243, 236, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(26, 37, 64, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(120px, 14vw, 180px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 52, 111, 0.08);
  color: var(--primary);
  font: inherit;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 48px 0 40px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.hero-text,
.section-heading p,
.feature-card p,
.step-card p,
.testimonial-card p,
.support-copy p,
.faq-card p,
.contact-panel p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
  box-shadow: 0 20px 40px rgba(24, 52, 111, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

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

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

.hero-points li::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--accent), var(--primary-soft));
  box-shadow: 0 0 0 6px rgba(215, 131, 141, 0.14);
}

.hero-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.glow-one {
  width: 280px;
  height: 280px;
  top: 8%;
  right: 8%;
  background: rgba(215, 131, 141, 0.22);
}

.glow-two {
  width: 220px;
  height: 220px;
  bottom: 10%;
  left: 8%;
  background: rgba(24, 52, 111, 0.14);
}

.hero-card,
.product-card,
.feature-card,
.step-card,
.testimonial-card,
.support-card,
.contact-panel,
.faq-card,
.footer {
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  padding: 34px;
  border-radius: var(--radius-xl);
}

.card-label,
.product-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 131, 141, 0.14);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 18px 0 12px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.lash-graphic {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.lash-graphic span {
  width: 82px;
  height: 160px;
  border-top: 6px solid var(--primary);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-radius: 70% 70% 0 0;
  transform: rotate(var(--tilt));
  position: relative;
}

.lash-graphic span:nth-child(1) {
  --tilt: -12deg;
}

.lash-graphic span:nth-child(2) {
  --tilt: 0deg;
  height: 178px;
}

.lash-graphic span:nth-child(3) {
  --tilt: 12deg;
}

.lash-graphic span::after {
  position: absolute;
  inset: 12px 10px auto;
  height: 88px;
  content: "";
  border-top: 3px solid rgba(215, 131, 141, 0.82);
  border-radius: 80% 80% 0 0;
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 10%;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 241, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 45px rgba(24, 52, 111, 0.12);
}

.floating-note strong {
  letter-spacing: 0.1em;
}

.floating-note span {
  color: var(--muted);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px 0 40px;
}

.trust-bar div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.trust-bar strong {
  font-size: 1.6rem;
  color: var(--primary);
}

.section {
  padding: 72px 0;
}

.section-alt {
  margin: 16px 0;
  padding: 80px 32px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.74), rgba(255, 241, 239, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-panel h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  margin-bottom: 14px;
}

.product-grid,
.testimonial-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.product-card-accent {
  background: rgba(255, 241, 239, 0.88);
}

.product-art {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.product-art::before,
.product-art::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.product-art-satin {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(135deg, #1b3469, #3f6c9d 58%, #d38895 100%);
}

.product-art-velvet {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.85), transparent 16%),
    linear-gradient(135deg, #f3d3d8, #e39ca9 50%, #304c87 100%);
}

.product-art-cloud {
  background:
    radial-gradient(circle at 65% 18%, rgba(255, 255, 255, 0.78), transparent 16%),
    linear-gradient(135deg, #e6e4ef, #d4b8c1 45%, #26416f 100%);
}

.product-art::before {
  width: 250px;
  height: 250px;
  left: -50px;
  top: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.product-art::after {
  width: 180px;
  height: 180px;
  right: 18px;
  bottom: -20px;
  background: rgba(255, 255, 255, 0.2);
}

.product-copy {
  padding: 24px;
}

.product-copy h3,
.feature-card h3,
.step-card h3,
.faq-card h3 {
  margin: 16px 0 10px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
}

.product-meta strong {
  color: var(--primary);
  font-size: 1.15rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card,
.step-card,
.testimonial-card,
.faq-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

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

.step-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 2rem;
  font-family: "Georgia", "Times New Roman", serif;
}

.testimonial-section {
  position: relative;
}

.testimonial-grid {
  align-items: start;
}

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

.testimonial-card footer {
  margin-top: 20px;
  color: var(--primary);
  font-weight: 700;
}

.section-support {
  padding-bottom: 88px;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: center;
}

.support-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.support-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.support-list li::before {
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
}

.support-card {
  padding: 16px;
  border-radius: 30px;
  background: rgba(255, 248, 241, 0.82);
}

.support-card img {
  border-radius: 22px;
  width: 100%;
}

.contact-section {
  padding-top: 8px;
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.contact-links {
  display: grid;
  gap: 12px;
  min-width: fit-content;
}

.contact-links a {
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(24, 52, 111, 0.08);
  color: var(--primary);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 54px;
  padding: 24px 28px;
  border-radius: 26px;
}

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

.footer-brand strong {
  letter-spacing: 0.12em;
}

.footer-copy {
  color: var(--muted);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js [data-reveal="scale"] {
  transform: scale(0.94);
}

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

@media (max-width: 980px) {
  .hero,
  .split-layout,
  .support-grid,
  .contact-panel,
  .product-grid,
  .steps-grid,
  .testimonial-grid,
  .faq-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .contact-panel {
    flex-direction: column;
    align-items: start;
  }

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

@media (max-width: 760px) {
  .site-shell {
    width: min(100vw - 24px, 100%);
  }

  .topbar {
    top: 10px;
    border-radius: 28px;
    padding: 14px 16px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

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

  .hero-card,
  .feature-card,
  .step-card,
  .testimonial-card,
  .faq-card,
  .contact-panel,
  .footer {
    padding: 22px;
  }

  .section-alt {
    padding: 56px 20px;
    border-radius: 30px;
  }

  .hero-art {
    min-height: 440px;
  }

  .floating-note {
    right: 10px;
    bottom: 2%;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
