/* ============================================================
   Sailor Sweets — Coastal Cookie Studio
   Soft · sweet · modern coastal design system
   Sea teal · sky · seafoam · sand · coral
   ============================================================ */

:root {
  /* Deep sea tones (dark sections + text) */
  --color-navy: #0e3a4f;
  --color-midnight: #082532;
  --color-sea: #1f7a99;
  --color-sea-deep: #12556b;
  --color-blue-light: #3fa7c4;

  /* Airy coastal tones */
  --color-sky: #8fd3e8;
  --color-sky-pale: #dff3f8;
  --color-ice: #eef9fc;
  --color-seafoam: #b7e6d6;
  --color-seafoam-deep: #7fcbb4;
  --color-sand: #f6e7c6;
  --color-sand-deep: #ecd3a3;

  /* Sweet coral accent */
  --color-coral: #ff9e7a;
  --color-coral-deep: #ef7a54;
  --color-coral-soft: #ffb38a;

  /* Legacy aliases (kept so partial rules still resolve) */
  --color-gold: var(--color-coral);
  --color-gold-dark: var(--color-coral-deep);
  --color-gold-bright: var(--color-coral-soft);
  --color-blue: var(--color-sea);
  --color-forest: var(--color-navy);

  --color-white: #fbfeff;
  --color-text: #0e3a4f;
  --color-text-muted: #4c7789;
  --color-on-dark: #eaf7fb;
  --color-on-dark-muted: rgba(234, 247, 251, 0.72);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 40px;

  --shadow-soft: 0 6px 26px rgba(14, 58, 79, 0.10);
  --shadow-bold: 0 18px 50px rgba(14, 58, 79, 0.18);
  --shadow-glow: 0 12px 40px rgba(255, 158, 122, 0.45);

  --nav-height: 74px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --wave-fill: var(--color-ice);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-ice);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; background: none; }

.container { width: min(1200px, 92vw); margin: 0 auto; }

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Wave dividers
   Each divider is filled with its own section's colour so the
   section appears to "lap" onto the neighbouring one.
   ============================================================ */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 3;
}
.wave-divider svg { width: 100%; height: clamp(60px, 8vw, 120px); }
.wave-divider--top { top: 0; transform: translateY(-99%); }
.wave-divider--bottom { bottom: 0; transform: translateY(99%); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav--scrolled {
  background: rgba(238, 249, 252, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-navy);
}
.nav__logo-mark { width: 40px; height: 40px; color: var(--color-sea); }
.nav__logo-text { display: none; }
@media (min-width: 560px) { .nav__logo-text { display: block; } }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: 0.92rem; font-weight: 500; transition: color var(--transition); }
.nav__links a:hover { color: var(--color-sea); }
.nav__cta {
  background: var(--color-coral) !important;
  color: var(--color-navy) !important;
  padding: 0.62rem 1.3rem;
  border-radius: 100px;
  font-weight: 700 !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.nav__toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 4px; z-index: 1001; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--color-navy); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav__toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0;
    background: linear-gradient(160deg, var(--color-ice), var(--color-seafoam));
    flex-direction: column; justify-content: center; gap: 2.5rem;
    font-size: 1.6rem; font-family: var(--font-display); font-weight: 800;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav__links.open { transform: translateX(0); }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  border: 2px solid transparent;
}
.btn--primary { background: var(--color-coral); color: var(--color-navy); box-shadow: 0 10px 24px rgba(255, 158, 122, 0.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); background: var(--color-coral-soft); }
.btn--ghost { border-color: var(--color-sea); color: var(--color-sea); }
.btn--ghost:hover { background: var(--color-sea); color: var(--color-white); transform: translateY(-3px); }
.btn--full { width: 100%; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 2.5rem) clamp(1.25rem, 4vw, 3rem) 7rem;
  overflow: hidden;
  --wave-fill: #f4fbfd;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background:
    radial-gradient(55% 50% at 88% 28%, rgba(255, 179, 138, 0.28), transparent 70%),
    radial-gradient(48% 45% at 12% 78%, rgba(127, 203, 180, 0.4), transparent 72%),
    linear-gradient(165deg, #eef9fc 0%, #dcf3f5 42%, #cdeee6 78%, #c2ecdd 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 160px;
  background: radial-gradient(120% 100% at 50% 100%, rgba(127, 203, 180, 0.5), transparent 72%);
}
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: float 8s ease-in-out infinite; }
.hero__orb--1 { width: 500px; height: 500px; background: rgba(143, 211, 232, 0.5); top: -10%; right: -5%; }
.hero__orb--2 { width: 420px; height: 420px; background: rgba(183, 230, 214, 0.55); bottom: 6%; left: -12%; animation-delay: -3s; }
.hero__orb--3 { width: 300px; height: 300px; background: rgba(255, 158, 122, 0.3); top: 44%; left: 34%; animation-delay: -5s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero__shell {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.9fr);
  }
}

