/*
Theme Name: FarahDay
Theme URI: https://farahday.com
Author: FarahDay
Author URI: https://farahday.com
Description: Tema editorial y ligero para la plataforma FarahDay.
Version: 0.3.0
Requires at least: 6.7
Tested up to: 7.0
Requires PHP: 8.1
Text Domain: farahday
*/

:root {
  --fd-ink: #17211d;
  --fd-ink-soft: #283a32;
  --fd-green: #49685b;
  --fd-green-deep: #29453a;
  --fd-sage: #a9b9ae;
  --fd-sage-light: #dfe8e1;
  --fd-ivory: #f7f3ec;
  --fd-paper: #fffdf8;
  --fd-sand: #e9ded0;
  --fd-gold: #b79562;
  --fd-clay: #c98f78;
  --fd-rose: #ead0c8;
  --fd-line: rgba(23, 33, 29, 0.13);
  --fd-white-line: rgba(255, 255, 255, 0.18);
  --fd-shadow: 0 30px 90px rgba(32, 48, 40, 0.12);
  --fd-serif: "Iowan Old Style", "Palatino Linotype", Baskerville, "Times New Roman", serif;
  --fd-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fd-container: min(1240px, calc(100vw - 48px));
}

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

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

body {
  margin: 0;
  color: var(--fd-ink);
  background: var(--fd-paper);
  font-family: var(--fd-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.fd-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

::selection {
  color: var(--fd-paper);
  background: var(--fd-green);
}

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

.fd-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--fd-ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

.fd-skip-link:focus {
  transform: translateY(0);
}

.fd-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fd-header.is-scrolled {
  background: rgba(255, 253, 248, 0.92);
  border-color: var(--fd-line);
  box-shadow: 0 8px 30px rgba(35, 48, 42, 0.06);
  backdrop-filter: blur(16px);
}

.fd-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.fd-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.fd-brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  color: var(--fd-paper);
  background: var(--fd-green-deep);
  border-radius: 50% 50% 50% 16%;
  font-family: var(--fd-serif);
  font-size: 20px;
  font-style: italic;
}

.fd-brand__name {
  font-family: var(--fd-serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.fd-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 40px);
  font-size: 14px;
  font-weight: 600;
}

.fd-nav a {
  position: relative;
}

.fd-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: var(--fd-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.fd-nav a:hover::after,
.fd-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.fd-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.fd-language {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--fd-line);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.fd-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px;
  color: var(--fd-ink);
  background: transparent;
  border: 0;
}

.fd-menu-toggle__label {
  font-size: 13px;
  font-weight: 700;
}

.fd-menu-toggle__lines {
  display: grid;
  gap: 5px;
  width: 24px;
}

.fd-menu-toggle__lines i {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.fd-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.fd-button svg,
.fd-text-link svg,
.fd-celebration-card__body a svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.fd-button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}

.fd-button--ink {
  color: var(--fd-paper);
  background: var(--fd-ink);
}

.fd-button--ink:hover,
.fd-button--ink:focus-visible {
  background: var(--fd-green-deep);
  box-shadow: 0 12px 30px rgba(23, 33, 29, .18);
}

.fd-button--primary {
  color: #fff;
  background: var(--fd-green);
  box-shadow: 0 14px 34px rgba(73, 104, 91, .22);
}

.fd-button--primary:hover,
.fd-button--primary:focus-visible {
  background: var(--fd-green-deep);
  box-shadow: 0 18px 40px rgba(41, 69, 58, .28);
}

.fd-button--ivory {
  color: var(--fd-ink);
  background: var(--fd-ivory);
}

.fd-button--ivory:hover,
.fd-button--ivory:focus-visible {
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.fd-button--full {
  width: 100%;
}

.fd-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--fd-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.fd-eyebrow span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--fd-green);
  background: var(--fd-sage-light);
  border-radius: 50%;
}

.fd-eyebrow svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.fd-hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 150px 0 84px;
  background:
    radial-gradient(circle at 15% 15%, rgba(222, 232, 225, .78), transparent 31%),
    linear-gradient(135deg, #fffdf8 0%, #f5eee5 58%, #edf1ec 100%);
}

.fd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: radial-gradient(rgba(42, 65, 55, .15) .7px, transparent .7px);
  background-size: 14px 14px;
  mask-image: linear-gradient(90deg, #000, transparent 47%);
  pointer-events: none;
}

.fd-hero__glow {
  position: absolute;
  border: 1px solid rgba(183, 149, 98, .22);
  border-radius: 50%;
  pointer-events: none;
}

