/* ═══════════════════════════════════════════
   U2 CAKE — PREMIUM DESIGN SYSTEM
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Dancing+Script:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* ── TOKENS ── */
:root {
  --red:       #D71920;
  --red-dark:  #A8141A;
  --red-light: #F5E0E1;
  --pink:      #F4A7B9;
  --pink-light:#FDE8EE;
  --cream:     #FDF6EC;
  --gold:      #C9A84C;
  --gold-light:#F0E4BB;
  --white:     #FAFAF7;
  --charcoal:  #2C2C2C;
  --charcoal2: #4A4A4A;
  --muted:     #8A8A8A;

  --font-display: 'Playfair Display', serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Lato', sans-serif;

  --radius-xl: 2rem;
  --radius-pill: 100px;
  --shadow-soft: 0 8px 40px rgba(215,25,32,0.08);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
.header.scrolled {
  background: rgba(253,246,236,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(215,25,32,0.08);
  padding: 0.9rem 4rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -1px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(215,25,32,0.35);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--red);
  letter-spacing: 0.05em;
}
.logo-text span:last-child {
  font-family: var(--font-script);
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-cta {
  background: var(--red);
  color: #fff !important;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(215,25,32,0.3);
}
.header-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(215,25,32,0.4);
}
.header-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 25px rgba(215,25,32,0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(215,25,32,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-3px);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 25px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: #b8943f;
  transform: translateY(-3px);
}

/* ══════════════════════════════════
   HOME PAGE
══════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 60%, var(--pink-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 4rem 6rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(215,25,32,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 2px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.15;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--red);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--charcoal2);
  max-width: 400px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-badge {
  position: absolute;
  bottom: 3rem; left: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal2);
}
.hero-badge-item::before {
  content: '●';
  color: var(--gold);
  font-size: 0.6rem;
}

/* ── CAKE CENTERPIECE ── */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cake-stage {
  position: relative;
  width: 280px;
  height: 320px;
}
/* CSS Cake */
.cake-plate {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 16px;
  background: linear-gradient(180deg, #e8d5b0 0%, #c9b88a 100%);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cake-layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px;
}
.cake-layer-1 {
  bottom: 14px;
  width: 180px; height: 70px;
  background: linear-gradient(180deg, #f9e4e4 0%, #e8b4b4 50%, #d71920 100%);
  box-shadow: 0 8px 25px rgba(215,25,32,0.3);
}
.cake-layer-2 {
  bottom: 84px;
  width: 150px; height: 60px;
  background: linear-gradient(180deg, #fff5f5 0%, #f5c8c8 50%, #e87878 100%);
  box-shadow: 0 6px 20px rgba(215,25,32,0.2);
}
.cake-layer-3 {
  bottom: 144px;
  width: 118px; height: 55px;
  background: linear-gradient(180deg, #fff 0%, #fde8ee 50%, #f4a7b9 100%);
  box-shadow: 0 4px 15px rgba(244,167,185,0.35);
}
.cake-frosting {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px 10px 0 0;
  background: #fff;
  height: 14px;
}
.frosting-1 { bottom: 84px; width: 190px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; height: 16px; background: linear-gradient(180deg, #fffdf5 0%, #f9f0d8 100%); }
.frosting-2 { bottom: 144px; width: 162px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; height: 14px; background: linear-gradient(180deg, #fff 0%, #fef5f7 100%); }
.frosting-3 { bottom: 199px; width: 128px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; height: 12px; background: linear-gradient(180deg, #fff 0%, #fef5f7 100%); }
.cake-topper {
  position: absolute;
  bottom: 211px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.candle {
  width: 8px; height: 30px;
  background: linear-gradient(180deg, #f9e4c8 0%, #f4a84c 100%);
  border-radius: 4px;
  position: relative;
}
.candle::before {
  content: '';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 14px;
  background: linear-gradient(180deg, #fff5a0 0%, #ffaa00 50%, #ff6600 100%);
  border-radius: 50% 50% 30% 30%;
  animation: flicker 1.5s ease-in-out infinite alternate;
  box-shadow: 0 0 8px 3px rgba(255,170,0,0.4);
}
@keyframes flicker {
  0%   { transform: translateX(-50%) scaleX(1) scaleY(1) rotate(-2deg); }
  50%  { transform: translateX(-50%) scaleX(0.9) scaleY(1.05) rotate(2deg); }
  100% { transform: translateX(-50%) scaleX(1.05) scaleY(0.95) rotate(-1deg); }
}

/* Floating Elements */
.float-el {
  position: absolute;
  font-size: 1.8rem;
  animation: floatAround 6s ease-in-out infinite;
  user-select: none;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
@keyframes floatAround {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(5deg); }
  66%       { transform: translateY(6px) rotate(-3deg); }
}
.float-el:nth-child(1)  { top: 5%;  left: 5%;  animation-delay: 0s;    font-size: 2rem; }
.float-el:nth-child(2)  { top: 15%; right: 8%; animation-delay: 0.8s;  font-size: 1.5rem; }
.float-el:nth-child(3)  { top: 45%; left: 0%;  animation-delay: 1.2s;  font-size: 2.2rem; }
.float-el:nth-child(4)  { bottom: 30%; right: 2%; animation-delay: 0.4s; font-size: 1.6rem; }
.float-el:nth-child(5)  { bottom: 10%; left: 12%; animation-delay: 1.6s; font-size: 1.8rem; }
.float-el:nth-child(6)  { top: 70%; right: 15%; animation-delay: 2s;   font-size: 1.4rem; }
.float-el:nth-child(7)  { top: 25%; left: 18%; animation-delay: 0.6s;  font-size: 1.3rem; }
.float-el:nth-child(8)  { bottom: 45%; left: 3%; animation-delay: 1.8s; font-size: 1.9rem; }
.float-el:nth-child(9)  { top: 8%;  right: 25%; animation-delay: 2.5s; font-size: 1.2rem; }
.float-el:nth-child(10) { bottom: 15%; right: 5%; animation-delay: 1.1s; font-size: 1.7rem; }
.float-el:nth-child(11) { top: 60%; left: 8%;  animation-delay: 0.3s;  font-size: 1.4rem; }
.float-el:nth-child(12) { bottom: 60%; right: 0%; animation-delay: 2.2s; font-size: 2rem; }

/* Confetti Dots */
.confetti-dot {
  position: absolute;
  border-radius: 50%;
  animation: confettiFall 8s linear infinite;
  opacity: 0.4;
}
@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0); opacity: 0.6; }
  100% { transform: translateY(500px) rotate(360deg); opacity: 0; }
}

/* ── WAVE DIVIDER ── */
.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.2;
}
.section-title em {
  color: var(--red);
  font-style: italic;
}
.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--charcoal2);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.title-underline {
  display: block;
  width: 70px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  margin: 1.2rem auto 0;
}

/* ── OCCASIONS ── */
.occasions-section {
  padding: 6rem 4rem;
  background: var(--cream);
  position: relative;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.occasion-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  height: 220px;
  transition: all 0.4s ease;
}

.occasion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(215,25,32,0.2);
}

/* IMAGE REPLACES EMOJI */
.occasion-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  height: 220px;
  transition: all 0.4s ease;
}

.occasion-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.occasion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.15)
  );
}

.occasion-card:hover .occasion-image {
  transform: scale(1.08);
}

.occasion-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  color: white;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.occasion-sub {
  color: rgba(255,255,255,.85);
}

.occasion-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;

  width: 40px;
  height: 40px;

  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  transition: all .3s ease;
}

.occasion-card:hover .occasion-arrow {
  background: var(--red);
}

.occasion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.occasion-card:hover .occasion-image {
  transform: scale(1.15) rotate(8deg);
}

.occasion-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.occasion-sub {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal2);
  margin-top: 3px;
  display: block;
}

.occasion-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.occasion-card:hover .occasion-arrow {
  background: var(--red);
  color: #fff;
}

/* ── FEATURED COLLECTION ── */
.collection-section {
  padding: 6rem 4rem;
  background: var(--white);
}
.collection-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.cake-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.cake-card:hover { transform: scale(1.02); }
.cake-card:nth-child(1) {
  grid-row: 1 / 3;
  min-height: 500px;
}
.cake-card:nth-child(2),
.cake-card:nth-child(3),
.cake-card:nth-child(4),
.cake-card:nth-child(5) { min-height: 230px; }
.cake-card:nth-child(6) {
  grid-column: 2 / 4;
  min-height: 180px;
}
.cake-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.cake-card:hover .cake-card-img { transform: scale(1.08); }
.cake-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cake-card-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.cake-card-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
}

.cake-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.cake-card:hover .cake-card-img {
  transform: scale(1.08);
}

.cake-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cake-card:hover .cake-card-info { transform: translateY(0); }
.cake-name-overlay {
  position: absolute;
  bottom: 1.2rem; left: 1.5rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: opacity 0.3s ease;
}
.cake-card:hover .cake-name-overlay { opacity: 0; }
.cake-info-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.cake-info-desc {
  font-size: 0.82rem;
  opacity: 0.8;
}
.cake-info-btn {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── PROCESS ── */
.process-section {
  padding: 6rem 4rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(215,25,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.process-section .section-eyebrow { color: var(--pink); }
.process-section .section-title { color: var(--white); }
.process-section .title-underline { background: linear-gradient(90deg, var(--pink), var(--gold)); }
.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 60px; left: 60px; right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--pink), var(--red));
  z-index: 0;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
  cursor: pointer;
}
.step-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 3px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  transition: all 0.4s ease;
  position: relative;
}
.process-step:hover .step-icon,
.process-step.active .step-icon {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(215,25,32,0.5);
}
.step-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.process-step:hover .step-label,
.process-step.active .step-label { color: var(--white); }
.step-detail {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
  line-height: 1.4;
  transition: color 0.3s;
}
.process-step:hover .step-detail { color: rgba(255,255,255,0.6); }

