:root {
  --navy: #071f38;
  --navy-2: #0d2f50;
  --brown: #96572f;
  --brown-dark: #6f3d22;
  --caramel: #c8894b;
  --cream: #f7efe5;
  --warm-white: #fffaf5;
  --ink: #161616;
  --muted: #6f6a65;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  overflow-x: hidden;
}

img { max-width: 100%; }

.navbar {
  padding: 1rem 0;
  transition: .3s ease;
  background: rgba(4, 16, 28, .28);
  backdrop-filter: blur(8px);
}
.navbar.scrolled {
  padding: .65rem 0;
  background: rgba(4, 16, 28, .96);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.navbar-brand img {
  width: 190px;
  max-height: 62px;
  object-fit: contain;
}
.navbar .nav-link {
  color: rgba(255,255,255,.84);
  font-size: .95rem;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--caramel);
  transition: .25s ease;
  transform: translateX(-50%);
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: #fff; }
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: 50%; }

.btn-brand {
  background: linear-gradient(135deg, var(--caramel), var(--brown));
  border: none;
  color: #fff;
  box-shadow: 0 12px 24px rgba(150,87,47,.24);
}
.btn-brand:hover {
  color: #fff;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #d79858, var(--brown-dark));
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(2,11,19,.96) 0%, rgba(2,11,19,.83) 42%, rgba(2,11,19,.40) 72%, rgba(2,11,19,.18) 100%),
    url("https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=2000&q=85") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 45%, rgba(200,137,75,.16), transparent 35%);
}
.hero-section h1 {
  font-family: "Playfair Display", serif;
  line-height: .98;
  color: #fff;
}
.hero-section h1 span { color: var(--caramel); }
.eyebrow, .section-kicker {
  letter-spacing: .15em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--caramel);
}
.hero-points .hero-point {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  color: rgba(255,255,255,.74);
  font-size: .85rem;
}
.hero-point i { font-size: 1.45rem; color: var(--caramel); }
.scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 3;
}

.section-padding { padding: 100px 0; }
.bg-cream { background: var(--cream); }
.section-heading { max-width: 720px; }
.section-title {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin-top: .55rem;
  margin-bottom: 1rem;
}
.section-text {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.8;
}
.link-brand {
  color: var(--brown);
  font-weight: 700;
  text-decoration: none;
}
.link-brand:hover { color: var(--brown-dark); }

.product-card {
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 38px rgba(19,34,52,.08);
  transition: .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(19,34,52,.13);
}
.product-image {
  position: relative;
  height: 230px;
  background-size: cover;
  background-position: center;
}
.product-bread {
  background-image: url("https://images.unsplash.com/photo-1549931319-a545dcf3bc73?auto=format&fit=crop&w=900&q=85");
}
.product-croissant {
  background-image: url("https://images.unsplash.com/photo-1555507036-ab1f4038808a?auto=format&fit=crop&w=900&q=85");
}
.product-cake {
  background-image: url("https://images.unsplash.com/photo-1578985545062-69928b1d9587?auto=format&fit=crop&w=900&q=85");
}
.product-snack {
  background-image: url("https://images.unsplash.com/photo-1553909489-cd47e0907980?auto=format&fit=crop&w=900&q=85");
}
.product-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  background: rgba(7,31,56,.90);
  color: white;
  padding: .45rem .8rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
}
.product-card h3 {
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}
.product-card p { color: var(--muted); min-height: 72px; }
.product-card a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: none;
}

