:root {
  --blush: #f2d4d0;
  --blush-light: #faf0ef;
  --blush-mid: #e8bfba;
  --rose: #b5404a;
  --rose-dark: #8b2d35;
  --rose-deep: #6b1e25;
  --petal: #e8a0a8;
  --cream: #fdf8f7;
  --text: #3a2022;
  --text-mid: #6b4045;
  --text-light: #9a7075;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(253, 248, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blush-mid);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--rose-dark);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--rose); }

.nav-cta {
  background: var(--rose);
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2rem;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--rose-dark) !important; color: white !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 5rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--petal);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--rose-deep);
  margin-bottom: 0.3rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.hero-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--rose);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(181, 64, 74, 0.25);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(181, 64, 74, 0.35);
}

.btn-secondary {
  color: var(--rose);
  padding: 0.9rem 2.2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  border: 1.5px solid var(--blush-mid);
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: var(--rose);
  background: var(--blush-light);
}

.hero-right {
  position: relative;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 50%, var(--blush-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Decorative blossom pattern on hero right */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(181,64,74,0.08) 0%, transparent 40%);
}

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(253,248,247,0.85);
  backdrop-filter: blur(20px);
  border-radius: 2rem;
  padding: 3rem;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(139, 45, 53, 0.12);
  border: 1px solid rgba(255,255,255,0.8);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card-blossom {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--rose-deep);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-card-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

.hero-card-stat {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--blush-mid);
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose);
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  display: block;
  margin-top: 0.2rem;
}

/* Floating petals */
.petal-float {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
  font-size: 1.5rem;
  animation: petalDrift linear infinite;
}

@keyframes petalDrift {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--rose);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 300;
}

.trust-item span:first-child { font-size: 1.2rem; }

/* ── SECTION BASE ── */
section { padding: 3rem 0; scroll-margin-top: 5rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blush-light);
  border: 1px solid var(--blush-mid);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin: 0 auto 1.5rem;
}

.container > .section-eyebrow { display: flex; width: fit-content; margin: 0 auto 1.5rem; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--rose-deep);
  text-align: center;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
  font-weight: 300;
}

/* ── SERVICES ── */
.services { background: var(--blush-light); }

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

.service-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--blush-mid);
  transition: all 0.3s;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(139,45,53,0.1);
  border-color: var(--petal);
}

.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1.2rem;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--rose-dark);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 300;
}

/* ── HOW IT WORKS ── */
.how-it-works { background: white; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--blush-mid), var(--petal), var(--blush-mid));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--blush-mid));
  border: 2px solid var(--petal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--rose-dark);
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--rose-dark);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 300;
}

/* ── FEATURED COMMUNITIES ── */
.featured { background: white; }

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

.featured-card {
  background: var(--cream);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--blush-mid);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 32, 34, 0.1);
}

.featured-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--rose-dark);
  margin-bottom: 0.5rem;
}

.featured-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.featured-type-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.15rem 0.5rem;
  border-radius: 1rem;
  background: var(--blush);
  color: var(--rose-dark);
}

.featured-address {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.featured-phone {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.featured-phone a {
  color: var(--rose);
  text-decoration: none;
}

.featured-phone a:hover { text-decoration: underline; }

.featured-website {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.featured-website:hover { color: var(--rose-dark); }

.featured-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
  font-size: 0.95rem;
  display: none;
}

/* ── MINI MAP IN FEATURED CARDS ── */
.featured-map-wrap {
  position: relative;
  margin-top: auto;
  padding-top: 1rem;
}
.featured-map {
  height: 160px;
  border-radius: 0.75rem;
  border: 1px solid var(--blush-mid);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(58, 32, 34, 0.08);
}
.featured-map-link {
  position: absolute;
  inset: 1rem 0 0 0;
  z-index: 5;
  cursor: pointer;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--blush-light); }

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

.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid var(--blush-mid);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--blush-mid);
  line-height: 0;
  position: absolute;
  top: 2.5rem;
  left: 2rem;
  opacity: 0.6;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--petal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose-dark);
}

.author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.author-location {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
}

.stars {
  color: var(--rose);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

/* ── ABOUT ── */
.about { background: white; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blush-light);
  border: 1px solid var(--blush-mid);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin-bottom: 1.5rem;
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--rose-deep);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-title em { font-style: italic; font-weight: 400; }

.about-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--rose);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.value-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; font-weight: 300; }

.about-visual {
  position: relative;
}

.about-photo-frame {
  background: linear-gradient(135deg, var(--blush-light), var(--blush), var(--blush-mid));
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--blush-mid);
  position: relative;
  overflow: hidden;
}

.about-photo-frame::before {
  content: '🌸';
  position: absolute;
  font-size: 8rem;
  opacity: 0.15;
  top: -1rem;
  right: -1rem;
}

.about-photo-frame::after {
  content: '🌸';
  position: absolute;
  font-size: 6rem;
  opacity: 0.1;
  bottom: -1rem;
  left: -1rem;
}

.consultant-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: 0.3rem;
}

.consultant-title {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.credential-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.credential-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
}

.credential-list li::before {
  content: '✦';
  color: var(--petal);
  font-size: 0.6rem;
}

/* ── CONTACT ── */
.contact { background: linear-gradient(135deg, var(--rose-deep), var(--rose-dark), var(--rose)); }

.contact .section-eyebrow { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.contact .section-title { color: white; }
.contact .section-body { color: rgba(255,255,255,0.75); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 0.3rem;
}

.contact-item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: white;
  font-weight: 400;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0.6rem;
  padding: 0.8rem 1rem;
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.6);
}

.form-group select option { background: var(--rose-dark); }

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-form {
  width: 100%;
  background: white;
  color: var(--rose-dark);
  border: none;
  padding: 1rem;
  border-radius: 3rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem;
}

.btn-form:hover:not(:disabled) {
  background: var(--blush-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-form:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-error {
  font-size: 0.78rem;
  color: rgba(255, 180, 180, 0.9);
  display: none;
  margin-top: 0.15rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(255,255,255,0.15);
  padding: 1rem 1.2rem;
  color: rgba(255,255,255,0.9);
}

.form-status.error {
  display: block;
  background: rgba(255,100,100,0.15);
  padding: 1rem 1.2rem;
  color: rgba(255,180,180,0.95);
}

/* ── FOOTER ── */
footer {
  background: var(--rose-deep);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.footer-blossom { font-size: 1.2rem; opacity: 0.5; }

.footer-admin {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  margin-top: 0.5rem;
  display: inline-block;
}
.footer-admin:hover { color: rgba(255,255,255,0.5); }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--rose-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 7rem 2.5rem 3rem; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid > * { min-width: 0; }
  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  nav { padding: 1rem 1.5rem; }
  .container { padding: 0 1rem; }
  section { padding: 2rem 0; }

  .nav-toggle { display: block; }

  .trust-bar { padding: 1rem 1.5rem; gap: 1.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 105;
    padding: 2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
  }

  .nav-links li { list-style: none; }
}