/* ── MEMORY WALL ── */
.memory-section {
  padding: 6rem 4rem;
  background: var(--pink-light);
  position: relative;
  overflow: hidden;
}

.memory-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.memory-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(215,25,32,0.08);
  box-shadow: 0 4px 20px rgba(215,25,32,0.06);
  transition: all 0.4s ease;
  position: relative;
}

.memory-card:hover {
  transform: rotate(0) translateY(-8px);
  box-shadow: 0 20px 50px rgba(215,25,32,0.15);
}

.memory-card:nth-child(1) {
  transform: rotate(-2deg);
}

.memory-card:nth-child(2) {
  transform: rotate(1.5deg);
  margin-top: 2rem;
}

.memory-card:nth-child(3) {
  transform: rotate(-1deg);
}

.memory-card:nth-child(4) {
  transform: rotate(2deg);
}

.memory-card:nth-child(5) {
  transform: rotate(-1.5deg);
  margin-top: -1rem;
}

.memory-card:nth-child(6) {
  transform: rotate(1deg);
}

.memory-body {
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
}

.memory-body::before {
  content: '"';
  position: absolute;
  top: 0.2rem;
  left: 1rem;
  font-size: 4.5rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: rgba(215,25,32,0.08);
  font-weight: 700;
}

.memory-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
}