.about-section {
  background: linear-gradient(135deg, #06192b, #0b2b49);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -120px;
  border-radius: 50%;
  background: rgba(200,137,75,.08);
}
.about-visual {
  position: relative;
  min-height: 520px;
}
.about-photo {
  min-height: 520px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.30)),
    url("https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=1200&q=85") center/cover no-repeat;
  box-shadow: 0 25px 55px rgba(0,0,0,.25);
}
.about-quote {
  position: absolute;
  right: -28px;
  bottom: 32px;
  width: 260px;
  background: var(--brown);
  color: #fff;
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
}
.about-quote i { font-size: 1.7rem; opacity: .6; }
.about-quote p { margin: 0; font-family: "Playfair Display", serif; font-size: 1.25rem; }
.stat-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
}
.stat-card i { color: var(--caramel); font-size: 1.6rem; }
.stat-card strong, .stat-card span { display: block; }
.stat-card strong { color: #fff; }
.stat-card span { color: rgba(255,255,255,.52); font-size: .82rem; margin-top: .2rem; }

.commitment-card {
  height: 100%;
  padding: 2rem;
  border: 1px solid #eee5db;
  border-radius: 20px;
  background: #fff;
  transition: .3s ease;
}
.commitment-card:hover { border-color: #dcc0a3; transform: translateY(-4px); }
.commitment-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--cream);
  color: var(--brown);
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}
.commitment-card h3 { color: var(--navy); font-size: 1.2rem; }
.commitment-card p { color: var(--muted); margin: 0; line-height: 1.7; }

.testimonial-section {
  background: #071827;
}
.review-card {
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.review-avatar {
  flex: 0 0 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brown), var(--caramel));
  color: #fff;
}
.review-card p { color: rgba(255,255,255,.72); font-style: italic; }
.review-card strong { color: #fff; }
.stars { color: #f1af54; letter-spacing: .14rem; margin-bottom: .55rem; }
.carousel-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  opacity: 1;
  margin-right: .5rem;
}

.contact-section {
  background: var(--cream);
}
.contact-panel {
  background: #fff;
  border-radius: 28px;
  padding: clamp(1.5rem, 5vw, 4rem);
  box-shadow: 0 22px 60px rgba(21,33,44,.08);
}
.contact-list {
  display: grid;
  gap: 1rem;
}
.contact-list a, .contact-list > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  text-decoration: none;
}
.contact-list i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--cream);
  color: var(--brown);
  font-size: 1.15rem;
}
.contact-list small {
  display: block;
  color: var(--muted);
  margin-bottom: .15rem;
}
.contact-form .form-control, .contact-form .form-select {
  min-height: 52px;
  border-radius: 12px;
  border-color: #e7ded5;
  background: #fffdfb;
}
.contact-form textarea.form-control { min-height: 130px; }

.site-footer {
  padding: 70px 0 28px;
  background: #04111e;
  color: rgba(255,255,255,.62);
}
.footer-logo { width: 190px; }
.site-footer h5 { color: #fff; margin-bottom: 1.1rem; }
.site-footer a {
  display: block;
  color: rgba(255,255,255,.60);
  text-decoration: none;
  margin-bottom: .55rem;
}
.site-footer a:hover { color: var(--caramel); }
.site-footer hr { border-color: rgba(255,255,255,.10); margin: 2.5rem 0 1.3rem; }
.social-links { display: flex; gap: .7rem; }
.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
}
.powered-by {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.powered-by img {
  width: 100px;
  max-height: 38px;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .navbar {
    background: rgba(4, 16, 28, .95);
  }
  .navbar-collapse {
    padding: 1rem 0 .5rem;
  }
  .hero-section {
    background-position: 62% center;
  }
  .hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2,11,19,.24);
  }
  .about-quote {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 72px 0; }
  .navbar-brand img { width: 150px; }
  .hero-section h1 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .hero-points .hero-point { font-size: .72rem; }
  .product-image { height: 210px; }
  .about-visual, .about-photo { min-height: 420px; }
  .contact-panel { border-radius: 20px; }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: 760px;
    background-position: 68% center;
  }
  .hero-section h1 { font-size: 3.2rem; }
  .hero-section .lead { font-size: 1rem; }
  .hero-points { margin-top: 1rem; }
  .hero-point i { font-size: 1.25rem; }
  .about-quote {
    width: calc(100% - 36px);
    left: 18px;
    right: 18px;
  }
}