.fd-hero__glow--one {
  width: 520px;
  height: 520px;
  right: -210px;
  top: 90px;
}

.fd-hero__glow--two {
  width: 780px;
  height: 780px;
  right: -340px;
  top: -40px;
}

.fd-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .97fr) minmax(440px, .83fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
}

.fd-hero__copy h1,
.fd-section-heading h2,
.fd-features__copy h2,
.fd-price__copy h2,
.fd-final-cta h2 {
  margin: 0;
  font-family: var(--fd-serif);
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: .99;
}

.fd-hero__copy h1 {
  max-width: 680px;
  font-size: clamp(54px, 6vw, 86px);
}

.fd-hero__copy h1 em,
.fd-section-heading h2 em,
.fd-features__copy h2 em,
.fd-final-cta h2 em {
  color: var(--fd-green);
  font-weight: 400;
}

.fd-hero__lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #526158;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.fd-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 36px;
}

.fd-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  border-bottom: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
}

.fd-text-link:hover,
.fd-text-link:focus-visible {
  border-color: currentColor;
}

.fd-text-link svg {
  width: 25px;
  stroke-width: 1.4;
}

.fd-text-link--strong {
  color: var(--fd-green-deep);
}

.fd-hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.fd-avatar-stack {
  display: flex;
  padding-left: 10px;
}

.fd-avatar-stack span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -10px;
  color: var(--fd-ink);
  background: var(--fd-rose);
  border: 2px solid var(--fd-paper);
  border-radius: 50%;
  font-family: var(--fd-serif);
  font-size: 13px;
}

.fd-avatar-stack span:nth-child(2) { background: var(--fd-sage-light); }
.fd-avatar-stack span:nth-child(3) { background: var(--fd-sand); }

.fd-hero__proof p {
  display: grid;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.fd-hero__proof p strong {
  font-size: 13px;
}

.fd-hero__proof p span {
  color: #78837c;
}

.fd-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
}

.fd-orbit {
  position: absolute;
  border: 1px solid rgba(73, 104, 91, .16);
  border-radius: 50%;
}

.fd-orbit--one {
  width: 480px;
  height: 480px;
}

.fd-orbit--two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: fd-spin 50s linear infinite;
}

@keyframes fd-spin { to { transform: rotate(360deg); } }

.fd-phone {
  position: relative;
  z-index: 2;
  width: 286px;
  height: 570px;
  padding: 10px;
  background: #111813;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 43px;
  box-shadow: 0 42px 80px rgba(33, 54, 44, .27), inset 0 0 0 1px #3f4a44;
  transform: rotate(2deg);
}

.fd-phone__speaker {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 50%;
  width: 76px;
  height: 20px;
  background: #101512;
  border-radius: 999px;
  transform: translateX(-50%);
}

.fd-invite {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 186px 25px 28px;
  color: #efe4d0;
  background:
    linear-gradient(180deg, rgba(15, 39, 30, .08), rgba(15, 39, 30, .85)),
    radial-gradient(circle at 45% 28%, #607e6d 0 9%, #2d5142 27%, #122c23 68%);
  border-radius: 34px;
  text-align: center;
}

.fd-invite::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(224, 193, 142, .35);
  border-radius: 28px;
  pointer-events: none;
}

.fd-invite__arch {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 210px;
  height: 200px;
  border: 1px solid rgba(236, 215, 177, .55);
  border-radius: 110px 110px 18px 18px;
  transform: translateX(-50%);
}

.fd-invite__arch::before,
.fd-invite__arch::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(236, 215, 177, .2);
  border-radius: inherit;
}

.fd-invite__arch::after {
  inset: 20px;
}

.fd-invite__moon {
  position: absolute;
  top: 68px;
  left: 50%;
  width: 58px;
  height: 58px;
  border: 7px solid #d9c095;
  border-top-color: transparent;
  border-radius: 50%;
  transform: translateX(-45%) rotate(-25deg);
  filter: drop-shadow(0 0 14px rgba(238, 209, 158, .27));
}

.fd-invite__star {
  position: absolute;
  color: #dbc292;
  font-size: 13px;
}

.fd-invite__star--a { top: 62px; left: 44px; }
.fd-invite__star--b { top: 106px; right: 38px; font-size: 24px; }
.fd-invite__star--c { top: 38px; right: 52px; font-size: 9px; }

.fd-invite__kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #d2c3a9;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.fd-invite h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--fd-serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}

