/* ============================================
   TEAL CAKES AND TREATS — STYLESHEET
   ============================================ */

:root {
  --orange: #FF7A00;
  --orange-light: #FF8C42;
  --orange-dark: #E06600;
  --charcoal: #2B2320;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #1EBE57;

  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;

  --shadow-soft: 0 8px 24px rgba(43, 35, 32, 0.08);
  --shadow-hover: 0 14px 32px rgba(255, 122, 0, 0.22);

  --container-width: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100vw;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: min(var(--container-width), calc(100vw - 32px));
  margin: 0 auto;
  padding: 0 24px;
}

main,
.section,
.final-cta,
.footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-body);
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; white-space: normal; }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 122, 0, 0.28);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-hover); }

.btn--ghost {
  background: transparent;
  color: var(--orange-dark);
  border: 2px solid var(--orange);
  padding: 14px 30px;
}
.btn--ghost:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.32);
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px) scale(1.02); }

.btn--white { background: var(--white); color: var(--orange-dark); }
.btn--white:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }

.btn--outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 30px;
}
.btn--outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ---------- Eyebrow / Section heads ---------- */
.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.6em;
}
.eyebrow--light { color: var(--white); opacity: 0.85; }

.section { padding: 88px 0; }
.section--cream { background: var(--cream); }

.section__head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section__head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section__sub { color: #6b5c53; font-size: 1.05rem; }
.section__head--light h2 { color: var(--white); }
.section__sub--light { color: rgba(255,255,255,0.85); }

/* ---------- Logo ---------- */
.logo-mark { color: var(--orange); display: inline-flex; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,35,32,0.06);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(43,35,32,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__wordmark-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
}
.nav__wordmark-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-weight: 600;
}

.nav__links {
  display: flex;
  gap: 30px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.2s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none;
  padding: 0;
}
.nav__burger span {
  display: block; width: 100%; height: 2.5px;
  background: var(--charcoal); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.4);
  z-index: 200;
  animation: pulse-wa 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { background: var(--whatsapp-dark); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 22px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 22px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(7rem, 18vh, 11rem) 0 clamp(4rem, 8vh, 6rem);
  overflow: hidden;
  color: var(--white);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(43,26,10,0.82) 0%, rgba(224,102,0,0.55) 55%, rgba(255,140,66,0.35) 100%),
    radial-gradient(circle at 80% 20%, rgba(255,180,110,0.5), transparent 55%),
    linear-gradient(160deg, #7a3b12 0%, #b3520a 45%, #ff7a00 100%);
  z-index: -1;
}
.hero__inner { max-width: 680px; }
.hero .eyebrow { color: #FFD9AE; }
.hero__headline {
  font-size: clamp(2.4rem, 5.4vw, 3.8rem);
  font-style: italic;
  color: var(--white);
}
.hero__sub {
  font-size: 1.1rem;
  max-width: 540px;
  color: rgba(255,255,255,0.9);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin: 28px 0 40px; }
.hero .btn--ghost { border-color: rgba(255,255,255,0.7); color: var(--white); }
.hero .btn--ghost:hover { background: var(--white); color: var(--orange-dark); }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-size: 0.92rem;
  font-weight: 600;
}

