:root {
  --bg: #fff6fb;
  --bg-soft: #ffd7ec;
  --surface: rgba(255, 255, 255, 0.58);
  --surface-strong: rgba(255, 255, 255, 0.82);
  --text: #4d1933;
  --text-muted: #7f4b65;
  --accent: #ff5ca8;
  --accent-strong: #ff2f92;
  --accent-soft: #ffc1df;
  --gold: #f5b7cf;
  --line: rgba(169, 72, 112, 0.14);
  --shadow-lg: 0 28px 60px rgba(150, 57, 100, 0.22);
  --shadow-md: 0 18px 32px rgba(150, 57, 100, 0.16);
  --shadow-sm: 0 10px 20px rgba(150, 57, 100, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 182, 217, 0.85), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 128, 190, 0.28), transparent 24%),
    linear-gradient(180deg, #fffafc 0%, #ffe5f1 44%, #fff4f9 100%);
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

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

code {
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--accent-strong);
}

.ambient {
  position: fixed;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.58;
  z-index: -1;
  animation: drift 16s ease-in-out infinite alternate;
}

.ambient-one {
  top: -140px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 131, 189, 0.45), transparent 68%);
}

.ambient-two {
  top: 28%;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 200, 225, 0.78), transparent 70%);
  animation-duration: 22s;
}

.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.sparkles::before,
.sparkles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 80%, rgba(255, 208, 228, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 34%, rgba(255, 255, 255, 0.95) 0 1.8px, transparent 3px),
    radial-gradient(circle at 70% 70%, rgba(255, 205, 231, 0.8) 0 2px, transparent 3px);
  opacity: 0.5;
  animation: sparklePulse 7s linear infinite;
}

.sparkles::after {
  animation-duration: 10s;
  transform: scale(1.08);
  opacity: 0.38;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.2rem);
  min-height: var(--header-height);
  backdrop-filter: blur(18px);
  background: rgba(255, 247, 251, 0.74);
  border-bottom: 1px solid rgba(196, 91, 135, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(145deg, #ff9cc9, #ff4ea2);
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 1.4vw, 1.4rem);
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0.2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 84, 158, 0), rgba(255, 84, 158, 1), rgba(255, 84, 158, 0));
  transform: scaleX(0.4);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pill-button,
.secondary-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.primary-button {
  background: linear-gradient(135deg, #ff85bf, #ff378f);
  color: white;
  box-shadow: 0 16px 32px rgba(255, 70, 153, 0.28);
}

.secondary-button,
.pill-button {
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.primary-button:hover,
.secondary-button:hover,
.pill-button:hover,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.pill-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.8rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding-top: clamp(2rem, 6vw, 4rem);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero h1,
.section-heading h2,
.letter-card h2,
.letter-modal__content h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.3rem, 8vw, 6.4rem);
}

.hero h1 span {
  display: block;
  color: var(--accent-strong);
}

.hero-text,
.section-text,
.glass-card p,
.badge-card p,
.quality-display p,
.letter-card p,
.letter-modal__content p {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  padding: 1.2rem 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 244, 249, 0.72));
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
  color: var(--accent-strong);
}

.hero-stats span {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(255, 233, 244, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-card-main {
  padding: 2rem;
  min-height: 320px;
  display: grid;
  align-content: end;
  overflow: hidden;
  position: relative;
}

.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-xl) - 12px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(255, 132, 190, 0.38), transparent 28%);
  pointer-events: none;
}

.card-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card-main h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-card-main p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.hero-card-floating {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1rem;
  width: min(100%, 78%);
  margin-left: auto;
}

.hero-card-floating span {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  box-shadow: var(--shadow-sm);
}

.polaroid-stack {
  position: absolute;
  inset: auto auto -1.2rem -1rem;
  width: 240px;
  height: 240px;
  pointer-events: none;
}

.polaroid {
  position: absolute;
  width: 190px;
  padding: 1rem 1rem 1.5rem;
  background: #fffafc;
  border-radius: 22px;
  box-shadow: 0 26px 48px rgba(142, 45, 95, 0.22);
  transform-origin: center;
}

.polaroid-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 202, 228, 0.9), rgba(255, 103, 174, 0.28)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), transparent 30%);
}

.polaroid-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), transparent 28%);
  pointer-events: none;
}

.polaroid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.25s ease;
}

.polaroid.has-image .polaroid-image {
  opacity: 1;
}

.polaroid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.polaroid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.polaroid-a {
  top: 18px;
  left: 0;
  transform: rotate(-9deg);
}

.polaroid-b {
  bottom: 0;
  right: 8px;
  transform: rotate(10deg);
}

.ticker-wrap {
  overflow: hidden;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(197, 90, 133, 0.08);
  border-bottom: 1px solid rgba(197, 90, 133, 0.08);
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(12px);
}

.ticker {
  display: flex;
  gap: 3rem;
  min-width: max-content;
  padding-left: 100%;
  animation: ticker 26s linear infinite;
}

.ticker span {
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.ticker span::before {
  content: "•";
  margin-right: 3rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.letter-card h2,
.letter-modal__content h2 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.love-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.glass-card,
.badge-card,
.quality-display,
.gallery-item,
.gallery-empty,
.meta-chip,
.letter-card,
.lightbox__content,
.letter-modal__content {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 240, 247, 0.7));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.glass-card {
  position: relative;
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 117, 180, 0.2), transparent 70%);
}

