/* =========================================================
   LANDING PAGE STYLES — Monika Widera
   Layered on top of colors_and_type.css
   ========================================================= */

.mw {
  min-height: 100vh;
  background: var(--bg-1);
  color: var(--fg-2);
}

/* ---------- LAYOUT ---------- */
.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}
.container-narrow {
  width: min(820px, 100% - 48px);
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 9vw, 128px) 0;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg-1) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-soft), background .3s var(--ease-soft);
}
.nav.scrolled {
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.logo .dot { color: var(--accent-caramel); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  transition: color .2s var(--ease-soft);
  position: relative;
}
.nav-link:hover { color: var(--brand); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-soft);
}
.nav-link:hover::after { transform: scaleX(1); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: var(--tracking-xwide);
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform .15s var(--ease-soft), background .2s var(--ease-soft), color .2s var(--ease-soft), border-color .2s var(--ease-soft);
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--ink-cocoa);
  color: var(--bg-ivory);
  border-color: var(--ink-cocoa);
}
.btn-primary:hover {
  background: var(--accent-caramel);
  border-color: var(--accent-caramel);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-1);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--fg-1);
  color: var(--bg-ivory);
  border-color: var(--fg-1);
}

.btn-tonal {
  background: var(--bg-sand);
  color: var(--fg-1);
  border-color: transparent;
}
.btn-tonal:hover {
  background: var(--bg-taupe);
}

.btn-lg { padding: 20px 40px; font-size: 13px; }
.btn-sm { padding: 10px 20px; font-size: 11px; }

/* Icon arrow inside button */
.btn .arr {
  display: inline-block;
  transition: transform .25s var(--ease-soft);
}
.btn:hover .arr { transform: translateX(4px); }

/* ---------- HERO ---------- */
.hero {
  padding: clamp(32px, 6vw, 72px) 0 clamp(64px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--fg-3);
}

.hero-title {
  margin: 0 0 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-caramel);
  font-weight: 400;
}
.hero-lead {
  max-width: 520px;
  margin: 0 0 40px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 520px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--fg-1);
}
.stat-num sup {
  font-size: 0.5em;
  color: var(--accent-caramel);
  vertical-align: top;
  margin-left: 2px;
}
.stat-label {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* Hero image: arched frame */
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 8px 8px / 32% 32% 8px 8px;
  overflow: hidden;
  background: var(--bg-sand);
  box-shadow: var(--shadow-lift);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
  pointer-events: none;
}

/* Decorative arch backdrop */
.hero-arch {
  position: absolute;
  right: -8%;
  top: 0;
  bottom: 0;
  width: 52%;
  background: var(--bg-sand);
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  transform: translateY(6%);
  z-index: 0;
  opacity: 0.55;
}
.hero-grid > * { position: relative; z-index: 1; }

/* Floating signature */
.hero-signature {
  position: absolute;
  left: 2%;
  bottom: -14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(96px, 18vw, 220px);
  color: var(--accent-caramel);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ---------- SECTION HEADER ---------- */
.section-head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--fg-3);
  display: inline-block;
}
.section-head p {
  max-width: 640px;
  margin: 20px auto 0;
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--bg-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 8px 8px / 24% 24% 8px 8px;
  overflow: hidden;
  background: var(--bg-sand);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .ring {
  position: absolute;
  inset: -16px;
  border: 1px solid var(--border);
  border-radius: inherit;
  pointer-events: none;
}
.about-content h2 { margin: 0 0 24px; }
.about-list {
  margin-top: 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}
.about-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg-1);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.about-list .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--accent-caramel);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}
.about-list .txt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
}
.about-list .txt strong {
  color: var(--fg-1);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

/* ---------- OFFER ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.offer-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.offer-card .icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-sand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.offer-card h3 { margin: 0 0 8px; }
.offer-card p { margin: 0; font-size: 14px; }

/* ---------- PROCESS ---------- */
.process {
  background: var(--bg-3);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.process-step {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  text-align: left;
}
.process-step .step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--accent-caramel);
  display: block;
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--fg-1);
}
.process-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-2);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--bg-1);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.testi-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 60px;
  line-height: 0.7;
  color: var(--accent-caramel);
  opacity: 0.6;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
  flex: 1;
  margin: 0 0 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-sand);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg-1);
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-1);
}
.testi-meta {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 2px;
}

/* ---------- PRICING ---------- */
.pricing {
  background: var(--bg-2);
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.price-card.featured {
  background: var(--ink-cocoa);
  color: var(--bg-ivory);
  border-color: var(--ink-cocoa);
  transform: translateY(-12px);
}
.price-card.featured:hover { transform: translateY(-16px); }
.price-card.featured * { color: inherit; }
.price-card.featured .price-num { color: var(--accent-gold); }
.price-card.featured .price-features li::before {
  background: var(--accent-gold);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-caramel);
  color: var(--bg-ivory);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: 10px;
  letter-spacing: var(--tracking-xwide);
  text-transform: uppercase;
  font-weight: 500;
}

.price-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-caramel);
  margin-bottom: 12px;
}
.price-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--fg-1);
  margin: 0 0 16px;
}
.price-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--fg-1);
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-num small {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.price-desc {
  font-size: 13px;
  color: var(--fg-3);
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-features li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-2);
  padding-left: 28px;
  position: relative;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 1px;
  background: var(--accent-caramel);
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--ink-cocoa);
  color: var(--bg-ivory);
}
.contact *:where(h2, h3, .eyebrow, .stat-num, .stat-label, label, .testi-name) { color: inherit; }
.contact .eyebrow { color: var(--accent-gold); }
.contact .eyebrow::before,
.contact .eyebrow::after { background: var(--accent-gold); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .c-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent-gold);
}
.contact-row .c-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.contact-row .c-val {
  font-size: 15px;
  color: var(--bg-ivory);
  font-weight: 500;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 40px;
  display: grid;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 8px 0;
  color: var(--bg-ivory);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s var(--ease-soft);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--accent-gold);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.field select option { background: var(--ink-cocoa); }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  color: var(--bg-ivory);
  transition: background .2s var(--ease-soft), border-color .2s var(--ease-soft);
}
.social-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--ink-cocoa);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink-cocoa);
  color: rgba(255,255,255,0.5);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .logo { color: var(--bg-ivory); }
.logo-img { height: 64px; width: auto; display: block; }
.logo-img--footer { height: 64px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .offer-grid,
  .pricing-grid,
  .testi-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .nav-links { display: none; }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