.fd-invite h2 span {
  display: block;
  margin: 5px;
  color: #c9ad78;
  font-size: 18px;
  font-style: italic;
}

.fd-invite__rule {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 9px;
  width: 120px;
  margin: 20px auto 13px;
  color: #c9ad78;
  font-size: 8px;
}

.fd-invite__rule i { height: 1px; background: rgba(218, 194, 146, .45); }

.fd-invite__date {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.fd-invite__place {
  position: relative;
  z-index: 1;
  margin: 8px auto 18px;
  color: #b9b9aa;
  font-size: 8px;
}

.fd-invite button {
  position: relative;
  z-index: 1;
  min-height: 32px;
  padding: 0 15px;
  color: #ebdfcb;
  background: transparent;
  border: 1px solid rgba(235, 223, 203, .44);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
}

.fd-floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
  padding: 12px 14px;
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 15px;
  box-shadow: 0 20px 42px rgba(33, 52, 43, .14);
  backdrop-filter: blur(12px);
}

.fd-floating-note--rsvp {
  top: 82px;
  right: -26px;
  animation: fd-float 5s ease-in-out infinite;
}

.fd-floating-note--share {
  bottom: 82px;
  left: -64px;
  animation: fd-float 5s 1s ease-in-out infinite;
}

@keyframes fd-float { 50% { transform: translateY(-8px); } }

.fd-floating-note__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: var(--fd-green);
  background: var(--fd-sage-light);
  border-radius: 50%;
}

.fd-floating-note__icon--whatsapp {
  color: #267a55;
  background: #dff3e8;
}

.fd-floating-note svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.fd-floating-note > span:nth-child(2) {
  display: grid;
  color: #6a756e;
  font-size: 9px;
  line-height: 1.5;
}

.fd-floating-note strong {
  color: var(--fd-ink);
  font-size: 11px;
}

.fd-floating-note > i {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-left: auto;
  color: #fff;
  background: var(--fd-green);
  border-radius: 50%;
}

.fd-floating-note > i svg { width: 11px; }

.fd-strip {
  padding: 22px 0;
  color: #dde8e0;
  background: var(--fd-ink);
}

.fd-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fd-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
}

.fd-strip svg {
  width: 15px;
  fill: none;
  stroke: var(--fd-gold);
  stroke-linecap: round;
  stroke-width: 2;
}

.fd-section {
  padding: 120px 0;
}

.fd-section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.fd-section-heading h2,
.fd-features__copy h2,
.fd-price__copy h2 {
  font-size: clamp(44px, 5vw, 68px);
}

.fd-section-heading > p:last-child,
.fd-features__copy > p,
.fd-price__copy > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #627067;
  font-size: 17px;
}

.fd-celebrations {
  background: var(--fd-paper);
}

.fd-celebration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fd-celebration-card {
  overflow: hidden;
  min-height: 465px;
  background: #f3eee6;
  border: 1px solid rgba(23, 33, 29, .08);
  border-radius: 160px 160px 18px 18px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.fd-celebration-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--fd-shadow);
}

.fd-celebration-card__art {
  position: relative;
  display: grid;
  place-items: center;
  height: 245px;
  overflow: hidden;
  color: #ede6d9;
  background: var(--fd-green-deep);
}

.fd-celebration-card__art::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 226, 193, .38);
  border-radius: 140px 140px 7px 7px;
}

.fd-celebration-card__art i {
  position: relative;
  z-index: 2;
  font-family: var(--fd-serif);
  font-size: 50px;
  font-style: italic;
  font-weight: 400;
}

.fd-celebration-card--sabaa .fd-celebration-card__art {
  color: #4d5863;
  background: #cdd8de;
}

.fd-celebration-card--tahara .fd-celebration-card__art {
  color: #5a4636;
  background: #d8c6ab;
}

.fd-celebration-card--birthday .fd-celebration-card__art {
  color: #6b3d31;
  background: #e4b7aa;
}

.fd-art-ring {
  position: absolute;
  border: 1px solid rgba(233, 215, 178, .45);
  border-radius: 50%;
}

.fd-art-ring--one { width: 150px; height: 150px; }
.fd-art-ring--two { width: 110px; height: 110px; }

.fd-art-moon {
  position: absolute;
  width: 115px;
  height: 115px;
  border: 2px solid rgba(75, 89, 102, .3);
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(-20deg);
}

.fd-art-stars,
.fd-art-confetti {
  position: absolute;
  top: 46px;
  color: rgba(65, 80, 92, .52);
  letter-spacing: 16px;
}

