:root {
  --cream: #f2e3ca;
  --parchment: #f6ead5;
  --paper: #fbf0dc;
  --oatmeal: #e3ceb0;
  --linen: #ead7ba;
  --ink: #4d3b32;
  --soft-ink: #6e584d;
  --faded-ink: #8f7769;
  --clay: #b76f58;
  --clay-dark: #985946;
  --brown: #7a5947;
  --sage: #8f9478;
  --border: rgba(128, 90, 67, 0.18);
  --shadow: 0 18px 45px rgba(91, 59, 42, 0.13);
  --soft-shadow: 0 10px 30px rgba(91, 59, 42, 0.09);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 241, 214, 0.82), transparent 32rem),
    linear-gradient(135deg, var(--cream), #decaab 100%);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.28;
  background-image:
    radial-gradient(rgba(88, 61, 42, 0.18) 0.55px, transparent 0.55px),
    radial-gradient(rgba(255, 255, 255, 0.35) 0.55px, transparent 0.55px);
  background-position: 0 0, 7px 9px;
  background-size: 14px 14px, 18px 18px;
  mix-blend-mode: multiply;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-weight: 700;
}

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  padding: 2rem clamp(1.25rem, 4vw, 4rem) 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(236, 198, 134, 0.26), transparent 24rem),
    radial-gradient(circle at 8% 8%, rgba(255, 244, 221, 0.72), transparent 28rem),
    linear-gradient(135deg, #f3e2c7 0%, #ead4b4 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(126, 88, 61, 0.045) 0 1px, transparent 1px 18px),
    radial-gradient(rgba(91, 59, 42, 0.12) 0.6px, transparent 0.6px);
  background-size: auto, 16px 16px;
  opacity: 0.44;
  pointer-events: none;
}

.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(128, 90, 67, 0.14);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: clamp(5.25rem, 10vw, 7.25rem);
  max-width: 34vw;
  padding: 0.25rem;
  border-radius: 50%;
  background: rgba(246, 234, 213, 0.55);
  box-shadow: 0 8px 18px rgba(91, 59, 42, 0.08);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(91, 59, 42, 0.12);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--soft-ink);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--clay-dark);
  transform: translateY(-1px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 11rem);
}

.hero-content {
  max-width: 720px;
  padding: 1.25rem 0;
}

.eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1rem;
  color: var(--clay-dark);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(3.25rem, 8vw, 5.8rem);
  line-height: 0.94;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.hero-text {
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  margin-bottom: 2rem;
  max-width: 610px;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-button,
.join-button,
.secondary-button {
  border: 1px solid rgba(103, 63, 46, 0.16);
  padding: 0.98rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 18px rgba(122, 74, 52, 0.18);
}

.hero-button,
.join-button {
  background: linear-gradient(180deg, #c8836e, var(--clay));
  color: #fffaf1;
}

.secondary-button {
  background: rgba(255, 247, 232, 0.7);
  color: var(--brown);
  box-shadow: 0 8px 18px rgba(91, 59, 42, 0.08);
}

.hero-button:hover,
.join-button:hover,
.secondary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 25px rgba(122, 74, 52, 0.2);
}

.hero-button:hover,
.join-button:hover {
  background: linear-gradient(180deg, #bd755f, var(--clay-dark));
}

.secondary-button:hover {
  background: var(--paper);
}

.hero-atmosphere {
  position: relative;
  min-height: 540px;
  border-radius: 42px 34px 48px 32px;
  overflow: hidden;
  border: 1px solid rgba(114, 78, 55, 0.2);
  background:
    linear-gradient(180deg, rgba(64, 41, 29, 0.1), rgba(84, 54, 35, 0.36)),
    url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=1200&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  box-shadow:
    0 34px 70px rgba(77, 51, 33, 0.24),
    inset 0 0 0 12px rgba(246, 234, 213, 0.2);
  transform: rotate(0.6deg);
  animation: atmosphericDrift 14s ease-in-out infinite;
}

.hero-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 228, 166, 0.36), transparent 18rem),
    linear-gradient(90deg, rgba(251, 240, 220, 0.28), transparent 54%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 42%, rgba(58, 36, 24, 0.28) 100%),
    radial-gradient(rgba(82, 54, 37, 0.18) 0.7px, transparent 0.7px);
  background-size: auto, 13px 13px;
  opacity: 0.62;
}

