:root {
  --navy:       #1A4A68;
  --navy-dark:  #0D2C3E;
  --navy-deep:  #07192A;
  --gold:       #C4888C;
  --gold-light: #E8C4C8;
  --ivory:      #FBF6F7;
  --white:      #ffffff;
  --glass-bg:   rgba(251,246,247,0.06);
  --glass-border: rgba(196,136,140,0.18);
  --font-serif:  "Bodoni Moda", "Didot", Georgia, serif;
  --font-script: "Pinyon Script", cursive;
  --font-sans:   "Jost", system-ui, sans-serif;
  --section-pad: clamp(5rem, 10vw, 8rem);
  --nav-h:       72px;
  --ease-fluid:  cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
fieldset { border: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3 { font-family: var(--font-serif); font-style: italic; font-weight: 300; line-height: 1.08; letter-spacing: -0.03em; }
p { line-height: 1.7; }

.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--ivory); }

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(26,74,104,0.6);
  max-width: 520px;
  line-height: 1.65;
}
.section-subtitle.light { color: rgba(251,246,247,0.65); }

.section-header { text-align: center; margin-bottom: clamp(2.5rem,5vw,4rem); }
.section-header .section-subtitle { margin: 0 auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.container-narrow { max-width: 780px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 0.5rem;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.2s var(--ease-fluid), box-shadow 0.2s var(--ease-fluid), background-position 0.4s;
  white-space: nowrap; text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--navy-dark);
  box-shadow: 0 4px 24px rgba(196,136,140,0.4);
  font-weight: 600;
}
.btn-gold:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(196,136,140,0.5); }
.btn-ghost {
  background: rgba(251,246,247,0.08); color: var(--ivory);
  border: 1px solid rgba(251,246,247,0.22);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(251,246,247,0.15); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ivory); border: 1px solid rgba(251,246,247,0.28); }
.btn-outline:hover { background: rgba(251,246,247,0.08); transform: translateY(-2px); }
.btn-large { padding: 1.1rem 2.75rem; font-size: 1rem; }

.logo-script { font-family: var(--font-script); font-size: 2rem; color: var(--gold); line-height: 1; }
/* ── Logo images ── */
.nav-logo-img {
  height: 52px; width: 52px; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s, opacity 0.2s;
}
#nav.scrolled .nav-logo-img { filter: brightness(0) invert(1); }
.nav-logo:hover .nav-logo-img { opacity: 0.82; }

.hero-logo-wrap { margin-bottom: 0.5rem; }
.hero-logo-img { width: 140px; height: 140px; object-fit: contain; margin: 0 auto; opacity: 0.92; }

.footer-logo-img { width: 110px; height: 110px; object-fit: contain; margin-bottom: 0.75rem; filter: brightness(0) invert(1); opacity: 0.7; }



.img-placeholder { width: 100%; background: linear-gradient(135deg,#e8d0d4 0%,#d4b0b8 100%); }
.img-ratio-43 { aspect-ratio: 4/3; }
.img-ratio-34 { aspect-ratio: 3/4; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-fluid), transform 0.7s var(--ease-fluid); }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════
   NAV
   ══════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-fluid), backdrop-filter 0.4s, box-shadow 0.4s, transform 0.35s var(--ease-fluid);
}
#nav.scrolled {
  background: rgba(7,25,42,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(196,136,140,0.12), 0 8px 32px rgba(0,0,0,0.35);
}
#nav.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 clamp(1rem,4vw,2.5rem);
  max-width: 1200px; margin: 0 auto;
}
.nav-logo { transition: opacity 0.2s; }
.nav-logo:hover { opacity: 0.8; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.875rem; font-size: 0.875rem; font-weight: 500;
  color: rgba(251,246,247,0.82); border-radius: 6px;
  transition: color 0.2s, background 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--ivory); background: rgba(251,246,247,0.08); }
.nav-links a.nav-cta {
  margin-left: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark); font-weight: 600; padding: 0.5rem 1.25rem;
}
.nav-links a.nav-cta:hover { opacity: 0.9; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ivory); border-radius: 2px; transition: transform 0.2s var(--ease-fluid), opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════
   HERO
   ══════════════════════════ */