.fd-art-door {
  position: absolute;
  bottom: -25px;
  width: 150px;
  height: 210px;
  border: 2px solid rgba(88, 67, 51, .28);
  border-radius: 80px 80px 0 0;
}

.fd-art-dot {
  position: absolute;
  top: 42px;
  color: rgba(88, 67, 51, .45);
}

.fd-art-sun {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(107, 61, 49, .3);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(255, 243, 225, .1), 0 0 0 50px rgba(255, 243, 225, .08);
}

.fd-celebration-card__body {
  position: relative;
  padding: 26px 25px 28px;
}

.fd-celebration-card__body > span {
  color: var(--fd-green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.fd-celebration-card__body h3 {
  margin: 3px 0 7px;
  font-family: var(--fd-serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.1;
}

.fd-celebration-card__body p {
  margin: 0;
  padding-right: 35px;
  color: #667168;
  font-size: 12px;
  line-height: 1.55;
}

.fd-celebration-card__body a {
  position: absolute;
  right: 24px;
  bottom: 26px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--fd-paper);
  background: var(--fd-green);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.fd-celebration-card__body a:hover,
.fd-celebration-card__body a:focus-visible {
  background: var(--fd-ink);
  transform: translateX(3px);
}

.fd-process {
  position: relative;
  overflow: hidden;
  color: #f0eee7;
  background: var(--fd-ink);
}

.fd-process::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -300px;
  top: -260px;
  border: 1px solid rgba(192, 162, 112, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(192, 162, 112, .025), 0 0 0 160px rgba(192, 162, 112, .018);
}

.fd-section-heading--light .fd-eyebrow {
  color: #cbb386;
}

.fd-section-heading--light h2 em {
  color: #cbb386;
}

.fd-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--fd-white-line);
  border: 1px solid var(--fd-white-line);
  border-radius: 16px;
  overflow: hidden;
}

.fd-process__grid article {
  position: relative;
  min-height: 340px;
  padding: 34px;
  background: var(--fd-ink);
}

.fd-process__grid article > span {
  color: #90a198;
  font-family: var(--fd-serif);
  font-size: 15px;
}

.fd-process__grid article > i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 55px 0 24px;
  color: #d3bd91;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--fd-white-line);
  border-radius: 50%;
}

.fd-process__grid svg,
.fd-features__grid svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.fd-process__grid h3 {
  margin: 0 0 10px;
  font-family: var(--fd-serif);
  font-size: 26px;
  font-weight: 500;
}

.fd-process__grid p {
  margin: 0;
  color: #aeb9b3;
  font-size: 13px;
}

.fd-process__cta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}

.fd-process__cta p {
  margin: 0;
  color: #8f9b95;
  font-size: 12px;
}

.fd-features {
  background: #f3ede5;
}

.fd-features__layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.fd-features__copy .fd-text-link {
  margin-top: 25px;
}

.fd-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fd-features__grid article {
  min-height: 182px;
  padding: 25px;
  background: rgba(255, 253, 248, .72);
  border: 1px solid rgba(23, 33, 29, .09);
  border-radius: 14px;
  transition: background 180ms ease, transform 180ms ease;
}

.fd-features__grid article:hover {
  background: var(--fd-paper);
  transform: translateY(-3px);
}

.fd-features__grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--fd-green);
  background: var(--fd-sage-light);
  border-radius: 50%;
}

.fd-features__grid h3 {
  margin: 21px 0 5px;
  font-family: var(--fd-serif);
  font-size: 21px;
  font-weight: 600;
}

.fd-features__grid p {
  margin: 0;
  color: #69756e;
  font-size: 12px;
}

.fd-price {
  background: var(--fd-paper);
}

.fd-price__card {
  display: grid;
  grid-template-columns: 1fr 450px;
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
  padding: clamp(52px, 7vw, 86px);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .78), transparent 30%),
    #e8dfd3;
  border-radius: 28px;
}

.fd-price__copy h2 {
  max-width: 630px;
}

.fd-price__offer {
  padding: 38px;
  background: var(--fd-paper);
  border: 1px solid rgba(23, 33, 29, .1);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(46, 49, 42, .11);
}

.fd-price__amount {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--fd-line);
}

.fd-price__amount strong {
  font-family: var(--fd-serif);
  font-size: 82px;
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .8;
}

.fd-price__amount > span {
  display: grid;
  padding-top: 2px;
  font-family: var(--fd-serif);
  font-size: 28px;
  line-height: 1;
}

