/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #fdf6ee;
  --blush:   #f2c4b0;
  --rose:    #c96b52;
  --rose-dk: #a54f3a;
  --choc:    #3e2018;
  --brown:   #7a4528;
  --text:    #2e1a0e;
  --muted:   #7a6257;
  --white:   #ffffff;
  --shadow:  0 4px 24px rgba(62,32,24,.10);
  --radius:  12px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.25; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--white); }
h1 em { font-style: italic; color: var(--blush); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--choc); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; color: var(--choc); margin-bottom: .5rem; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,107,82,.3); }

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn-primary:hover { background: var(--rose-dk); border-color: var(--rose-dk); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.15); }

.btn-full { width: 100%; text-align: center; }

/* ── Nav ── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,246,238,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(242,196,176,.4);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--choc);
  text-decoration: none;
  font-weight: 700;
}
nav { display: flex; align-items: center; gap: 32px; }
nav a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 400;
  font-size: .95rem;
  transition: color .2s;
}
nav a:hover { color: var(--rose); }
.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--rose-dk); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--choc); cursor: pointer; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, #3e2018 0%, #7a4528 40%, #c96b52 100%);
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(30,10,5,.4) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.85);
  margin: 1.2rem 0 2.4rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── About ── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.about-text .btn { margin-top: .5rem; }
.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.badge {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(242,196,176,.5);
}
.badge-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.badge strong { display: block; color: var(--choc); font-size: 1rem; margin-bottom: .3rem; }
.badge p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ── Specialties ── */
.specialties { background: var(--cream); text-align: center; }
.specialties h2 { margin-bottom: .5rem; }
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.specialty-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.specialty-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(62,32,24,.15); }
.specialty-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.specialty-img.wedding   { background: linear-gradient(135deg, #f8e8e8, #e8c5c5, #c96b52); }
.specialty-img.birthday  { background: linear-gradient(135deg, #fde8d8, #f2c4b0, #e0896a); }
.specialty-img.cookies   { background: linear-gradient(135deg, #fdf0e0, #e8d0a8, #c8a060); }
.specialty-img.occasions { background: linear-gradient(135deg, #e8f0e8, #c8dfc8, #80b080); }
.specialty-card h3, .specialty-card p { padding: 0 20px; }
.specialty-card h3 { padding-top: 20px; }
.specialty-card p { color: var(--muted); font-size: .9rem; padding-bottom: 24px; }

/* ── Gallery ── */
.gallery {
  background: var(--choc);
  text-align: center;
  padding: 80px 0;
}
.gallery .section-label { color: var(--blush); }
.gallery h2 { color: var(--white); }
.gallery-sub { color: rgba(255,255,255,.7); max-width: 500px; margin: 1rem auto 2rem; }
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
}
.instagram-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,39,67,.4); }

/* ── Testimonials ── */
.testimonials { background: var(--white); text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 4px solid var(--rose);
  text-align: left;
}
.testimonial p { color: var(--muted); font-style: italic; margin-bottom: 1rem; }
.testimonial strong { color: var(--choc); font-size: .9rem; }

/* ── Order / Contact ── */
.order { background: var(--cream); }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.order-text p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--rose);
  font-weight: 700;
  transition: color .2s;
}
.contact-info a:hover { color: var(--rose-dk); }

.order-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--choc);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(122,70,40,.2);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ── Footer ── */
.footer {
  background: var(--choc);
  color: rgba(255,255,255,.7);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer .logo { color: var(--white); font-size: 1.8rem; display: block; margin-bottom: .5rem; }
.footer-brand p { font-size: .9rem; line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--blush); }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .order-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  nav { display: none; }
  .nav-toggle { display: block; }
  .specialties-grid { grid-template-columns: 1fr; }
  .about-badges { grid-template-columns: 1fr 1fr; }
  .order-form { padding: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* ── Blog ── */
.blog-hero {
  background: linear-gradient(135deg, #3e2018 0%, #7a4528 40%, #c96b52 100%);
  padding: 140px 24px 80px;
  text-align: center;
  color: var(--white);
}
.blog-hero h1 { color: var(--white); margin-bottom: 1rem; }
.blog-hero h1 em { color: var(--blush); font-style: italic; }
.blog-hero-sub {
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.blog-index { background: var(--cream); padding: 64px 0; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(62,32,24,.18); }
.post-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #efe1d3;
}
.post-card-img-placeholder {
  background: linear-gradient(135deg, #f2c4b0, #c96b52);
}
.post-card-body { padding: 22px 24px 26px; }
.post-card-date {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .4rem;
}
.post-card h3 {
  font-size: 1.2rem;
  color: var(--choc);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.post-card-excerpt { color: var(--muted); font-size: .92rem; line-height: 1.55; }

/* ── Single Post ── */
.post-page { background: var(--cream); padding: 120px 0 80px; }
.post-article { background: var(--white); border-radius: var(--radius); padding: 48px 56px; box-shadow: var(--shadow); max-width: 820px; }
.post-back {
  display: inline-block;
  color: var(--rose);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 24px;
  transition: color .2s;
}
.post-back:hover { color: var(--rose-dk); }
.post-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(122,70,40,.15); }
.post-date {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .6rem;
}
.post-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--choc);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.post-tag {
  background: var(--cream);
  color: var(--brown);
  font-size: .75rem;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(242,196,176,.6);
}
.post-content { color: var(--text); font-size: 1rem; line-height: 1.8; }
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}
.post-content a { color: var(--rose); }
.post-content a:hover { color: var(--rose-dk); }
.post-content br + br { display: none; }

.post-comments {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(122,70,40,.15);
}
.post-comments h3 {
  font-family: var(--font-serif);
  color: var(--choc);
  margin-bottom: 20px;
}
.comment {
  background: var(--cream);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 14px;
  border-left: 3px solid var(--blush);
}
.comment-meta { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }
.comment-meta strong { color: var(--choc); }
.comment-body { color: var(--text); font-size: .95rem; line-height: 1.6; }
.comment-body a { color: var(--rose); }

.post-footer { margin-top: 48px; text-align: center; }

@media (max-width: 900px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
  .post-article { padding: 32px 24px; }
  .blog-hero { padding: 120px 24px 60px; }
}