.hero {
  position: relative; min-height: 100dvh; background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.55; will-change: transform;
}
.orb-gold {
  width: clamp(280px,50vw,600px); height: clamp(280px,50vw,600px);
  background: radial-gradient(circle, rgba(196,136,140,0.65) 0%, transparent 70%);
  top: -10%; right: -10%;
  animation: drift-gold 18s ease-in-out infinite;
}
.orb-blue {
  width: clamp(220px,40vw,500px); height: clamp(220px,40vw,500px);
  background: radial-gradient(circle, rgba(196,136,140,0.3) 0%, transparent 70%);
  bottom: -5%; left: -5%;
  animation: drift-blue 22s ease-in-out infinite;
}
.orb-dim {
  width: clamp(160px,28vw,380px); height: clamp(160px,28vw,380px);
  background: radial-gradient(circle, rgba(196,136,140,0.2) 0%, transparent 70%);
  top: 55%; left: 42%;
  animation: drift-dim 15s ease-in-out infinite;
}

@keyframes drift-gold {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-40px,30px) scale(1.08); }
  66%      { transform: translate(20px,-40px) scale(0.95); }
}
@keyframes drift-blue {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(50px,-30px) scale(1.06); }
  70%     { transform: translate(-20px,40px) scale(0.97); }
}
@keyframes drift-dim {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-30px,-20px) scale(1.1); }
}
@media (prefers-reduced-motion: reduce) { .orb { animation: none; } }

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; }

.hero-eyebrow {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(5rem, 17vw, 14rem);
  font-style: italic; font-weight: 300; letter-spacing: -0.04em; line-height: 0.88;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 30%, #fff0f2 50%, var(--gold-light) 70%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  margin-bottom: 1.5rem;
}
@keyframes shimmer { from { background-position: 0% center; } to { background-position: 200% center; } }

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: rgba(251,246,247,0.88); margin-bottom: 2rem;
}
.hero-script .amp { font-family: var(--font-serif); font-style: italic; }

.hero-products {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.4rem 1.5rem; margin-bottom: 2.5rem;
}
.hero-products li {
  font-size: 0.82rem; font-weight: 300; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(251,246,247,0.55);
  position: relative;
}
.hero-products li:not(:last-child)::after { content: "·"; position: absolute; right: -0.85rem; color: var(--gold); }

.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll span { display: block; width: 1px; height: 56px; background: linear-gradient(to bottom, transparent, var(--gold)); margin: 0 auto; animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; } }

/* ══════════════════════════
   ABOUT
   ══════════════════════════ */
.section-ivory { background: var(--ivory); }
.section-navy  { background: var(--navy); }
.section-dark  { background: var(--navy-dark); }

.about { padding: var(--section-pad) 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }

.about-image-wrap { position: relative; }
.about-image-wrap .img-placeholder { border-radius: 4px; position: relative; z-index: 1; }
.about-image-accent {
  position: absolute; inset: 20px -20px -20px 20px;
  border: 2px solid var(--gold); border-radius: 4px; z-index: 0; opacity: 0.45;
}

.about-content .section-title { margin-bottom: 1.5rem; }
.about-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.35rem,3vw,1.9rem); line-height: 1.5; color: var(--navy);
  border-left: 3px solid var(--gold); padding-left: 1.25rem; margin-bottom: 1.5rem;
}
.about-content p { color: rgba(26,74,104,0.7); margin-bottom: 1rem; }

.about-badges { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.badge { display: flex; flex-direction: column; }
.badge strong { font-family: var(--font-serif); font-style: italic; font-size: 1.6rem; font-weight: 300; color: var(--gold); }
.badge span { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(26,74,104,0.5); }

/* ══════════════════════════
   GALLERY
   ══════════════════════════ */
.gallery { padding: var(--section-pad) 0; }

.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.55rem 1.25rem; border-radius: 100px; font-size: 0.83rem; font-weight: 500;
  color: rgba(251,246,247,0.55); border: 1px solid rgba(251,246,247,0.12);
  transition: all 0.2s var(--ease-fluid); letter-spacing: 0.03em;
}
.filter-btn:hover, .filter-btn.active { color: var(--navy-dark); background: var(--gold); border-color: var(--gold); }

