:root {
  --pink: #D1417A;
  --pink-dark: #b12f62;
  --green: #4C9A6A;
  --orange: #F0873B;
  --yellow: #FFC42E;
  --dark: #3a1a30;
  --cream: #FBF5EC;
  --muted: #6a5a64;
  --muted-light: #a58aa0;
  --line: rgba(58, 26, 48, 0.09);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
}

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

a {
  color: var(--pink);
  text-decoration: none;
}
a:hover { color: var(--pink-dark); }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.script-eyebrow {
  font-family: 'Satisfy', cursive;
  font-weight: 400;
  font-size: 30px;
  color: var(--pink);
  margin-bottom: 6px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 48px;
  margin: 0;
  color: var(--dark);
}
.section-title--light { color: var(--cream); }

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.placeholder-image {
  background: repeating-linear-gradient(135deg, #efe3d4 0 16px, #e7d8c6 16px 32px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-image span {
  font-family: monospace;
  font-size: 13px;
  color: #b09a86;
}
.placeholder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn--primary {
  background: var(--pink);
  color: #fff;
}
.btn--primary:hover { background: var(--pink-dark); color: #fff; }
.btn--lg { font-size: 15px; padding: 15px 32px; }
.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(58, 26, 48, 0.25);
  padding: 13.5px 30px;
}
.btn--outline:hover { border-color: var(--dark); color: var(--dark); }
.btn--outline-light {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(246, 206, 76, 0.5);
  padding: 12px 24px;
}
.btn--outline-light:hover { background: var(--yellow); color: var(--dark); }
.btn--full { width: 100%; padding: 15px; font-size: 15px; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 245, 236, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58, 26, 48, 0.08);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: none;
  display: block;
}
.logo-mark--sm { width: 30px; height: 30px; }
.logo-mark__base {
  position: absolute; left: 4px; top: 24px; width: 26px; height: 4px;
  border-radius: 2px; background: var(--green);
}
.logo-mark__mid {
  position: absolute; left: 4px; top: 16px; width: 26px; height: 9px;
  border-radius: 3px 3px 2px 2px; background: var(--pink);
}
.logo-mark__top {
  position: absolute; left: 9px; top: 8px; width: 16px; height: 9px;
  border-radius: 3px 3px 2px 2px; background: var(--orange);
}
.logo-mark__cherry {
  position: absolute; left: 15px; top: 2px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--dark);
}
.logo-mark--sm .logo-mark__base { left: 3px; top: 21px; width: 24px; height: 4px; }
.logo-mark--sm .logo-mark__mid { left: 3px; top: 14px; width: 24px; height: 8px; }
.logo-mark--sm .logo-mark__top { left: 8px; top: 7px; width: 14px; height: 8px; }
.logo-mark--sm .logo-mark__cherry { left: 13px; top: 2px; background: var(--yellow); }

.logo-word {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
}
.logo-word--light { color: var(--cream); font-size: 20px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.nav-links a { color: var(--dark); }
.nav-links a:hover { color: var(--pink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 32px 88px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 74px;
  line-height: 1.02;
  margin: 0 0 22px;
  color: var(--dark);
}

.hero__lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 460px;
  margin: 0 0 34px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.stat__value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 32px;
}
.stat__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.hero__art { position: relative; }

.hero__image {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(58, 26, 48, 0.5);
}

.hero__badge {
  position: absolute;
  left: -22px;
  bottom: 34px;
  background: var(--dark);
  color: var(--cream);
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: 0 20px 40px -20px rgba(58, 26, 48, 0.6);
}
.hero__badge-script {
  font-family: 'Satisfy', cursive;
  font-weight: 400;
  font-size: 26px;
  color: var(--yellow);
  line-height: 0.9;
}
.hero__badge-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

/* ===== CAKES ===== */
.cakes {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cakes .wrap { padding: 88px 32px; }

.cakes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cake-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  transition: box-shadow 0.2s ease;
}
.cake-card:hover { box-shadow: 0 24px 50px -30px rgba(58, 26, 48, 0.4); }

.cake-card__image { aspect-ratio: 4 / 3; }

.cake-card__body { padding: 26px; }
.cake-card__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 8px;
  color: var(--dark);
}
.cake-card__body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 14px;
}

.price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--pink);
}

/* ===== ABOUT ===== */
.about {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 32px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about__image {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -35px rgba(58, 26, 48, 0.5);
}
.about__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--dark);
}
.about__copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 16px;
}
.about__copy p:last-child { margin-bottom: 0; }

/* ===== WATCH ===== */
.watch {
  background: var(--dark);
  color: var(--cream);
}
.watch .wrap { padding: 88px 32px; }

.watch__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}

.watch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #4a2a40 0 16px, #42243a 16px 32px);
}
.reel__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(251, 245, 236, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid var(--dark);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.reel__caption {
  position: absolute;
  left: 14px;
  bottom: 16px;
  right: 14px;
}
.reel__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}
.reel__tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 6px;
}

.watch__foot {
  text-align: center;
  font-size: 14px;
  color: rgba(251, 245, 236, 0.6);
  margin: 36px 0 0;
}

/* ===== CONTACT ===== */
.contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--dark);
}
.contact__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 440px;
  margin: 0 0 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.detail-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 4px;
}
.detail-link { font-size: 17px; color: var(--dark); }
.detail-link:hover { color: var(--pink); }

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.social-pill {
  border: 1px solid rgba(58, 26, 48, 0.16);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--dark);
}
.social-pill:hover { border-color: var(--pink); color: var(--pink); }

.contact__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 30px 60px -40px rgba(58, 26, 48, 0.5);
}

.enquiry-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(58, 26, 48, 0.18);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--cream);
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus {
  border-color: var(--pink);
  outline: none;
}

.enquiry-thanks { text-align: center; padding: 40px 10px; }
.enquiry-thanks__script {
  font-family: 'Satisfy', cursive;
  font-weight: 400;
  font-size: 40px;
  color: var(--green);
  line-height: 0.9;
}
.enquiry-thanks p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 16px 0 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: var(--cream);
}
.site-footer__inner {
  padding: 44px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer__copy {
  font-size: 13px;
  color: rgba(251, 245, 236, 0.55);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero__title { font-size: 54px; }
  .hero__art { order: -1; max-width: 420px; margin: 0 auto; }

  .cakes__grid { grid-template-columns: 1fr 1fr; }

  .about { grid-template-columns: 1fr; }
  .about__image { max-width: 420px; margin: 0 auto; }

  .watch__grid { grid-template-columns: repeat(3, 1fr); }

  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .nav-right {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(58, 26, 48, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 32px 28px;
    display: none;
  }
  .nav-right.is-open { display: flex; }
  .nav-links { flex-direction: column; gap: 16px; }

  .hero__title { font-size: 42px; }
  .hero__badge { left: 12px; }

  .cakes__grid { grid-template-columns: 1fr; }
  .watch__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
