/* =============================================================
   Cake Kulture — styles.css
   Palette: warm cream + terracotta + soft brown + honey gold
   Type: Playfair Display (headings), Lato (body), Dancing Script (brand)
   ============================================================= */

:root {
  /* Cake Kulture palette — peach blush as primary brand colour */
  --cream: #faf5ee;        /* main canvas */
  --cream-2: #f0e5d2;      /* warm sand for alt sections */
  --white: #ffffff;
  --ink: #2d1810;          /* cocoa, headings + body text */
  --ink-soft: #6b4f3f;     /* muted brown for secondary text */
  --peach: #e89878;        /* PRIMARY brand colour, peach blush */
  --terracotta: #c46b47;   /* depth + hover state */
  --terracotta-dk: #9a4d2e; /* deep clay, footer + dark moments */
  --honey: #d4a574;        /* small accents */
  --line: #e6dccd;
  --max: 1180px;
  --radius: 6px;
  --shadow-sm: 0 2px 10px rgba(42, 24, 16, 0.06);
  --shadow-md: 0 10px 30px rgba(42, 24, 16, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--terracotta-dk); text-decoration: none; }
a:hover { color: var(--terracotta); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 760px;
}

.center { text-align: center; }

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

.eyebrow {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 0 14px;
}

.eyebrow-light { color: var(--honey); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}

.section-title.light { color: var(--cream); }

.section-sub {
  color: var(--ink-soft);
  font-size: 18px;
  margin: 0 auto;
  max-width: 620px;
}

.lead {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(6px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-name {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 400;
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover {
  background: var(--cream);
  color: var(--terracotta-dk);
}
.nav-links .nav-cta {
  background: var(--peach);
  color: var(--ink);
  margin-left: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-links .nav-cta:hover {
  background: var(--terracotta);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: 0.2s;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 24, 16, 0.30) 0%,
    rgba(42, 24, 16, 0.55) 100%
  );
}
.hero-content {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  font-weight: 700;
  color: var(--honey);
  margin: 0 0 18px;
}
.hero-title {
  font-size: clamp(34px, 6vw, 64px);
  color: var(--white);
  margin: 0 auto 18px;
  max-width: 800px;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.1s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--peach);
  color: var(--ink);
}
.btn-primary:hover { background: var(--terracotta); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.btn-ghost:hover { background: var(--white); color: var(--ink); }
.btn-link {
  background: transparent;
  color: var(--terracotta-dk);
  padding: 8px 0;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid var(--terracotta);
}

/* ============== SECTIONS ============== */
.section {
  padding: 90px 0;
}
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark .lead,
.section-dark .contact-lead { color: rgba(250, 245, 238, 0.85); }

.section-head {
  text-align: left;
  margin-bottom: 48px;
}
.section-head.center { text-align: center; }
.section-head .section-sub { margin-top: 6px; }

/* ============== GALLERY ============== */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
  margin: 0;
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.placeholder-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  border: 1px dashed var(--line);
}
.placeholder-inner {
  text-align: center;
  padding: 20px;
}
.placeholder-inner p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ink);
}

/* ============== STEPS ============== */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--cream);
  padding: 36px 28px;
  border-radius: var(--radius);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.step-title {
  font-size: 22px;
  margin-bottom: 8px;
}
.step p { color: var(--ink-soft); margin: 0; }

/* ============== FACTS ============== */
.facts {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .facts { grid-template-columns: repeat(4, 1fr); }
}
.fact {
  padding: 8px 0;
  border-top: 2px solid var(--peach);
}
.fact-title {
  font-size: 19px;
  margin: 14px 0 8px;
}
.fact p { color: var(--ink-soft); margin: 0; font-size: 15px; }

/* ============== CONTACT ============== */
.contact-lead {
  font-size: 18px;
  margin: 0 auto 36px;
  max-width: 560px;
}
.contact-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .contact-cards { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: left;
  color: var(--cream);
  transition: background 0.15s ease, transform 0.1s ease;
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.10);
  color: var(--cream);
  transform: translateY(-2px);
}
.contact-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey);
  font-weight: 700;
}
.contact-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--cream);
}
.contact-action {
  font-size: 14px;
  color: var(--honey);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--cream-2);
  color: var(--ink);
  padding: 60px 0 20px;
}
.footer-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 2fr; }
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.footer-tag {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 280px;
}

.footer-cols {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--ink); font-size: 15px; }
.footer-col a:hover { color: var(--terracotta-dk); }

.footer-base {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============== FLOATING WHATSAPP ============== */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 60;
  transition: transform 0.15s ease, background 0.15s ease;
}
.whatsapp-float:hover {
  transform: scale(1.06);
  background: #1ebe5b;
  color: var(--white);
}

/* ============== MOBILE NAV ============== */
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a { padding: 14px; font-size: 16px; }
  .nav-links .nav-cta { margin-left: 0; text-align: center; }
}

/* ============== ORDER FORM ============== */
.order-form-wrap {
  margin: 64px auto 0;
  max-width: 760px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px 32px;
}
.order-form-head { text-align: center; margin-bottom: 28px; }
.order-form-title { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.order-form {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .order-form { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--peach);
  box-shadow: 0 0 0 3px rgba(232, 152, 120, 0.25);
}
.field textarea { resize: vertical; }
.order-submit { width: 100%; cursor: pointer; border: 0; }
.order-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 12px 0 0;
}

/* ============== TESTIMONIALS ============== */
.reviews {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}
.reviews.reviews-multi { max-width: var(--max); }
@media (min-width: 720px) {
  .reviews.reviews-multi { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .reviews.reviews-multi { grid-template-columns: repeat(3, 1fr); }
}
.reviews-multi .review blockquote { font-size: 19px; }
.review {
  margin: 0;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.review-stars {
  color: var(--honey);
  letter-spacing: 0.15em;
  font-size: 18px;
  margin-bottom: 14px;
}
.review blockquote {
  margin: 0 0 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
}
.review blockquote p { margin: 0; }
.review-by {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--terracotta-dk);
}

/* ============== LIGHTBOX ============== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(26, 14, 8, 0.92);
  padding: 40px 16px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: contain;
}
.lightbox-caption {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  padding: 0 24px;
  margin: 0;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 32px;
  line-height: 1;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
@media (max-width: 600px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 26px; }
}

/* ============== UTILITIES ============== */
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero { min-height: 70vh; }
}