.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
.gallery-item {
  position: relative; border-radius: 8px; overflow: hidden; cursor: pointer;
  transition: transform 0.4s var(--ease-fluid), box-shadow 0.4s var(--ease-fluid);
}
.gallery-item:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 48px rgba(0,0,0,0.5); z-index: 1; }
.gallery-item.hidden { display: none; }
.gallery-item img, .gallery-item .img-placeholder { width: 100%; display: block; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,25,42,0.95) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s var(--ease-fluid);
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item-title { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 1.1rem; color: var(--ivory); }

/* ══════════════════════════
   OCCASIONS — BENTO GRID
   ══════════════════════════ */
.occasions { padding: var(--section-pad) 0; }

.bento-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 280px; gap: 1rem; }
.bento-card {
  position: relative; border-radius: 16px; overflow: hidden;
  transition: transform 0.4s var(--ease-fluid), box-shadow 0.4s var(--ease-fluid);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(26,74,104,0.18); }
.bento-wide { grid-column: span 2; }

.bento-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.bento-bg.img-placeholder { aspect-ratio: unset; }

.bento-content {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,25,42,0.92) 0%, rgba(7,25,42,0.35) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
  transition: background 0.35s;
}
.bento-card:hover .bento-content { background: linear-gradient(to top, rgba(7,25,42,0.97) 0%, rgba(7,25,42,0.55) 70%, rgba(7,25,42,0.15) 100%); }

.bento-icon { font-size: 1rem; color: var(--card-accent, var(--gold)); margin-bottom: 0.4rem; }
.bento-content h3 { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: clamp(1.1rem,2.5vw,1.5rem); color: var(--ivory); margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.bento-content p { font-size: 0.82rem; color: rgba(251,246,247,0.65); line-height: 1.5; max-width: 30ch; }

/* ══════════════════════════
   PRICING — GLASSMORPHISM
   ══════════════════════════ */
.pricing { padding: var(--section-pad) 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.price-card {
  position: relative;
  background: rgba(251,246,247,0.04); border: 1px solid rgba(251,246,247,0.09);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 16px; padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.price-card:hover { border-color: rgba(196,136,140,0.35); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }

.price-featured {
  background: linear-gradient(145deg, rgba(196,136,140,0.12) 0%, rgba(196,136,140,0.04) 100%);
  border-color: rgba(196,136,140,0.4);
  box-shadow: 0 0 40px rgba(196,136,140,0.08), 0 8px 32px rgba(0,0,0,0.3);
}
.price-featured:hover { box-shadow: 0 0 60px rgba(196,136,140,0.18), 0 20px 60px rgba(0,0,0,0.4); }

.price-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.875rem; border-radius: 100px; white-space: nowrap;
}

.price-card-header h3 { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 1.55rem; color: var(--ivory); margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.price-card-header p { font-size: 0.82rem; color: rgba(251,246,247,0.45); line-height: 1.4; }

.price-card-body { flex: 1; }
.price-main { font-size: 1.05rem; color: var(--gold-light); margin-bottom: 1rem; }
.price-main strong { font-size: 1.5rem; font-weight: 700; }

.price-card-body ul { display: flex; flex-direction: column; gap: 0.5rem; }
.price-card-body li { font-size: 0.85rem; color: rgba(251,246,247,0.55); padding-left: 1rem; position: relative; }
.price-card-body li::before { content: "—"; position: absolute; left: 0; color: var(--gold); opacity: 0.55; }

.pricing-note { text-align: center; font-size: 0.88rem; color: rgba(251,246,247,0.4); }
.pricing-note a { color: var(--gold-light); text-decoration: underline; }

/* ══════════════════════════
   ORDER FORM
   ══════════════════════════ */
.order { padding: var(--section-pad) 0; }

.order-form {
  display: flex; flex-direction: column; gap: 1.5rem;
  background: var(--white); border-radius: 20px;
  padding: clamp(1.5rem,4vw,3rem);
  box-shadow: 0 4px 40px rgba(26,74,104,0.07);
  border: 1px solid rgba(26,74,104,0.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }

.form-field label, .form-field legend {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(26,74,104,0.55);
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.75rem 0;
  border: none; border-bottom: 1.5px solid rgba(26,74,104,0.13);
  border-radius: 0; background: transparent;
  font-family: var(--font-sans); font-size: 1rem; color: var(--navy);
  transition: border-color 0.2s; outline: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(26,74,104,0.28); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-bottom-color: var(--gold); }
.form-field select {
  -webkit-appearance: none; appearance: none; cursor: pointer; padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231A4A68' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input.invalid, .form-field select.invalid { border-bottom-color: #e53e3e; }
.field-error { font-size: 0.75rem; color: #e53e3e; min-height: 1rem; }
.field-helper { font-size: 0.75rem; color: rgba(26,74,104,0.4); font-style: italic; }
.required { color: var(--gold); }

.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(175px,1fr)); gap: 0.5rem; margin-top: 0.5rem; }
.checkbox-label {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--navy); cursor: pointer;
  padding: 0.5rem 0.75rem; border-radius: 6px;
  border: 1px solid rgba(26,74,104,0.1);
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-label:hover { border-color: var(--gold); background: rgba(196,136,140,0.04); }
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0;
  border: none; padding: 0; border-bottom: none;
}

.form-actions { display: flex; justify-content: center; margin-top: 0.5rem; }

.form-success { text-align: center; padding: 3rem 2rem; background: var(--white); border-radius: 20px; box-shadow: 0 4px 40px rgba(26,74,104,0.07); }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark); font-size: 1.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.75rem; color: var(--navy); margin-bottom: 0.75rem; }
.form-success p { color: rgba(26,74,104,0.6); margin-bottom: 0.5rem; }
.link-gold { color: var(--gold); text-decoration: underline; }

/* ══════════════════════════
   FOOTER
   ══════════════════════════ */
.footer { position: relative; background: var(--navy-deep); padding: 5rem 0 2rem; overflow: hidden; }
.footer-watermark {
  position: absolute; bottom: -0.1em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-serif); font-weight: 900;
  font-size: clamp(5rem,15vw,14rem); letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(196,136,140,0.06);
  white-space: nowrap; user-select: none; pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; position: relative; z-index: 1; }