.photo-wash,
.light-leak,
.table-edge {
  position: absolute;
  pointer-events: none;
}

.photo-wash {
  inset: 1.2rem;
  border: 1px solid rgba(255, 242, 219, 0.24);
  border-radius: 34px 28px 40px 28px;
  box-shadow: inset 0 0 42px rgba(255, 237, 204, 0.2);
}

.light-leak {
  left: -5rem;
  top: -5rem;
  width: 20rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 206, 126, 0.42), transparent 68%);
  filter: blur(4px);
}

.table-edge {
  left: 8%;
  right: 7%;
  bottom: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 200, 0.34), transparent);
}

.card::before,
.step::before,
.faq-item::before,
.letter-card::before,
.pricing-card::before,
.simple-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(90deg, rgba(122, 82, 56, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(122, 82, 56, 0.045) 1px, transparent 1px);
  background-size: 23px 23px;
  border-radius: inherit;
}

.section {
  padding: clamp(5rem, 8vw, 7.5rem) 2rem;
  position: relative;
}

.section::after,
.founder-section::after,
.featured-letter::after,
.pricing-section::after,
.contact-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(78rem, calc(100% - 3rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(128, 90, 67, 0.18), transparent);
}

.section-content {
  max-width: 850px;
  margin: auto;
}

.section-label {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--clay-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.center {
  text-align: center;
}

.section h2,
.featured-letter h2,
.pricing-card h2,
.faq-section h2 {
  font-size: clamp(2.7rem, 6vw, 4.4rem);
  margin-bottom: 1.25rem;
  line-height: 0.98;
}

.section-content > p:not(.section-label) {
  color: var(--soft-ink);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.founder-section {
  position: relative;
  padding: clamp(5rem, 8vw, 7.5rem) 2rem;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 232, 183, 0.36), transparent 24rem),
    linear-gradient(180deg, var(--cream), #ead6ba);
}

.founder-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(72rem, calc(100% - 3rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(128, 90, 67, 0.24), transparent);
}

.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--border);
  border-radius: 34px 28px 38px 26px;
  background:
    linear-gradient(145deg, rgba(251, 240, 220, 0.96), rgba(238, 218, 188, 0.78));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(122, 82, 56, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(122, 82, 56, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: inherit;
}

.founder-photo {
  position: sticky;
  top: 2rem;
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid rgba(128, 90, 67, 0.2);
  border-radius: 26px 22px 30px 20px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 231, 181, 0.55), transparent 12rem),
    linear-gradient(145deg, #ead6ba, #f7ead7);
  box-shadow:
    inset 0 0 0 10px rgba(255, 247, 232, 0.32),
    0 18px 34px rgba(91, 59, 42, 0.12);
  overflow: hidden;
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(128, 90, 67, 0.16);
  border-radius: 20px 18px 24px 18px;
}

.founder-photo span {
  position: relative;
  color: var(--faded-ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
}

.founder-photo img {
  position: relative;
  display: block;
  width: min(78%, 320px);
  height: auto;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 22px rgba(91, 59, 42, 0.12));
}

.founder-story {
  position: relative;
  max-width: 660px;
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
}

.founder-story h2 {
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.98;
  margin-bottom: 1.6rem;
}

.founder-story p:not(.section-label) {
  color: var(--soft-ink);
  font-size: 1.05rem;
  margin-top: 1.05rem;
}

.how-section {
  background:
    linear-gradient(rgba(251, 241, 223, 0.88), rgba(251, 241, 223, 0.88)),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(128, 90, 67, 0.04) 29px);
}

.how-section h2,
.faq-section h2 {
  text-align: center;
}

.steps-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.step,
.card,
.faq-item,
.letter-card,
.pricing-card,
.simple-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 247, 232, 0.96), rgba(241, 222, 191, 0.72));
  border: 1px solid var(--border);
  box-shadow: var(--soft-shadow);
}