.card-index {
  display: inline-flex;
  margin-bottom: 1.4rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.glass-card h3,
.badge-card h3,
.quality-display h3,
.gallery-empty h3 {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", serif;
}

.gallery-section {
  position: relative;
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-chip {
  min-width: 170px;
  padding: 1rem 1.2rem;
  border-radius: 20px;
}

.meta-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 28px;
  appearance: none;
  aspect-ratio: 4 / 5;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.gallery-item:nth-child(6n + 1),
.gallery-item:nth-child(6n + 4) {
  grid-column: span 7;
  aspect-ratio: 7 / 5;
}

.gallery-item:nth-child(6n + 2),
.gallery-item:nth-child(6n + 3),
.gallery-item:nth-child(6n + 5),
.gallery-item:nth-child(6n + 6) {
  grid-column: span 5;
  aspect-ratio: 5 / 6;
}

.gallery-item:nth-child(odd) {
  aspect-ratio: 4 / 5;
}

.gallery-item:nth-child(even) {
  aspect-ratio: 5 / 6;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 10, 31, 0.02), rgba(47, 10, 31, 0.4));
}

.gallery-item__caption {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  color: white;
  pointer-events: none;
}

.gallery-item__caption strong {
  display: block;
  font-size: 1.05rem;
}

.gallery-item__caption span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.gallery-item__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.gallery-empty {
  display: none;
  padding: 2rem;
  margin-top: 1rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.gallery-empty.is-visible {
  display: block;
}

.empty-heart {
  width: 76px;
  aspect-ratio: 1;
  margin: 0 auto 1rem;
  background:
    radial-gradient(circle at 30% 30%, #fff0f7 0 18%, transparent 19%),
    linear-gradient(135deg, #ff7ebb, #ff2f92);
  clip-path: path("M 38 69 C 12 51 0 33 0 18 C 0 7 9 0 19 0 C 27 0 34 5 38 12 C 42 5 49 0 57 0 C 67 0 76 7 76 18 C 76 33 64 51 38 69 Z");
  filter: drop-shadow(0 18px 30px rgba(255, 74, 147, 0.28));
}

.magic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.magic-panel {
  display: grid;
  gap: 1rem;
}

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

.badge {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.qualities {
  display: grid;
  gap: 0.9rem;
}

.quality-card {
  padding: 1.1rem 1rem;
  border-radius: 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.quality-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.quality-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.quality-card:hover,
.quality-card:focus-visible,
.quality-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 95, 170, 0.42);
  box-shadow: var(--shadow-md);
}

.quality-display {
  display: grid;
  align-content: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.quality-eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}

.letter-card {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 40px;
  overflow: hidden;
}

.letter-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 103, 174, 0.24), transparent 72%);
}

.letter-modal,
.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 40;
}

.letter-modal.is-open,
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.letter-modal__backdrop,
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(67, 17, 42, 0.58);
  backdrop-filter: blur(12px);
}

.letter-modal__content,
.lightbox__content {
  position: relative;
  width: min(760px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: clamp(1.4rem, 5vw, 2.4rem);
  border-radius: 36px;
}

.lightbox__content {
  width: min(980px, 100%);
  display: grid;
  gap: 1rem;
}

.lightbox__content img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 24px;
}

.lightbox__caption {
  color: var(--text-muted);
  text-align: center;
}

.letter-modal__close,
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.letter-sign {
  margin-top: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--accent-strong);
}

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

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

.heart-particle {
  position: fixed;
  left: 0;
  bottom: -40px;
  width: 18px;
  height: 18px;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  animation: floatHeart linear forwards;
}

.heart-particle::before,
.heart-particle::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 16px;
  background: linear-gradient(180deg, rgba(255, 133, 191, 0.95), rgba(255, 47, 146, 0.92));
  border-radius: 10px 10px 0 0;
}

.heart-particle::before {
  left: 4px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.heart-particle::after {
  left: 0;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

body.hearts-enabled .hearts-toggle {
  background: linear-gradient(135deg, #ff95c5, #ff448f);
  color: white;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(24px, 30px, 0) scale(1.05);
  }
}

@keyframes sparklePulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.34;
  }
  50% {
    transform: translateY(-14px);
    opacity: 0.6;
  }
}

@keyframes ticker {
  to {
    transform: translateX(-100%);
  }
}

@keyframes floatHeart {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translate3d(var(--drift-x), -120vh, 0) scale(var(--scale)) rotate(18deg);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    padding-bottom: 8rem;
  }

  .polaroid-stack {
    left: auto;
    right: 0;
    bottom: 0;
  }

  .love-grid,
  .magic-layout {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 6;
    aspect-ratio: 6 / 7;
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.3rem;
    padding: 0.8rem;
    border-radius: 24px;
    background: rgba(255, 250, 253, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease,
      visibility 0.24s ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 221, 238, 0.74);
  }

  .pill-button {
    display: none;
  }
}

@media (max-width: 720px) {
  .section {
    width: min(100% - 1.2rem, 1180px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 12;
    aspect-ratio: 4 / 5;
  }

  .hero-card-floating {
    width: 100%;
  }

  .polaroid-stack {
    position: relative;
    width: 100%;
    height: 180px;
    margin-top: 0.4rem;
  }

  .polaroid {
    width: 170px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 0.5rem;
    padding-inline: 0.8rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .section-heading h2,
  .letter-card h2,
  .letter-modal__content h2 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .hero-card-main,
  .quality-display,
  .letter-card,
  .badge-card,
  .glass-card {
    padding: 1.3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .gallery-item {
    border-radius: 22px;
    aspect-ratio: 1 / 1.15;
  }

  .letter-modal__close,
  .lightbox__close {
    top: 0.8rem;
    right: 0.8rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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