.footer-logo { font-size: 2.2rem; display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(251,246,247,0.38); line-height: 1.7; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a { font-size: 0.88rem; color: rgba(251,246,247,0.45); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link { font-size: 0.88rem; color: rgba(251,246,247,0.45); transition: color 0.2s; }
.footer-link:hover { color: var(--gold-light); }
.footer-insta { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(251,246,247,0.05); padding-top: 1.5rem; text-align: center; position: relative; z-index: 1; }
.footer-bottom p { font-size: 0.78rem; color: rgba(251,246,247,0.22); }

/* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid  { grid-template-columns: repeat(2,1fr); }
  .bento-grid    { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; flex-direction: column;
    justify-content: center; align-items: center;
    background: rgba(7,25,42,0.98); backdrop-filter: blur(24px);
    display: none; z-index: 105; gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.5rem; padding: 1rem 2rem; width: 100%; text-align: center; }
  .nav-links a.nav-cta { margin: 1rem 2rem 0; width: auto; border-radius: 0.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 320px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .bento-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 220px; }
  .bento-wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .bento-wide { grid-column: span 1; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

/* ── Gallery real images ── */
.gallery-img {
  width: 100%; display: block; object-fit: cover;
  transition: transform 0.65s var(--ease-fluid);
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item:nth-child(3n+1) .gallery-img { aspect-ratio: 4/5; }
.gallery-item:nth-child(3n+2) .gallery-img { aspect-ratio: 3/4; }
.gallery-item:nth-child(3n)   .gallery-img { aspect-ratio: 4/3; }

/* ── Bento bg images ── */
.bento-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 0;
}

/* ── Marquee ticker ── */
.marquee {
  overflow: hidden; background: var(--navy-dark);
  border-top: 1px solid rgba(196,136,140,0.15);
  border-bottom: 1px solid rgba(196,136,140,0.15);
  padding: 1.1rem 0;
}
.marquee-inner {
  display: flex; width: fit-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-track { display: inline-flex; align-items: center; gap: 2.5rem; padding-right: 2.5rem; flex-shrink: 0; }
.marquee-track span { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(251,246,247,0.42); }
.marquee-dot { color: var(--gold) !important; font-size: 0.52rem !important; opacity: 0.8; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-inner { animation: none; } }

/* ── About portrait ── */
.about-portrait {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 4px; display: block; position: relative; z-index: 1;
}

/* ── Form success icon font fix ── */
.form-success h3 { font-style: italic; font-weight: 300; }