/* ---------- Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.product-card__img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card__img--1 {
  background-image: linear-gradient(135deg, rgba(255, 217, 174, 0.18), rgba(255, 154, 77, 0.12)),
    url("images/Butter cream vintage cake size 6.jpeg");
}
.product-card__img--2 {
  background-image: linear-gradient(135deg, rgba(255, 227, 194, 0.18), rgba(255, 140, 66, 0.12)),
    url("images/Butter cream cake size 6.jpeg");
}
.product-card__img--3 {
  background-image: linear-gradient(135deg, rgba(255, 207, 160, 0.18), rgba(224, 102, 0, 0.14)),
    url("images/Butter cream cake size 7.jpeg");
}
.product-card__img--4 {
  background-image: linear-gradient(135deg, rgba(255, 178, 122, 0.18), rgba(179, 82, 10, 0.14)),
    url("images/Butter cream cake size 8.jpeg");
}
.product-card__img--5 {
  background-image: linear-gradient(135deg, rgba(255, 232, 209, 0.18), rgba(255, 162, 92, 0.12)),
    url("images/Size 4 Bento cake and cup cake combo.jpeg");
}
.product-card__img--6 {
  background-image: linear-gradient(135deg, rgba(244, 217, 168, 0.18), rgba(201, 134, 46, 0.12)),
    url("images/Midi banana bread loaf.jpeg");
}
.product-card__img--7 {
  background-image: linear-gradient(135deg, rgba(247, 228, 193, 0.18), rgba(217, 163, 86, 0.12)),
    url("images/Mini banana bread loaf.jpeg");
}

.product-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.product-card__body h3 { font-size: 1.05rem; margin-bottom: 0; }
.product-card__size { color: #8a776c; font-size: 0.85rem; margin-bottom: 4px; }
.product-card__price { font-weight: 800; color: var(--orange-dark); font-size: 1.15rem; margin-bottom: 12px; }
.product-card__body .btn { margin-top: auto; }

.product-note {
  text-align: center;
  color: #8a776c;
  font-size: 0.88rem;
  margin-top: 32px;
  font-style: italic;
}

/* ---------- Testimonials ---------- */
.testimonial-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 780px) {
  .testimonial-track { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-card__quote-icon {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange-light);
  opacity: 0.5;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-card__name { font-weight: 700; margin-top: 14px; }
.tag {
  display: inline-block;
  margin-left: 8px;
  background: var(--cream);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  vertical-align: middle;
}

/* ---------- Order ---------- */
.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 860px) {
  .order-grid { grid-template-columns: 1fr 1.3fr; align-items: start; }
}
.order-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
}
.order-card--whatsapp {
  background: linear-gradient(160deg, #1EBE57, #25D366);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.order-card--whatsapp h3 { color: var(--white); }
.order-card--whatsapp p { color: rgba(255,255,255,0.92); }
.order-card--whatsapp .btn--whatsapp { background: var(--white); color: var(--whatsapp-dark); box-shadow: none; }
.order-card--whatsapp .btn--whatsapp:hover { background: var(--cream); }

.order-form { display: flex; flex-direction: column; gap: 14px; }
.order-form label { font-size: 0.88rem; font-weight: 700; color: var(--charcoal); display: flex; flex-direction: column; gap: 6px; }
.order-form input, .order-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #E9D9C8;
  background: var(--white);
  color: var(--charcoal);
  resize: vertical;
}
.order-form input:focus, .order-form textarea:focus {
  border-color: var(--orange);
  outline: none;
}
.form-note { font-size: 0.82rem; color: #8a776c; margin: 4px 0 0; }

.urgency-note {
  text-align: center;
  font-weight: 700;
  color: var(--orange-dark);
  margin: 36px 0 4px;
}
.pickup-note { text-align: center; color: #8a776c; font-size: 0.92rem; }

/* ---------- Contact ---------- */
.section--contact {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .contact-grid { grid-template-columns: repeat(4, 1fr); }
}
.contact-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.contact-card__icon { font-size: 1.6rem; }
.contact-card__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; font-weight: 700; }
.contact-card__value { font-weight: 700; font-size: 1.02rem; }

/* ---------- Social ---------- */
.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1.5px solid #F0DFCB;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.social-pill:hover { background: var(--orange); color: var(--white); transform: translateY(-3px) scale(1.03); }
.social-pill__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-weight: 800; font-size: 0.9rem;
}
.social-pill:hover .social-pill__icon { background: var(--white); color: var(--orange-dark); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(120deg, var(--orange-dark), var(--orange), var(--orange-light));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.final-cta__inner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--white); }
.final-cta__inner p { font-size: 1.05rem; opacity: 0.92; margin-bottom: 30px; }
.final-cta__buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: #F3E9DE; padding: 64px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 700px) {
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.logo-mark--footer { color: var(--orange-light); margin-bottom: 8px; }
.footer__wordmark { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--white); margin: 0; }
.footer__tagline { color: #C9B8AB; font-size: 0.9rem; }

.footer__links, .footer__social, .footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange-light); margin-bottom: 6px; }
.footer a { color: #E7D8CB; font-size: 0.92rem; transition: color 0.2s ease; }
.footer a:hover { color: var(--orange-light); }
.footer__contact p { color: #E7D8CB; font-size: 0.92rem; margin: 0; }

.footer__bottom { text-align: center; padding: 22px 0; font-size: 0.82rem; color: #a89486; }

/* ---------- Mobile Nav ---------- */
@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 18px;
    box-shadow: 0 12px 24px rgba(43,35,32,0.1);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; }
  .nav__burger { display: flex; }
  .nav__actions .btn--sm { padding: 9px 16px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  body { overflow-x: hidden; }
  .container { padding-left: 16px; padding-right: 16px; }
  .hero {
    min-height: 100dvh;
    padding-top: clamp(6rem, 22vh, 8.5rem);
    padding-bottom: 4rem;
  }
  .section { padding: 64px 0; }
  .hero__ctas .btn, .final-cta__buttons .btn { width: 100%; }
  .section__head { max-width: 100%; }
}