.fd-price__amount small {
  margin-top: 15px;
  color: #758079;
  font-family: var(--fd-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.fd-price__offer ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.fd-price__offer li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4d5c53;
  font-size: 12px;
}

.fd-price__offer li svg {
  flex: 0 0 auto;
  width: 17px;
  fill: none;
  stroke: var(--fd-green);
  stroke-linecap: round;
  stroke-width: 2;
}

.fd-price__note {
  margin: 13px 0 0;
  color: #8b938e;
  font-size: 9px;
  text-align: center;
}

.fd-faq {
  padding-top: 40px;
  background: var(--fd-paper);
}

.fd-faq__layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(60px, 9vw, 120px);
}

.fd-faq__list {
  border-top: 1px solid var(--fd-line);
}

.fd-faq details {
  border-bottom: 1px solid var(--fd-line);
}

.fd-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  list-style: none;
  font-family: var(--fd-serif);
  font-size: 20px;
  font-weight: 600;
}

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

.fd-faq summary span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--fd-green);
  border: 1px solid var(--fd-line);
  border-radius: 50%;
  font-family: var(--fd-sans);
  font-size: 16px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.fd-faq details[open] summary span { transform: rotate(45deg); }

.fd-faq details p {
  margin: -8px 55px 25px 0;
  color: #667269;
  font-size: 14px;
}

.fd-final-cta {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  color: #f5f0e7;
  background: var(--fd-green-deep);
  text-align: center;
}

.fd-final-cta__pattern {
  position: absolute;
  inset: -180px;
  opacity: .16;
  background:
    radial-gradient(circle at center, transparent 0 16%, #d5bd91 16.2% 16.45%, transparent 16.7% 26%, #d5bd91 26.2% 26.45%, transparent 26.7% 36%, #d5bd91 36.2% 36.45%, transparent 36.7%);
}

.fd-final-cta .fd-container {
  position: relative;
  z-index: 1;
}

.fd-final-cta .fd-eyebrow {
  justify-content: center;
  color: #d7c094;
}

.fd-final-cta h2 {
  max-width: 900px;
  margin: 0 auto 34px;
  font-size: clamp(46px, 6vw, 74px);
}

.fd-final-cta h2 em {
  color: #d7c094;
}

.fd-footer {
  padding: 75px 0 26px;
  color: #b8c1bb;
  background: #111916;
}

.fd-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 60px;
}