.hero__content { position: relative; max-width: 640px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: var(--color-sea);
  background: rgba(31, 122, 153, 0.1);
  padding: 0.5rem 1.1rem; border-radius: 100px; margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero__pin { font-size: 1.05rem; }
.hero__title { font-family: var(--font-display); font-weight: 900; line-height: 0.94; margin-bottom: 1.5rem; font-optical-sizing: auto; }
.hero__title-line {
  display: block;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  letter-spacing: -0.02em; color: var(--color-navy);
  animation: fadeUp 0.8s ease both;
}
.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.2s; }
.hero__title-line:nth-child(3) { animation-delay: 0.3s; }
.hero__title-line--accent { color: var(--color-coral-deep); font-style: italic; padding-left: clamp(0.5rem, 3vw, 2rem); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--color-text-muted);
  max-width: 520px; margin-bottom: 2.25rem; animation: fadeUp 0.8s ease 0.4s both;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; animation: fadeUp 0.8s ease 0.5s both; }

/* Live Instagram panel — interactive hero visual */
.hero__ig {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  animation: fadeUp 0.9s ease 0.35s both, igDrift 10s ease-in-out infinite;
  max-width: 420px;
  width: 100%;
  justify-self: end;
}
@keyframes igDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__ig-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hero__ig-profile {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.hero__ig-mark {
  width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  color: var(--color-sea);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 122, 153, 0.18);
  border-radius: 12px;
  flex-shrink: 0;
}
.hero__ig-mark svg { width: 1.15rem; height: 1.15rem; }
.hero__ig-meta { display: flex; flex-direction: column; min-width: 0; line-height: 1.15; }
.hero__ig-handle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-navy);
}
.hero__ig-followers {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.hero__ig-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-coral-deep);
}
.hero__ig-pulse {
  width: 0.55rem; height: 0.55rem;
  border-radius: 50%;
  background: var(--color-coral-deep);
  box-shadow: 0 0 0 0 rgba(239, 122, 84, 0.55);
  animation: igPulse 1.8s ease-out infinite;
}
@keyframes igPulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 122, 84, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(239, 122, 84, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 122, 84, 0); }
}

.hero__ig-stage {
  display: block;
}
.hero__ig-feature {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  outline: none;
}
.hero__ig-feature img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease, opacity 0.45s ease;
}
.hero__ig-feature:hover img,
.hero__ig-feature:focus-visible img { transform: scale(1.06); }
.hero__ig-feature.is-swapping img { opacity: 0; }
.hero__ig-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.4rem 0.9rem 0.85rem;
  background: linear-gradient(to top, rgba(8, 37, 50, 0.78), transparent 78%);
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero__ig-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__ig-updated {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.hero__ig-follow {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-sea);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(31, 122, 153, 0.35);
  transition: color var(--transition), text-decoration-color var(--transition);
}
.hero__ig-follow:hover {
  color: var(--color-coral-deep);
  text-decoration-color: rgba(239, 122, 84, 0.55);
}

.hero__scroll {
  position: absolute; bottom: 5.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--color-sea); z-index: 2;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--color-sea), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================================
   Floating coastal cookies (order section accents)
   ============================================================ */