.memory-text {
  font-size: 0.9rem;
  color: var(--charcoal2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.memory-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.memory-name::before {
  content: '—';
  color: var(--red);
}

.memory-name::after {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.memory-occasion {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ── CTA BANNER ── */
.cta-section {
  padding: 8rem 4rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-emoji { font-size: 4rem; margin-bottom: 1.5rem; display: block; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.btn-white {
  background: #fff;
  color: var(--red) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 5rem 4rem 2rem;
  color: rgba(255,255,255,0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-brand .logo-mark { background: var(--red); }
.footer-brand .logo-text span:first-child { color: var(--white); }
.footer-tagline {
  font-family: var(--font-script);
  color: var(--pink);
  font-size: 1rem;
  margin: 1rem 0;
  display: block;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.social-btn:hover {
  background: var(--red);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}
.footer-col ul li a:hover { color: var(--pink); }
.footer-col address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-col .phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pink);
  font-weight: 700;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}
.footer-bottom span { opacity: 0.5; }
.footer-love {
  opacity: 0.5;
  font-style: italic;
}

/* ════════════════════════
   GALLERY PAGE
════════════════════════ */
.page-hero {
  padding: 10rem 4rem 6rem;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-deco {
  position: absolute;
  font-size: 8rem;
  opacity: 0.06;
  user-select: none;
}
.page-hero-deco:nth-child(1) { top: -2rem; left: -2rem; }
.page-hero-deco:nth-child(2) { bottom: -2rem; right: -2rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--red); font-style: italic; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--charcoal2);
  max-width: 500px;
  margin: 0 auto;
}

.filter-bar {
  padding: 2.5rem 4rem;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: sticky;
  top: 72px;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid rgba(0,0,0,0.1);
  background: transparent;
  color: var(--charcoal2);
  transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 15px rgba(215,25,32,0.3);
}

.gallery-section {
  padding: 4rem;
  background: var(--white);
}
.masonry-grid {
  columns: 3;
  column-gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.masonry-item:hover { transform: scale(1.02); }
.masonry-img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.masonry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover .masonry-img img {
  transform: scale(1.08);
}

.masonry-item.tall .masonry-img {
  height: 420px;
}

.masonry-item.medium .masonry-img {
  height: 300px;
}

.masonry-item.short .masonry-img {
  height: 220px;
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-cake-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.masonry-cake-cat {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-masterpiece {
  padding: 6rem 4rem;
  background: var(--charcoal);
  text-align: center;
}
.masterpiece-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}
.masterpiece-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #4a1e1e 0%, #D71920 60%, #ff6b6b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.masterpiece-art { font-size: 7rem; }
.masterpiece-tag {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.masterpiece-info .section-eyebrow { text-align: left; }
.masterpiece-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.masterpiece-info p {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.masterpiece-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.spec-item {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}
.spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
}
.spec-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

/* ════════════════════════
   CONTACT PAGE
════════════════════════ */
.contact-section {
  padding: 6rem 4rem;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.contact-detail-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
}
.contact-detail-value a { color: var(--red); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hours-row .day { color: var(--charcoal2); }
.hours-row .time { font-weight: 700; color: var(--red); }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 3rem;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.contact-form-wrap .form-sub {
  font-size: 0.9rem;
  color: var(--charcoal2);
  margin-bottom: 2rem;
}
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1.2rem 0.8rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(215,25,32,0.08);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 1.5rem;
}
.form-group label {
  position: absolute;
  top: 1.1rem; left: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
  pointer-events: none;
  transition: all 0.3s ease;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]):valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 0.4rem;
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: transparent; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.map-section {
  padding: 0 4rem 6rem;
  background: var(--white);
}
.map-inner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--charcoal2);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.map-pin { font-size: 3rem; }
.map-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
}
.map-addr { font-size: 0.88rem; text-align: center; max-width: 300px; line-height: 1.5; }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* ── FAQ ── */
.faq-section {
  padding: 6rem 4rem;
  background: var(--cream);
}
.faq-inner {
  max-width: 750px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: 0 4px 25px rgba(215,25,32,0.08); }
.faq-q {
  width: 100%;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--red); }
.faq-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--red);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-item.open .faq-arrow {
  background: var(--red);
  color: #fff;
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.9rem;
  color: var(--charcoal2);
  line-height: 1.7;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .header { padding: 1rem 2rem; }
  .header.scrolled { padding: 0.8rem 2rem; }
  .hero { padding: 7rem 2rem 5rem; }
  .hero-visual { width: 380px; height: 380px; right: 2%; }
  .occasions-section,
  .collection-section,
  .process-section,
  .memory-section,
  .insta-section,
  .cta-section { padding: 5rem 2rem; }
  footer { padding: 4rem 2rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .cake-card:nth-child(1) { grid-row: auto; }
  .cake-card:nth-child(6) { grid-column: span 2; }
  .gallery-section,
  .contact-section,
  .map-section,
  .faq-section,
  .featured-masterpiece { padding: 4rem 2rem; }
  .filter-bar { padding: 1.5rem 2rem; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero {
    padding: 7rem 1.5rem 3rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .hero-content { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual {
    position: relative;
    right: auto; top: auto;
    transform: none;
    width: 280px; height: 280px;
    margin-top: 3rem;
  }
  .cake-stage { width: 200px; height: 240px; }
  .hero-badge { left: 50%; transform: translateX(-50%); flex-wrap: wrap; justify-content: center; bottom: 1.5rem; }
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .cake-card:nth-child(6) { grid-column: auto; }
  .process-track { flex-wrap: wrap; gap: 2rem; }
  .process-track::before { display: none; }
  .memory-wall { grid-template-columns: 1fr 1fr; }
  .memory-card:nth-child(odd) { transform: none; }
  .memory-card:nth-child(even) { transform: none; margin-top: 0; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .insta-item:nth-child(1) { grid-column: auto; grid-row: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .masterpiece-inner { grid-template-columns: 1fr; gap: 2rem; }
  .masonry-grid { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .occasions-section,
  .collection-section,
  .process-section,
  .memory-section,
  .insta-section,
  .cta-section,
  .gallery-section,
  .featured-masterpiece,
  .contact-section,
  .faq-section { padding: 4rem 1.5rem; }
  .map-section { padding: 0 1.5rem 4rem; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .occasions-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .memory-wall { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { width: 50%; }
}