.fd-brand--light { color: #f4eee4; }
.fd-brand--light .fd-brand__mark { color: var(--fd-ink); background: #d3bd92; }

.fd-footer__brand p {
  max-width: 310px;
  margin: 20px 0 0;
  color: #89958e;
  font-size: 13px;
}

.fd-footer h2 {
  margin: 4px 0 20px;
  color: #f0ede6;
  font-family: var(--fd-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fd-footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
}

.fd-footer a:hover,
.fd-footer a:focus-visible {
  color: #fff;
}

.fd-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #748078;
  font-size: 10px;
}

.fd-footer__bottom p { margin: 0; }
.fd-footer__bottom div { display: flex; gap: 24px; }

.fd-content {
  min-height: 70vh;
  padding-block: 150px 80px;
}

.fd-entry h1,
.fd-content > h1 {
  font-family: var(--fd-serif);
  font-size: clamp(42px, 6vw, 72px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  :root { --fd-container: min(940px, calc(100vw - 40px)); }
  .fd-nav { display: none; }
  .fd-header__inner { grid-template-columns: auto 1fr auto; }
  .fd-hero__grid { grid-template-columns: 1fr 400px; gap: 35px; }
  .fd-phone { width: 265px; height: 535px; }
  .fd-hero__visual { min-height: 540px; }
  .fd-floating-note--rsvp { right: -8px; }
  .fd-floating-note--share { left: -20px; }
  .fd-celebration-grid { grid-template-columns: repeat(2, 1fr); }
  .fd-celebration-card { border-radius: 180px 180px 18px 18px; }
  .fd-features__layout { grid-template-columns: 1fr; }
  .fd-features__copy { max-width: 700px; }
  .fd-price__card { grid-template-columns: 1fr 400px; gap: 40px; }
}

@media (max-width: 820px) {
  :root { --fd-container: min(680px, calc(100vw - 36px)); }
  .fd-header { height: 72px; }
  .fd-header__inner { display: flex; justify-content: space-between; }
  .fd-header__actions { display: none; }
  .fd-menu-toggle { display: flex; }
  .fd-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 50px 24px;
    background: var(--fd-paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .fd-menu-open .fd-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .fd-nav a { padding: 17px 0; border-bottom: 1px solid var(--fd-line); font-family: var(--fd-serif); font-size: 28px; font-weight: 500; }
  .fd-nav a::after { display: none; }
  .fd-menu-open .fd-menu-toggle__lines i:first-child { transform: translateY(3.25px) rotate(45deg); }
  .fd-menu-open .fd-menu-toggle__lines i:last-child { transform: translateY(-3.25px) rotate(-45deg); }
  .fd-hero { padding-top: 128px; }
  .fd-hero__grid { grid-template-columns: 1fr; }
  .fd-hero__copy { text-align: center; }
  .fd-hero__copy .fd-eyebrow, .fd-hero__actions, .fd-hero__proof { justify-content: center; }
  .fd-hero__lead { margin-inline: auto; }
  .fd-hero__visual { margin-top: 35px; }
  .fd-strip__inner { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .fd-process__grid { grid-template-columns: 1fr; }
  .fd-process__grid article { min-height: auto; }
  .fd-process__grid article > i { margin-top: 35px; }
  .fd-price__card { grid-template-columns: 1fr; }
  .fd-price__copy { text-align: center; }
  .fd-price__copy > p { margin-inline: auto; }
  .fd-faq__layout { grid-template-columns: 1fr; gap: 10px; }
  .fd-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .fd-footer__grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 560px) {
  :root { --fd-container: calc(100vw - 28px); }
  .fd-brand__name { font-size: 23px; }
  .fd-menu-toggle__label { display: none; }
  .fd-hero { min-height: auto; padding: 116px 0 65px; }
  .fd-hero__copy h1 { font-size: clamp(48px, 14vw, 66px); }
  .fd-hero__lead { font-size: 16px; }
  .fd-hero__actions { flex-direction: column; gap: 14px; }
  .fd-button { width: 100%; }
  .fd-hero__visual { min-height: 535px; margin-top: 12px; }
  .fd-phone { width: 252px; height: 510px; transform: none; }
  .fd-invite { padding-top: 170px; }
  .fd-invite h2 { font-size: 32px; }
  .fd-orbit--one { width: 390px; height: 390px; }
  .fd-orbit--two { width: 330px; height: 330px; }
  .fd-floating-note { min-width: 184px; padding: 9px 11px; }
  .fd-floating-note--rsvp { top: 60px; right: -4px; }
  .fd-floating-note--share { bottom: 52px; left: -5px; }
  .fd-floating-note__icon { width: 31px; height: 31px; }
  .fd-strip__inner { grid-template-columns: 1fr; }
  .fd-strip span { justify-content: flex-start; padding-left: 28px; }
  .fd-section { padding: 86px 0; }
  .fd-section-heading { margin-bottom: 36px; }
  .fd-section-heading h2, .fd-features__copy h2, .fd-price__copy h2 { font-size: 45px; }
  .fd-section-heading > p:last-child, .fd-features__copy > p, .fd-price__copy > p { font-size: 15px; }
  .fd-celebration-grid { grid-template-columns: 1fr; }
  .fd-celebration-card { min-height: 450px; border-radius: 190px 190px 18px 18px; }
  .fd-celebration-card__art { height: 250px; }
  .fd-process__grid article { padding: 28px; }
  .fd-process__cta { flex-direction: column; align-items: stretch; text-align: center; }
  .fd-features__grid { grid-template-columns: 1fr; }
  .fd-features__grid article { min-height: 165px; }
  .fd-price__card { width: 100%; padding: 28px 16px; border-radius: 18px; }
  .fd-price__offer { padding: 26px 20px; }
  .fd-price__amount strong { font-size: 72px; }
  .fd-faq { padding-top: 20px; }
  .fd-faq summary { font-size: 18px; }
  .fd-final-cta { padding: 90px 0; }
  .fd-final-cta h2 { font-size: 45px; }
  .fd-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .fd-footer__brand { grid-column: 1 / -1; }
  .fd-footer__grid > div:last-child { grid-column: 1 / -1; }
  .fd-footer__bottom { align-items: flex-start; flex-direction: column; }
}

html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .fd-button svg, html[dir="rtl"] .fd-text-link svg { transform: scaleX(-1); }
html[dir="rtl"] .fd-celebration-card__body p { padding-right: 0; padding-left: 35px; }
html[dir="rtl"] .fd-celebration-card__body a { right: auto; left: 24px; }