.floaties { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

.floatie {
  position: absolute;
  left: var(--x, 50%); top: var(--y, 50%);
  width: var(--size, 90px);
  filter: drop-shadow(0 10px 18px rgba(14, 58, 79, 0.18));
  will-change: transform;
  animation: floatBob var(--dur, 7s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  --parallax: 0px;
  transform: translate3d(0, var(--parallax), 0);
}
.floatie svg, .floatie img { width: 100%; height: auto; display: block; }

@keyframes floatBob {
  0%, 100% { transform: translate3d(0, var(--parallax, 0px), 0) translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translate3d(0, var(--parallax, 0px), 0) translateY(-16px) rotate(calc(var(--rot, 0deg) + 5deg)); }
}

/* Rising bubbles */
.bubble {
  position: absolute; bottom: -40px; left: var(--x, 50%);
  width: var(--size, 12px); height: var(--size, 12px); border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.9), rgba(143, 211, 232, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: bubbleRise var(--dur, 9s) linear infinite; animation-delay: var(--delay, 0s); opacity: 0;
}
@keyframes bubbleRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  50% { transform: translateY(-45vh) translateX(14px); }
  90% { opacity: 0.6; }
  100% { transform: translateY(-92vh) translateX(-10px); opacity: 0; }
}

@media (max-width: 768px) {
  .floatie { opacity: 0.85; }
  .hero__ig { max-width: none; justify-self: stretch; }
}
@media (max-width: 900px) {
  .hero__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .floatie, .bubble, .hero__orb, .hero__ig, .hero__ig-pulse { animation: none; }
  .bubble { opacity: 0.5; }
  .hero__ig-feature img { transition: none; }
}

/* ============================================================
   Section utilities
   ============================================================ */
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--color-sea);
  margin-bottom: 1rem;
}
.section-label--light { color: var(--color-coral-soft); }
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1.06; letter-spacing: -0.015em;
  margin-bottom: 1.25rem; font-optical-sizing: auto; color: var(--color-navy);
}
.section-title--light { color: var(--color-white); }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Story
   ============================================================ */
.story {
  position: relative;
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: linear-gradient(180deg, #f4fbfd 0%, #eaf7f4 100%);
  overflow: visible;
  z-index: 4;
}
.story__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 900px) { .story__grid { grid-template-columns: 1fr 1fr; } }

.story__visual { position: relative; overflow: visible; z-index: 2; }
.story__photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-xl);
  background-size: cover, cover; background-position: center, center; background-repeat: no-repeat;
  box-shadow: var(--shadow-bold); overflow: hidden;
}
.story__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14, 58, 79, 0.5), transparent 55%); }
.story__photo-tag {
  position: absolute; left: 1.25rem; bottom: 1.25rem; z-index: 1;
  color: var(--color-white); font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.story__badge {
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  width: clamp(96px, 15vw, 128px);
  animation: spin 26s linear infinite;
  filter: drop-shadow(var(--shadow-bold));
  z-index: 5;
  pointer-events: none;
}
.story__badge-text {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.story__text { color: var(--color-text-muted); margin-bottom: 1.2rem; font-size: 1.06rem; }
.story__stats { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 2px solid rgba(31, 122, 153, 0.15); }
@media (min-width: 480px) { .story__stats { grid-template-columns: repeat(3, 1fr); } }
.story__stats strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--color-navy); }
.story__stats span { font-size: 0.85rem; color: var(--color-text-muted); }

/* ============================================================
   Meet the cookies (crew) — the underwater showcase
   ============================================================ */
.crew {
  position: relative;
  padding: clamp(6rem, 13vw, 9rem) 0;
  background: linear-gradient(180deg, #2a90ad 0%, var(--color-sea) 45%, var(--color-sea-deep) 100%);
  color: var(--color-on-dark);
  --wave-fill: #2a90ad;
  overflow: visible;
}
.crew__header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.crew__intro { color: var(--color-on-dark-muted); font-size: 1.08rem; }

.crew__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .crew__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .crew__grid { grid-template-columns: repeat(3, 1fr); }
}

.crew-card {
  position: relative; background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg); overflow: hidden;
  backdrop-filter: blur(4px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.crew-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-bold); border-color: var(--color-coral); }
.crew-card__photo {
  min-height: 220px; flex: 1;
  background-size: cover, cover; background-position: center, center; background-repeat: no-repeat;
}
.crew-card--tall .crew-card__photo { min-height: 320px; }
.crew-card__body { padding: 1.5rem 1.6rem 1.75rem; }
.crew-card__kicker { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-coral-soft); margin-bottom: 0.5rem; }
.crew-card__body h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--color-white); margin-bottom: 0.4rem; }
.crew-card__body p { color: var(--color-on-dark-muted); font-size: 0.95rem; }

