:root {
  --pink: #f7d6d8;
  --ivory: #fff7f0;
  --gold: #e6c89a;
  --taupe: #cbbbaa;
  --brown: #4a3d36;
  --card: #ffffff;
  --muted: #7e6e63;
  --border: #eaded1;
  --border-strong: #d9c6b1;
  --heading: "Playfair Display", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(74, 61, 54, 0.14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --pill: 999px;
  --width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--brown);
  background:
    radial-gradient(circle at 85% 8%, rgba(247, 214, 216, 0.68), transparent 27rem),
    linear-gradient(180deg, var(--ivory) 0%, #fffdf9 55%, var(--ivory) 100%);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.landing-container {
  width: min(calc(100% - 2rem), var(--width));
  margin-inline: auto;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(234, 222, 209, 0.9);
  background: rgba(255, 247, 240, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  min-height: 74px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brown);
  font-family: var(--heading);
  font-weight: 800;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: linear-gradient(135deg, #fffaf5, var(--pink));
}

.logo-text {
  font-size: 1rem;
  white-space: nowrap;
}

.logo-spark {
  align-self: flex-start;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border: 1px solid var(--brown);
  border-radius: var(--pill);
  color: var(--ivory);
  background: var(--brown);
  box-shadow: 0 12px 30px rgba(74, 61, 54, 0.16);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 38px rgba(74, 61, 54, 0.22);
}

.button-small {
  min-height: 41px;
  padding: 0.55rem 1.05rem;
  font-size: 0.8rem;
}

.hero {
  overflow: hidden;
  padding: 4.3rem 0;
}

.hero-layout {
  display: grid;
  gap: 2.7rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.85rem;
  align-items: center;
  gap: 0.55rem;
  color: #aa7c3b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

.eyebrow::before {
  width: 1.55rem;
  height: 1px;
  content: "";
  background: currentColor;
}

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

h1,
h2,
h3 {
  font-family: var(--heading);
  line-height: 1.07;
}

h1 {
  max-width: 680px;
  margin-bottom: 1.15rem;
  font-size: clamp(2.75rem, 10.5vw, 4.25rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 7.5vw, 3.2rem);
  letter-spacing: -0.025em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 1.05rem;
  color: var(--muted);
  font-size: 1rem;
}

.offer-line {
  margin-bottom: 1.5rem;
  color: var(--brown);
  font-weight: 800;
}

.offer-line span {
  margin-inline: 0.3rem;
  color: #aa7c3b;
}

.hero-visual {
  position: relative;
  padding: 0.55rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-visual img {
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
}

.hero-visual span {
  position: absolute;
  right: 1rem;
  bottom: -0.8rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  background: #fffaf5;
  box-shadow: 0 12px 28px rgba(74, 61, 54, 0.13);
  font-size: 0.68rem;
  font-weight: 700;
}

.credibility {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.credibility-grid {
  display: grid;
}

.credibility p {
  display: flex;
  min-height: 88px;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  padding: 0.9rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.credibility p:last-child {
  border-bottom: 0;
}

.credibility strong {
  color: var(--brown);
  font-family: var(--heading);
  font-size: 1rem;
}

.credibility span {
  color: var(--muted);
  font-size: 0.7rem;
}

.section {
  padding: 4.5rem 0;
}

.value-layout,
.work-layout,
.apply-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.section-copy {
  max-width: 600px;
}

.section-copy > p,
.form-heading p {
  color: var(--muted);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.category-list span {
  padding: 0.58rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.benefit-grid {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: 0 18px 50px rgba(74, 61, 54, 0.09);
  list-style: none;
}

.benefit-grid li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: #fffaf5;
}

.benefit-grid span {
  color: #aa7c3b;
  font-size: 0.66rem;
  font-weight: 800;
}

.benefit-grid strong {
  font-size: 0.82rem;
}

.work-section {
  border-block: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(247, 214, 216, 0.35), rgba(255, 255, 255, 0.72));
}

.work-visual {
  padding: 0.55rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.work-visual img {
  border-radius: calc(var(--radius-lg) - 8px);
}

.text-link {
  color: var(--brown);
  font-weight: 800;
  text-underline-offset: 0.27rem;
}

.apply-section {
  background: #fffaf5;
}

.apply-layout {
  align-items: start;
}

.offer-card,
.form-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.offer-card {
  color: var(--ivory);
  background:
    radial-gradient(circle at 92% 7%, rgba(230, 200, 154, 0.2), transparent 17rem),
    var(--brown);
  box-shadow: var(--shadow);
}

.offer-card h2 {
  color: #fffaf5;
}

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

.price {
  display: flex;
  margin-bottom: 1.2rem;
  flex-direction: column;
}

.price span {
  color: var(--taupe);
  font-size: 0.75rem;
}

.price strong {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 3.2rem;
  line-height: 1;
}

.offer-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 1.45rem;
  color: #f7eee8;
  font-size: 0.86rem;
}

.offer-card li::before {
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.button-light {
  width: 100%;
  border-color: var(--ivory);
  color: var(--brown);
  background: var(--ivory);
}

.whatsapp-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-underline-offset: 0.24rem;
}

.form-card {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 18px 50px rgba(74, 61, 54, 0.09);
}

.form-heading {
  margin-bottom: 1.3rem;
}

.form-heading h2 {
  font-size: clamp(2rem, 7vw, 2.8rem);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.74rem;
  font-weight: 700;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--brown);
  background: #fffdf9;
  outline: none;
}

.form-field input::placeholder {
  color: #a29489;
}

.form-field input:focus,
.form-field select:focus {
  border-color: #bd8e4f;
  box-shadow: 0 0 0 4px rgba(230, 200, 154, 0.22);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  margin-top: 1.1rem;
}

#premium-shopify-form.is-submitting {
  opacity: 0.76;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status.is-success {
  color: #56794b;
}

.form-status.is-error {
  color: #b54f4f;
}

.landing-footer {
  padding: 1.8rem 0 6rem;
  border-top: 1px solid var(--border);
  background: var(--ivory);
}

.footer-inner {
  flex-direction: column;
}

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.landing-footer nav a {
  color: var(--muted);
  font-size: 0.76rem;
  text-underline-offset: 0.22rem;
}

.mobile-cta {
  position: fixed;
  right: 0.85rem;
  bottom: calc(0.85rem + env(safe-area-inset-bottom));
  left: 0.85rem;
  z-index: 60;
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brown);
  border-radius: var(--pill);
  color: var(--ivory);
  background: var(--brown);
  box-shadow: 0 18px 45px rgba(74, 61, 54, 0.35);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 560px) {
  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credibility p:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .credibility p:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .form-field-full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  .landing-container {
    width: min(calc(100% - 3rem), var(--width));
  }

  .hero {
    padding: 5.4rem 0;
  }

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

  .offer-card,
  .form-card {
    padding: 2rem;
  }

  .footer-inner {
    flex-direction: row;
  }
}

@media (min-width: 980px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 3.8rem;
  }

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

  .credibility p,
  .credibility p:nth-child(odd) {
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .credibility p:last-child {
    border-right: 0;
  }

  .value-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }

  .work-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }

  .apply-layout {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 1.5rem;
  }

  .mobile-cta {
    display: none;
  }

  .landing-footer {
    padding-bottom: 1.8rem;
  }
}

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

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