.step,
.card {
  padding: 2rem;
  border-radius: 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step:hover,
.card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-number {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #ead4b4;
  color: var(--clay-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(128, 90, 67, 0.12);
}

.step h3,
.card h3,
.faq-item h3 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
}

.step p,
.card p,
.faq-item p {
  color: var(--soft-ink);
}

.cards-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 232, 183, 0.45), transparent 22rem),
    var(--linen);
}

.featured-letter {
  position: relative;
  padding: clamp(5rem, 8vw, 7.5rem) 2rem;
}

.letter-card {
  max-width: 840px;
  margin: auto;
  padding: clamp(2.4rem, 6vw, 4rem);
  border-radius: 30px 24px 34px 22px;
  box-shadow: var(--shadow);
}

.letter-card::after {
  content: "with care";
  position: absolute;
  right: 2.2rem;
  bottom: 1.4rem;
  color: rgba(152, 89, 70, 0.25);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  transform: rotate(-5deg);
}

.letter-text {
  margin-top: 2rem;
  color: var(--soft-ink);
  font-size: 1.1rem;
  white-space: pre-line;
}

.reply-quote {
  margin-top: 1.5rem;
  color: var(--brown);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
}

.signature {
  margin-top: 2rem;
  color: var(--brown);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
}

.reply-note {
  margin-top: 1.25rem;
  color: var(--faded-ink);
  font-size: 0.95rem;
  font-style: italic;
}

.pricing-section {
  position: relative;
  padding: clamp(5rem, 8vw, 7.5rem) 2rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 217, 145, 0.28), transparent 20rem),
    var(--cream);
}