/* ============================================================
   Collections
   ============================================================ */
.collections { padding: clamp(5rem, 12vw, 8rem) 0; background: var(--color-navy); color: var(--color-white); }
.collections__header { text-align: center; margin-bottom: 3.5rem; }
.collections__header .section-label { color: var(--color-coral-soft); }
.collections__header .section-title { color: var(--color-white); }
.collections__note {
  color: rgba(234, 247, 251, 0.72);
  font-size: 0.95rem;
  max-width: 560px;
  margin: -0.5rem auto 0;
}
.collections__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .collections__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .collections__grid { grid-template-columns: repeat(4, 1fr); } }

.collection-card {
  position: relative; background: var(--color-white); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid rgba(63, 167, 196, 0.18);
}
.collection-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-bold); }
.collection-card--featured { background: linear-gradient(160deg, var(--color-sea) 0%, var(--color-navy) 100%); color: var(--color-white); border-color: var(--color-coral); }
.collection-card--featured .collection-card__body p { color: rgba(234, 247, 251, 0.82); }
.collection-card--featured .collection-card__price { color: var(--color-coral-soft); }
.collection-card__badge {
  position: absolute; top: 1rem; right: 1rem; background: var(--color-coral); color: var(--color-navy);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem; border-radius: 100px; z-index: 2;
}
.collection-card__visual { height: 158px; display: flex; align-items: center; justify-content: center; }
.collection-card__visual--wedding { background: linear-gradient(135deg, #eaf6f8, #c9e7ee); }
.collection-card__visual--sea { background: linear-gradient(135deg, var(--color-blue-light), var(--color-sea-deep)); }
.collection-card__visual--holiday { background: linear-gradient(135deg, #e2f2f6, #a8d8e6); }
.collection-card__visual--corporate { background: linear-gradient(135deg, var(--color-coral-soft), var(--color-coral-deep)); }
.collection-card__icon { font-size: 3.4rem; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12)); transition: transform var(--transition); }
.collection-card:hover .collection-card__icon { transform: scale(1.15) rotate(-6deg); }
.collection-card__body { padding: 1.5rem; }
.collection-card__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}
.collection-card__body p { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1rem; line-height: 1.5; }
.collection-card--featured .collection-card__body h3 { color: var(--color-white); }
.collection-card__price { font-weight: 700; font-size: 0.85rem; color: var(--color-sea); }

/* ============================================================
   Process / How it works
   ============================================================ */
.process { padding: clamp(5rem, 12vw, 8rem) 0; background: var(--color-midnight); }
.process__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .process__inner { grid-template-columns: 1.1fr 0.9fr; align-items: start; } }
.steps { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 0.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--color-coral-soft); line-height: 1; flex-shrink: 0; opacity: 0.7; }
.step__content h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--color-white); margin-bottom: 0.3rem; }
.step__content p { color: rgba(234, 247, 251, 0.66); font-size: 0.95rem; }
.process__quotes { display: flex; flex-direction: column; gap: 1rem; }
.process__quotes-header { margin-bottom: 0.5rem; }
.process__quotes-header .section-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 0; }
.process__quote {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg); padding: 2rem; position: relative; margin: 0;
}
.process__quote--soft { padding: 1.5rem 1.75rem; }
.process__quote::before { content: '\201C'; position: absolute; top: -0.4rem; left: 1.4rem; font-family: var(--font-display); font-size: 5rem; color: var(--color-coral); line-height: 1; opacity: 0.35; }
.process__quote--soft::before { font-size: 3.5rem; top: -0.2rem; left: 1.1rem; }
.process__quote blockquote { font-size: 1.05rem; font-style: italic; color: var(--color-white); line-height: 1.6; margin-bottom: 0.85rem; }
.process__quote--soft blockquote { font-size: 0.95rem; }
.process__quote figcaption { font-size: 0.85rem; color: var(--color-coral-soft); font-weight: 600; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { padding: clamp(4rem, 10vw, 6rem) 0 0; background: var(--color-ice); }
.gallery__header { text-align: center; margin-bottom: 2.5rem; }
.gallery__intro { color: var(--color-text-muted); max-width: 480px; margin: 0 auto 1.25rem; }
.gallery__ig { margin-top: 0.25rem; }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.gallery__item { position: relative; margin: 0; overflow: hidden; aspect-ratio: 1; }
.gallery__photo {
  width: 100%; height: 100%;
  background-size: cover, cover; background-position: center, center; background-repeat: no-repeat;
  transition: transform 0.6s ease;
}
.gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14, 58, 79, 0.6), transparent 55%); pointer-events: none; }
.gallery__item figcaption {
  position: absolute; left: 1.25rem; bottom: 1.1rem; z-index: 1;
  color: var(--color-white); font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.gallery__item:hover .gallery__photo { transform: scale(1.06); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-ice) 100%);
}
.faq__header { text-align: center; margin-bottom: 2.5rem; }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq__item {
  background: var(--color-white);
  border: 1px solid rgba(31, 122, 153, 0.16);
  border-radius: var(--radius-md);
  padding: 0.35rem 1.25rem;
  box-shadow: var(--shadow-soft);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-navy);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-sea);
  font-size: 1.4rem;
  line-height: 1;
}
.faq__item[open] summary::after { content: '–'; }
.faq__item p {
  color: var(--color-text-muted);
  padding: 0 0 1.15rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ============================================================
   Order / Contact
   ============================================================ */
.order {
  position: relative; overflow: hidden;
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: linear-gradient(180deg, #eef9fc 0%, #d6f1ee 60%, #c4ecdd 100%);
}
.order .container { position: relative; z-index: 2; }
.order__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 900px) { .order__grid { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.order__text { color: var(--color-text-muted); font-size: 1.06rem; margin-bottom: 2.25rem; }
.order__details { display: flex; flex-direction: column; gap: 1.25rem; }
.order__detail { display: flex; gap: 1rem; align-items: flex-start; }
.order__detail-icon {
  font-size: 1.2rem; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--color-navy); color: var(--color-coral-soft); border-radius: var(--radius-sm);
  flex-shrink: 0; box-shadow: var(--shadow-soft);
}
.order__detail strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; margin-bottom: 0.1rem; }
.order__detail p { font-size: 0.9rem; color: var(--color-text-muted); }

.order__form { background: var(--color-white); padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius-lg); box-shadow: var(--shadow-bold); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 540px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; background: var(--color-ice);
  border: 2px solid var(--color-sky-pale); border-radius: var(--radius-sm);
  color: var(--color-text); transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-blue-light); box-shadow: 0 0 0 3px rgba(63, 167, 196, 0.22);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #7aa0b0; }
