/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #3d2c1e;
  background: #fefaf5;
  line-height: 1.7;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }

/* ===== Colors ===== */
:root {
  --wheat: #f5e6d3;
  --caramel: #c88b3a;
  --chocolate: #5c3d2e;
  --cream: #fefaf5;
  --crust: #b8692a;
  --dark: #2b1a0e;
  --golden: #d4a455;
}

/* ===== Typography ===== */
h1, h2, h3, .logo, .hero-tag {
  font-family: 'Playfair Display', Georgia, serif;
}
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--chocolate);
  margin-bottom: 16px;
}
.section-sub {
  text-align: center;
  color: #8b6914;
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 48px;
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(254, 250, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 139, 58, 0.15);
  transition: box-shadow 0.3s, background 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); background: rgba(254,250,245,0.96); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 1.5rem; font-weight: 700; color: var(--chocolate);
  text-decoration: none; letter-spacing: -0.01em;
}
.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a {
  text-decoration: none; color: var(--chocolate); font-weight: 500;
  font-size: 0.95rem; transition: color 0.2s;
}
.nav-links a:hover { color: var(--caramel); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--chocolate); border-radius: 2px; transition: transform 0.3s;
}

/* ===== Hero (photo bg) ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  text-align: center;
  padding: 112px 0 80px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,26,14,0.55) 0%, rgba(43,26,14,0.4) 40%, rgba(43,26,14,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; color: #fff; }
.hero-tag {
  display: inline-block; background: rgba(255,255,255,0.15);
  color: #fff; padding: 8px 24px; border-radius: 50px;
  font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px; backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700; color: #fff;
  line-height: 1.12; margin-bottom: 24px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 1.2rem; color: rgba(255,255,255,0.92);
  margin: 0 auto 40px; max-width: 520px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 16px 36px; border-radius: 60px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: all 0.3s; cursor: pointer; border: none; font-family: inherit;
}
.btn-primary {
  background: var(--golden); color: var(--dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.btn-primary:hover { background: #e8b865; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.btn-outline {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 2px solid rgba(255,255,255,0.7); backdrop-filter: blur(4px);
}
.btn-outline:hover { background: #fff; color: var(--chocolate); border-color: #fff; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px; z-index: 2;
}
.hero-scroll span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 4px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0% { opacity:0; top:8px; } 40% { opacity:1; } 80% { opacity:0; top:22px; } 100% { opacity:0; } }

/* ===== Cards ===== */
.featured { padding: 100px 0; }
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.card {
  background: #fff; padding: 44px 30px; border-radius: 18px;
  text-align: center; box-shadow: 0 2px 20px rgba(139,105,20,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(200,139,58,0.1);
  position: relative;
}
.card::before {
  content: ''; display: block; width: 44px; height: 3px;
  background: var(--golden); border-radius: 3px; margin: 0 auto 22px;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(139,105,20,0.14); }
.card h3 { font-size: 1.35rem; color: var(--chocolate); margin-bottom: 12px; }
.card p { color: #6b5b4f; font-size: 0.95rem; }

/* ===== Showcase band (photo bg) ===== */
.showcase {
  position: relative; padding: 130px 0; text-align: center;
  background: url('images/pastries-bg.jpg') center/cover fixed no-repeat;
}
.showcase-overlay { position: absolute; inset: 0; background: rgba(43,26,14,0.62); }
.showcase-content { position: relative; z-index: 2; color: #fff; max-width: 700px; }
.showcase-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.showcase-content p { font-size: 1.2rem; color: rgba(255,255,255,0.9); }

/* ===== About ===== */
.about { padding: 100px 0; background: linear-gradient(180deg, #fefaf5, #f5e6d3); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text .section-title { text-align: left; }
.about-text p { color: #5c4433; margin-bottom: 16px; font-size: 1.05rem; }
.about-sig { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: var(--caramel); margin-top: 24px; }
.about-image {
  min-height: 440px; border-radius: 20px;
  background: url('images/about-bg.jpg') center/cover no-repeat;
  box-shadow: 0 20px 50px rgba(92,61,46,0.22);
}

/* ===== Stats ===== */
.stats { padding: 80px 0; background: var(--chocolate); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--golden);
}
.stat-label { color: rgba(254,250,245,0.75); font-size: 0.95rem; margin-top: 6px; letter-spacing: 0.03em; }

/* ===== Location ===== */
.location { padding: 100px 0; }
.location-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.location-card {
  background: #fff; padding: 40px 30px; border-radius: 18px;
  text-align: center; box-shadow: 0 2px 20px rgba(139,105,20,0.07);
  border: 1px solid rgba(200,139,58,0.1);
}
.location-card h3 { font-size: 1.3rem; color: var(--chocolate); margin-bottom: 14px; position: relative; padding-bottom: 14px; }
.location-card h3::after { content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:36px; height:2px; background: var(--golden); }
.location-card p { color: #6b5b4f; font-size: 0.95rem; line-height: 1.9; }

/* ===== Newsletter (photo bg) ===== */
.newsletter {
  position: relative; padding: 120px 0; text-align: center;
  background: url('images/cta-bg.jpg') center/cover fixed no-repeat;
}
.newsletter-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(92,61,46,0.88), rgba(43,26,14,0.85)); }
.newsletter-content { position: relative; z-index: 2; }
.newsletter .section-title { color: #fff; }
.newsletter .section-sub { color: rgba(255,255,255,0.85); }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 16px; }
.newsletter-form input {
  flex: 1; padding: 16px 24px; border-radius: 60px; border: none;
  font-size: 1rem; font-family: inherit; outline: none;
}
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(212,164,85,0.6); }
.newsletter-form .btn-primary { background: var(--golden); color: var(--dark); }
.newsletter-form .btn-primary:hover { background: #e8b865; }
.newsletter-note { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ===== Footer ===== */
.footer { padding: 64px 0 32px; background: var(--dark); color: rgba(254,250,245,0.7); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo { color: var(--wheat); font-size: 1.5rem; }
.footer-brand p { margin-top: 12px; }
.footer-links h4 { color: var(--golden); margin-bottom: 16px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links a { display: block; color: rgba(254,250,245,0.6); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-links a:hover { color: var(--wheat); }
.footer-bottom { border-top: 1px solid rgba(254,250,245,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: rgba(254,250,245,0.98);
    backdrop-filter: blur(12px); padding: 24px; gap: 20px;
    border-bottom: 1px solid rgba(200,139,58,0.15);
  }
  .mobile-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 300px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .hero { min-height: 92vh; background-attachment: scroll; padding: 128px 0 72px; }
  .showcase, .newsletter { background-attachment: scroll; }
  .section-title { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .cards { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}