.pricing-card {
  max-width: 620px;
  margin: auto;
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 2rem;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.checkout-note {
  margin-top: 1rem;
  color: var(--faded-ink);
  font-size: 0.95rem;
}

.pricing-link {
  display: block;
  margin-top: 1rem;
  color: var(--clay-dark);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.pricing-link:hover {
  text-decoration: underline;
}

.faq-section {
  background:
    linear-gradient(rgba(234, 216, 189, 0.9), rgba(234, 216, 189, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(128, 90, 67, 0.035) 35px);
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  padding: 1.55rem 1.8rem;
  border-radius: 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-section {
  position: relative;
  padding: clamp(5rem, 8vw, 7rem) 2rem;
  background:
    radial-gradient(circle at 45% 0%, rgba(255, 232, 183, 0.3), transparent 22rem),
    var(--cream);
}

.contact-card {
  position: relative;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: clamp(2.6rem, 6vw, 4rem) 2rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 30px 24px 34px 24px;
  background: linear-gradient(145deg, rgba(255, 247, 232, 0.96), rgba(241, 222, 191, 0.74));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(122, 82, 56, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(122, 82, 56, 0.045) 1px, transparent 1px);
  background-size: 23px 23px;
}

.contact-card h2 {
  position: relative;
  font-size: clamp(2.7rem, 6vw, 4.2rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.contact-card p,
.contact-email {
  position: relative;
}

.contact-card p:not(.section-label) {
  max-width: 520px;
  margin: 0 auto 1.4rem;
  color: var(--soft-ink);
}

.contact-email {
  display: inline-block;
  color: var(--clay-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(152, 89, 70, 0.35);
  overflow-wrap: anywhere;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contact-email:hover {
  color: var(--brown);
  border-color: var(--brown);
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(rgba(247, 234, 215, 0.88), rgba(247, 234, 215, 0.94)),
    url('https://images.unsplash.com/photo-1517705008128-361805f42e86?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.simple-card {
  max-width: 700px;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  border-radius: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.simple-card h1 {
  font-size: clamp(3rem, 7vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.simple-card p {
  margin-bottom: 1rem;
  color: var(--soft-ink);
}

.legal-card,
.legal-card h1 {
  text-align: left;
}

.legal-card h2 {
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-size: 2rem;
  line-height: 1.05;
}

.legal-card .join-button {
  margin-top: 1rem;
}

.legal-note {
  color: var(--faded-ink);
  font-size: 0.95rem;
  font-style: italic;
}

.policy-list {
  margin: 0 0 1.25rem 1.25rem;
  color: var(--soft-ink);
}

.policy-list li {
  margin-bottom: 0.35rem;
}

.admin-page {
  min-height: 100vh;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at top left, rgba(255, 232, 183, 0.36), transparent 28rem),
    linear-gradient(135deg, var(--cream), #decaab 100%);
}

.admin-card {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--border);
  border-radius: 32px 26px 36px 24px;
  background: linear-gradient(145deg, rgba(255, 247, 232, 0.96), rgba(241, 222, 191, 0.76));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.admin-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, rgba(122, 82, 56, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(122, 82, 56, 0.045) 1px, transparent 1px);
  background-size: 23px 23px;
}

.admin-header,
.admin-login,
.admin-workspace,
.admin-message {
  position: relative;
}

.admin-header {
  max-width: 680px;
  margin-bottom: 2rem;
}

.admin-header h1 {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 0.96;
  margin-bottom: 1rem;
}

.admin-header p:not(.section-label),
.admin-user,
.admin-message {
  color: var(--soft-ink);
}

.admin-login,
.reply-form {
  display: grid;
  gap: 1rem;
}

.admin-login {
  max-width: 460px;
}

.admin-card label {
  display: grid;
  gap: 0.35rem;
  color: var(--brown);
  font-weight: 700;
}

.admin-card input[type="email"],
.admin-card input[type="password"],
.admin-card input[type="text"],
.admin-card input[type="date"],
.admin-card textarea {
  width: 100%;
  border: 1px solid rgba(128, 90, 67, 0.24);
  border-radius: 14px;
  background: rgba(255, 247, 232, 0.78);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 1rem;
  box-shadow: inset 0 1px 4px rgba(91, 59, 42, 0.06);
}

.admin-card textarea {
  resize: vertical;
  min-height: 180px;
}

.admin-message {
  min-height: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.admin-message.error {
  color: var(--clay-dark);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 0.5rem 0;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.checkbox-row input {
  width: 1.1rem;
  height: 1.1rem;
}

.danger-button {
  color: var(--clay-dark);
  border-color: rgba(152, 89, 70, 0.32);
}

.danger-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.saved-replies {
  margin-top: 3rem;
}

.saved-replies h2 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  margin-bottom: 1.4rem;
}

.reply-list {
  display: grid;
  gap: 1rem;
}

.saved-reply-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 247, 232, 0.68);
  box-shadow: var(--soft-shadow);
}

.saved-reply-item h3 {
  margin: 0.35rem 0;
  font-size: 1.65rem;
}

.saved-reply-item p,
.empty-admin-list {
  color: var(--soft-ink);
}

.saved-reply-date {
  font-size: 0.92rem;
}

.reply-status {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.reply-status.published {
  color: #53613f;
  background: rgba(143, 148, 120, 0.2);
}

.reply-status.hidden {
  color: var(--faded-ink);
  background: rgba(128, 90, 67, 0.12);
}

.saved-reply-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer {
  text-align: center;
  padding: 2.5rem 2rem;
  color: var(--faded-ink);
  background: #ead8bd;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--clay-dark);
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

@keyframes atmosphericDrift {
  0%, 100% {
    transform: rotate(0.6deg) translateY(0);
  }
  50% {
    transform: rotate(0.2deg) translateY(-6px);
  }
}

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    position: relative;
    top: auto;
    min-height: 320px;
  }

  .founder-story {
    max-width: 100%;
  }

  .hero-atmosphere {
    min-height: 360px;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 1.35rem 1.25rem 3rem;
  }

  .navbar {
    margin-bottom: 2.5rem;
    align-items: flex-start;
  }

  .logo {
    width: clamp(4.75rem, 22vw, 6rem);
  }

  .nav-links {
    gap: 0.65rem 1rem;
  }

  .hero-inner {
    min-height: auto;
  }

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

  .section,
  .founder-section,
  .featured-letter,
  .pricing-section,
  .contact-section {
    padding: 4.5rem 1.25rem;
  }

  .founder-card {
    padding: 1.25rem;
    border-radius: 28px 22px 32px 22px;
  }

  .founder-photo {
    min-height: 260px;
  }

  .founder-story p:not(.section-label) {
    font-size: 1rem;
  }

  .letter-card,
  .pricing-card,
  .contact-card,
  .simple-card,
  .admin-card {
    padding: 2.5rem 1.5rem;
  }

  .admin-grid,
  .saved-reply-item {
    grid-template-columns: 1fr;
  }

  .saved-reply-item,
  .admin-toolbar {
    align-items: flex-start;
  }

  .saved-reply-item {
    flex-direction: column;
  }

  .saved-reply-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .button-row {
    align-items: stretch;
  }

  .hero-button,
  .join-button,
  .secondary-button {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Feminine polish layer: soft blush, rose-brown ink, and delicate stationery details. */
:root {
  --cream: #f5e5d2;
  --parchment: #faecdc;
  --paper: #fff3e5;
  --linen: #ecd6c3;
  --ink: #4a342f;
  --soft-ink: #6f514a;
  --faded-ink: #95786f;
  --clay: #bd796b;
  --clay-dark: #96594f;
  --brown: #744d45;
  --rose: #c99592;
  --rose-light: #ead0cc;
  --blush: #f4ddd7;
  --border: rgba(142, 91, 78, 0.2);
  --shadow: 0 20px 50px rgba(91, 52, 45, 0.13);
  --soft-shadow: 0 12px 32px rgba(91, 52, 45, 0.09);
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 238, 224, 0.88), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(232, 191, 184, 0.32), transparent 24rem),
    linear-gradient(135deg, var(--cream), #e8cfb9 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 19;
  opacity: 0.24;
  background:
    radial-gradient(circle at 14% 26%, rgba(189, 121, 107, 0.16) 0 1.5px, transparent 1.7px),
    radial-gradient(circle at 82% 68%, rgba(143, 148, 120, 0.13) 0 1.4px, transparent 1.6px);
  background-size: 84px 84px, 96px 96px;
}

.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(232, 191, 184, 0.34), transparent 24rem),
    radial-gradient(circle at 8% 8%, rgba(255, 244, 226, 0.82), transparent 28rem),
    linear-gradient(135deg, #f7e6d3 0%, #e8cfb9 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: 2.5rem;
  width: clamp(7rem, 18vw, 14rem);
  height: clamp(7rem, 18vw, 14rem);
  border: 1px solid rgba(150, 89, 79, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 18%, rgba(189, 121, 107, 0.13) 0 4px, transparent 5px),
    radial-gradient(circle at 30% 50%, rgba(143, 148, 120, 0.14) 0 5px, transparent 6px),
    radial-gradient(circle at 70% 52%, rgba(143, 148, 120, 0.12) 0 4px, transparent 5px);
  opacity: 0.45;
  filter: blur(0.2px);
  pointer-events: none;
}

.navbar {
  border-bottom-color: rgba(150, 89, 79, 0.16);
}

.nav-links a:hover,
.section-label,
.pricing-link,
.contact-email {
  color: var(--clay-dark);
}

.hero-button,
.join-button {
  background: linear-gradient(180deg, #c98579, var(--clay));
  box-shadow: 0 10px 22px rgba(150, 89, 79, 0.2);
}

.secondary-button {
  background: rgba(255, 243, 229, 0.78);
  border-color: rgba(150, 89, 79, 0.24);
}

.step,
.card,
.faq-item,
.letter-card,
.pricing-card,
.simple-card,
.founder-card,
.contact-card,
.admin-card {
  background:
    linear-gradient(145deg, rgba(255, 245, 232, 0.98), rgba(242, 221, 202, 0.78));
  border-color: rgba(150, 89, 79, 0.18);
  box-shadow: var(--soft-shadow);
}

.card,
.step,
.faq-item {
  border-radius: 26px 20px 28px 22px;
}

.letter-card,
.pricing-card,
.founder-card,
.contact-card,
.admin-card {
  box-shadow:
    0 24px 54px rgba(91, 52, 45, 0.13),
    inset 0 0 0 1px rgba(255, 249, 240, 0.45);
}

.letter-card::after {
  color: rgba(189, 121, 107, 0.28);
}

.founder-photo {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 229, 203, 0.62), transparent 12rem),
    linear-gradient(145deg, #efd8c5, #faecdc);
}

.hero-atmosphere {
  border-color: rgba(150, 89, 79, 0.24);
  box-shadow:
    0 34px 70px rgba(91, 52, 45, 0.2),
    inset 0 0 0 12px rgba(250, 236, 220, 0.22);
}

.footer {
  background: #e8cfb9;
}

.floral-corner {
  position: fixed;
  z-index: 1;
  width: 160px;
  height: 220px;
  pointer-events: none;
  opacity: 0.42;
}

.floral-corner-left {
  left: 0.75rem;
  bottom: 1.25rem;
}

.floral-corner-right {
  right: 0.75rem;
  top: 8.5rem;
  transform: scaleX(-1) rotate(-4deg);
}

.stem,
.leaf,
.bloom {
  position: absolute;
  display: block;
}

.stem {
  bottom: 0;
  width: 1px;
  background: rgba(104, 111, 82, 0.42);
  transform-origin: bottom center;
}

.stem-one {
  left: 72px;
  height: 172px;
  transform: rotate(-15deg);
}

.stem-two {
  left: 90px;
  height: 136px;
  transform: rotate(18deg);
}

.leaf {
  width: 34px;
  height: 16px;
  border-radius: 100% 0 100% 0;
  background: rgba(143, 148, 120, 0.24);
  border: 1px solid rgba(104, 111, 82, 0.16);
}

.leaf-one {
  left: 42px;
  bottom: 72px;
  transform: rotate(-28deg);
}

.leaf-two {
  left: 88px;
  bottom: 104px;
  transform: rotate(38deg);
}

.bloom {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(189, 121, 107, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(150, 89, 79, 0.22) 0 3px, transparent 4px),
    radial-gradient(circle at 35% 35%, rgba(244, 221, 215, 0.72), rgba(201, 149, 146, 0.28));
  box-shadow: 0 8px 18px rgba(91, 52, 45, 0.06);
}

.bloom::before,
.bloom::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(150, 89, 79, 0.12);
}

.bloom::after {
  inset: 11px;
}

.bloom-one {
  left: 30px;
  top: 36px;
}

.bloom-two {
  left: 100px;
  top: 72px;
  width: 28px;
  height: 28px;
  opacity: 0.78;
}

.founder-card::after,
.contact-card::after,
.letter-card .section-label::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.24;
  background:
    radial-gradient(circle at 50% 22%, rgba(189, 121, 107, 0.28) 0 4px, transparent 5px),
    radial-gradient(circle at 28% 62%, rgba(143, 148, 120, 0.22) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 62%, rgba(143, 148, 120, 0.18) 0 4px, transparent 5px);
}

.founder-card::after {
  right: 1.4rem;
  bottom: 1.4rem;
  width: 110px;
  height: 110px;
  border-radius: 50%;
}

.contact-card::after {
  left: 1.2rem;
  top: 1.2rem;
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.letter-card .section-label::after {
  right: 2rem;
  top: 1.8rem;
  width: 78px;
  height: 78px;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .floral-corner {
    opacity: 0.24;
    width: 110px;
    height: 150px;
  }

  .floral-corner-right {
    display: none;
  }
}

/* Pressed-flower refinement: intentional accents instead of large floral haze. */
body::after,
.hero::after,
.floral-corner {
  display: none;
}

:root {
  --cream: #f7e7d4;
  --paper: #fff4e7;
  --linen: #edd7c1;
  --ink: #49332f;
  --soft-ink: #6b4e48;
  --dusty-mauve: #a8747a;
  --pressed-rose: #b96f73;
  --pressed-rose-dark: #8f5158;
  --pressed-sage: #788266;
  --pressed-sage-soft: #a6ad8f;
  --warm-brown: #765047;
  --border: rgba(143, 81, 88, 0.24);
}

.section-label {
  position: relative;
}

.section-label.center::after,
.pricing-card .section-label::after,
.contact-card .section-label::after {
  content: "";
  display: block;
  width: 118px;
  height: 16px;
  margin: 0.85rem auto 0;
  background:
    linear-gradient(90deg, transparent, rgba(118, 130, 102, 0.6), transparent),
    radial-gradient(circle at 28% 50%, var(--pressed-rose) 0 4px, transparent 5px),
    radial-gradient(circle at 38% 42%, rgba(185, 111, 115, 0.7) 0 3px, transparent 4px),
    radial-gradient(circle at 65% 52%, var(--pressed-sage) 0 4px, transparent 5px),
    radial-gradient(circle at 73% 42%, rgba(166, 173, 143, 0.8) 0 3px, transparent 4px);
  background-repeat: no-repeat;
  background-size: 100% 1px, auto, auto, auto, auto;
  background-position: center, center, center, center, center;
}

.section::after,
.founder-section::after,
.featured-letter::after,
.pricing-section::after,
.contact-section::after {
  height: 22px;
  background:
    linear-gradient(90deg, transparent 0 32%, rgba(118, 130, 102, 0.52) 32% 68%, transparent 68% 100%),
    radial-gradient(circle at 46% 50%, rgba(185, 111, 115, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 43%, rgba(168, 116, 122, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 54% 50%, rgba(185, 111, 115, 0.9) 0 4px, transparent 5px);
  background-size: 100% 1px, auto, auto, auto;
  background-repeat: no-repeat;
  background-position: center;
}

.card,
.step,
.faq-item {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(143, 81, 88, 0.22);
  box-shadow:
    0 12px 28px rgba(73, 51, 47, 0.08),
    inset 0 0 0 1px rgba(255, 249, 240, 0.5);
}

.card::after,
.step::after,
.faq-item::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 34px;
  height: 34px;
  opacity: 0.65;
  pointer-events: none;
  background:
    linear-gradient(145deg, transparent 45%, rgba(118, 130, 102, 0.58) 46% 52%, transparent 53%),
    radial-gradient(circle at 35% 35%, rgba(185, 111, 115, 0.84) 0 4px, transparent 5px),
    radial-gradient(circle at 62% 58%, rgba(166, 173, 143, 0.9) 0 4px, transparent 5px);
}

.pricing-section {
  background:
    radial-gradient(circle at 50% 8%, rgba(244, 221, 215, 0.62), transparent 23rem),
    linear-gradient(180deg, #f7e7d4, #edd7c1);
}

.pricing-card {
  max-width: 700px;
  padding-top: clamp(3.5rem, 7vw, 5rem);
  border: 1px solid rgba(143, 81, 88, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 246, 235, 0.98), rgba(242, 219, 202, 0.9));
}

.pricing-card::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 120px;
  height: 120px;
  opacity: 0.72;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 46%, rgba(118, 130, 102, 0.62) 47% 50%, transparent 51%),
    linear-gradient(45deg, transparent 46%, rgba(118, 130, 102, 0.5) 47% 50%, transparent 51%),
    radial-gradient(circle at 36% 38%, rgba(185, 111, 115, 0.88) 0 7px, transparent 8px),
    radial-gradient(circle at 47% 30%, rgba(168, 116, 122, 0.78) 0 5px, transparent 6px),
    radial-gradient(circle at 62% 56%, rgba(166, 173, 143, 0.92) 0 7px, transparent 8px),
    radial-gradient(circle at 68% 42%, rgba(120, 130, 102, 0.82) 0 5px, transparent 6px);
  transform: rotate(-7deg);
}

.pricing-card p:not(.section-label) {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-button,
.join-button {
  background: linear-gradient(180deg, #c77d79, #a95f61);
}

.hero-button:hover,
.join-button:hover {
  background: linear-gradient(180deg, #b96f73, #8f5158);
}

.footer::before {
  content: "";
  display: block;
  width: 140px;
  height: 18px;
  margin: 0 auto 1rem;
  background:
    linear-gradient(90deg, transparent, rgba(118, 130, 102, 0.68), transparent),
    radial-gradient(circle at 42% 50%, rgba(185, 111, 115, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 51% 44%, rgba(168, 116, 122, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 59% 50%, rgba(185, 111, 115, 0.9) 0 4px, transparent 5px);
  background-size: 100% 1px, auto, auto, auto;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .card::after,
  .step::after,
  .faq-item::after {
    opacity: 0.42;
  }

  .pricing-card::after {
    width: 82px;
    height: 82px;
    opacity: 0.42;
  }
}
