/* ===== Elle's Sweets — design tokens ===== */
:root {
  --black: #0c0a0d;
  --black-soft: #16121a;
  --pink: #ee5f9e;
  --pink-soft: #ffb3d6;
  --gold: #cda45e;
  --gold-light: #e8cf9c;
  --red: #d81e2c;
  --cream: #fff8f2;
  --ink: #241c22;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Alex Brush', cursive;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  --radius: 18px;
  --shadow: 0 20px 45px -20px rgba(0,0,0,.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pink);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.section { padding: clamp(3rem, 6vw, 6rem) 1.25rem; }
.section-inner { max-width: 1120px; margin: 0 auto; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 600;
  color: var(--pink);
  margin: 0 0 .75rem;
}
.eyebrow-light { color: var(--gold-light); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,10,13,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(205,164,94,.25);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 52px; width: 52px; border-radius: 50%; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.main-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}
.main-nav a:hover { color: var(--pink-soft); }
.main-nav .nav-cta {
  background: var(--pink);
  color: #fff;
  padding: .55rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
}
.main-nav .nav-cta:hover { background: #f374ac; color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--cream);
  margin: 0 auto;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: radial-gradient(120% 100% at 50% 0%, #221a24 0%, var(--black) 60%);
  color: var(--cream);
  text-align: center;
  padding: clamp(3.5rem, 9vw, 7rem) 1.25rem clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(circle, rgba(238,95,158,.25), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 640px; margin: 0 auto; }
.hero-logo {
  width: clamp(150px, 30vw, 220px);
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(205,164,94,.4), var(--shadow);
}
.hero-kicker {
  font-size: clamp(.85rem, 2vw, 1rem);
  letter-spacing: .04em;
  color: var(--gold-light);
  margin: 0 0 .5rem;
}
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--pink-soft);
  margin: 0 0 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.hero-note {
  font-size: .85rem;
  color: rgba(255,248,242,.65);
  letter-spacing: .01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: 1px solid transparent;
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #d64f8c);
  color: #fff;
  box-shadow: 0 12px 25px -10px rgba(238,95,158,.6);
}
.btn-primary:hover { box-shadow: 0 16px 30px -10px rgba(238,95,158,.75); color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,248,242,.35);
}
.btn-secondary:hover { background: rgba(255,248,242,.08); color: var(--cream); }

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-text p { line-height: 1.75; color: #4a3b43; }
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== Menu ===== */
.menu {
  background: radial-gradient(140% 100% at 50% 0%, #241b26 0%, var(--black) 55%);
  color: var(--cream);
  text-align: center;
}
.menu-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4rem);
  letter-spacing: .03em;
  margin-bottom: .25rem;
}
.menu-subtitle {
  color: var(--gold-light);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 3rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  text-align: left;
}
.menu-card {
  position: relative;
  background: rgba(255,248,242,.04);
  border: 1px solid rgba(205,164,94,.35);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem;
  overflow: hidden;
}
.menu-card-photo {
  width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem 1.1rem;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 .6rem;
  color: var(--cream);
}
.menu-card .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin: 0;
}
.menu-card-new { border-color: var(--pink); }
.new-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  background: var(--pink);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .3rem .6rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.menu-footnote {
  margin-top: 2.25rem;
  color: rgba(255,248,242,.7);
  font-size: .9rem;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.menu-tagline {
  font-family: var(--font-display);
  font-style: italic;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--gold-light);
}
.accent-spicy { color: var(--red); }

/* ===== Custom Orders ===== */
.custom-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.custom-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.custom-photos img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.custom-photos img:first-child { margin-top: 2rem; }
.custom-text p { line-height: 1.75; color: #4a3b43; }
.occasion-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem .75rem;
}
.occasion-list li {
  background: #fff;
  border: 1px solid rgba(238,95,158,.25);
  border-radius: 10px;
  padding: .55rem .85rem;
  font-size: .9rem;
  font-weight: 500;
}
.occasion-list li::before { content: "✦ "; color: var(--pink); }
.custom-note {
  background: rgba(238,95,158,.08);
  border-left: 3px solid var(--pink);
  padding: .85rem 1rem;
  border-radius: 0 10px 10px 0;
  font-size: .92rem;
}

/* ===== Gallery ===== */
.gallery { background: var(--cream); text-align: center; }
.gallery-title { margin-bottom: 2.25rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cta { margin-top: 2.25rem; color: #5a4a52; }
.gallery-cta a { color: var(--pink); font-weight: 600; text-decoration: none; }
.gallery-cta a:hover { text-decoration: underline; }

/* ===== How to Order ===== */
.how-to-order {
  background: radial-gradient(140% 100% at 50% 0%, #241b26 0%, var(--black) 55%);
  color: var(--cream);
  text-align: center;
}
.order-title { margin-bottom: 2.5rem; }
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  text-align: left;
}
.steps li { display: flex; gap: 1rem; }
.step-num {
  flex: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.steps h3 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.steps p {
  margin: 0;
  font-size: .9rem;
  color: rgba(255,248,242,.75);
  line-height: 1.6;
}
.steps a { color: var(--pink-soft); }

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: rgba(255,248,242,.75);
  text-align: center;
  padding: 3rem 1.25rem 2.5rem;
}
.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(205,164,94,.4);
  color: var(--cream);
}
.footer-socials .icon { width: 18px; height: 18px; fill: currentColor; }
.footer-socials a:hover { background: rgba(238,95,158,.15); border-color: var(--pink); }
.footer-thanks { font-family: var(--font-display); font-style: italic; color: var(--pink-soft); margin: 0 0 .35rem; }
.footer-hashtag { color: var(--gold-light); font-size: .85rem; margin: 0 0 1.5rem; }
.footer-copy { font-size: .78rem; color: rgba(255,248,242,.45); margin: 0; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12,10,13,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 300;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(90vw, 700px);
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .about-inner, .custom-inner { grid-template-columns: 1fr; }
  .custom-photos { order: 2; }
  .custom-photos img:first-child { margin-top: 0; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-soft);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
    display: none;
    border-bottom: 1px solid rgba(205,164,94,.25);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .4rem 0; }
  .main-nav .nav-cta { text-align: center; }
  .occasion-list { grid-template-columns: 1fr 1fr; }
}