.form-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: -0.35rem 0 1.25rem;
  line-height: 1.5;
}
.order__detail a { color: var(--color-sea); font-weight: 600; }
.order__detail a:hover { text-decoration: underline; }

/* Sticky mobile Order CTA */
.sticky-order {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 900;
  background: var(--color-coral);
  color: var(--color-navy);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border-radius: 100px;
  box-shadow: var(--shadow-glow);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}
.sticky-order.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 769px) {
  .sticky-order { display: none; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  background: linear-gradient(180deg, var(--color-sea-deep), var(--color-midnight));
  color: var(--color-white); padding: 5rem 0 2rem;
  --wave-fill: var(--color-sea-deep);
}
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; align-items: start; } }
.footer__logo { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; display: block; margin-bottom: 0.75rem; color: var(--color-coral-soft); }
.footer__brand p { color: rgba(234, 247, 251, 0.68); font-size: 0.95rem; max-width: 320px; }
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a { font-size: 0.9rem; color: rgba(234, 247, 251, 0.78); transition: color var(--transition); }
.footer__links a:hover { color: var(--color-coral-soft); }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a { display: grid; place-items: center; width: 44px; height: 44px; border: 2px solid rgba(234, 247, 251, 0.22); border-radius: 50%; font-size: 0.75rem; font-weight: 700; transition: background var(--transition), border-color var(--transition), color var(--transition); }
.footer__social a:hover { background: var(--color-coral); border-color: var(--color-coral); color: var(--color-navy); }
.footer__bottom { padding-top: 2rem; border-top: 1px solid rgba(234, 247, 251, 0.12); text-align: center; }
.footer__bottom p { font-size: 0.85rem; color: rgba(234, 247, 251, 0.5); }
