/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0e0e10;
  color: #f0ece4;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Tokens ───────────────────────────────────────── */
:root {
  --bg:        #0e0e10;
  --bg-elev:   #16161a;
  --bg-card:   #1a1a1f;
  --coral:     #E86A5B;
  --coral-dk:  #c95446;
  --gold:      #C9A96E;
  --gold-lt:   #e0c992;
  --cream:     #f0ece4;
  --muted:     #8a8690;
  --border:    rgba(201,169,110,.15);
  --radius:    12px;
  --radius-sm: 8px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Typography ───────────────────────────────────── */
h1,h2,h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; color: var(--cream); }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.85rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.section-sub { color: var(--muted); max-width: 520px; font-size: 1.05rem; }
.center { text-align: center; }

/* ── Layout ───────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--coral { background: var(--coral); color: #fff; }
.btn--coral:hover { background: var(--coral-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,106,91,.3); }
.btn--gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn--gold:hover { background: var(--gold); color: var(--bg); }
.btn--outline { background: transparent; color: var(--cream); border: 1px solid rgba(240,236,228,.3); }
.btn--outline:hover { border-color: var(--cream); background: rgba(240,236,228,.06); }
.btn--full { width: 100%; }

/* ── Skip Link ────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--coral); color: #fff; padding: .5rem 1rem;
  border-radius: var(--radius-sm); z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(14,14,16,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: .6rem; }
.logo-mark {
  width: 38px; height: 38px;
  background: var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem; color: #fff;
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--cream); }
.logo-text .dot { color: var(--coral); }

.menu ul { display: flex; gap: 2rem; align-items: center; }
.menu a {
  font-size: .9rem; font-weight: 400; color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--coral);
  transition: width var(--transition);
}
.menu a:hover { color: var(--cream); }
.menu a:hover::after { width: 100%; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.bar { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--transition); }
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 6rem 1.5rem 4rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,.6) 0%, rgba(14,14,16,.85) 60%, #0e0e10 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 820px; text-align: center;
}
.hero-eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-lt) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted); max-width: 600px; margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; justify-content: center; gap: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--cream); }
.stat-label { font-size: .8rem; color: var(--muted); letter-spacing: .05em; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── About ────────────────────────────────────────── */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-images { position: relative; }
.img-card { border-radius: var(--radius); overflow: hidden; }
.img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-card--large { margin-bottom: 1.5rem; }
.img-card--small { position: absolute; bottom: -2rem; right: -1rem; width: 55%; border: 4px solid var(--bg); border-radius: var(--radius); }
.accent-box {
  margin-top: 2rem; padding: 1.5rem 2rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; gap: 1.25rem;
}
.accent-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--coral); line-height: 1; }
.accent-label { font-size: .9rem; color: var(--muted); line-height: 1.5; }
.about-text p { color: var(--muted); margin-bottom: 1.25rem; font-size: 1.02rem; }
.about-features { margin-top: 2rem; display: grid; gap: .75rem; }
.about-features li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; color: var(--cream);
}
.about-features svg { color: var(--gold); flex-shrink: 0; }

/* ── Products ─────────────────────────────────────── */
.products { background: var(--bg-elev); }
.section-header { margin-bottom: 3.5rem; }
.section-header.center .section-sub { margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(201,169,110,.3); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.product-img { position: relative; overflow: hidden; aspect-ratio: 5/4; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(14,14,16,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  padding: .6rem 1.5rem; border: 1px solid var(--cream);
  border-radius: 50px; font-size: .85rem; color: var(--cream);
}
.product-info { padding: 1.5rem; }
.product-info h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.product-info p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ── Bakery ───────────────────────────────────────── */
.bakery { background: var(--bg); }
.bakery-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.bakery-images { position: relative; }
.bakery-img-main { border-radius: var(--radius); overflow: hidden; }
.bakery-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bakery-img-stack {
  position: absolute; bottom: -2rem; right: -1rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.bakery-img-stack img {
  width: 100%; aspect-ratio: 5/4; object-fit: cover;
  border-radius: var(--radius-sm); border: 3px solid var(--bg);
}
.bakery-text p { color: var(--muted); margin-bottom: 1.25rem; font-size: 1.02rem; }
.bakery-highlights { margin: 2.5rem 0; display: grid; gap: 1.25rem; }
.highlight { display: flex; align-items: center; gap: 1rem; }
.highlight svg { color: var(--gold); flex-shrink: 0; }
.highlight strong { display: block; font-size: 1rem; color: var(--cream); }
.highlight span { font-size: .85rem; color: var(--muted); }

/* ── Visit ────────────────────────────────────────── */
.visit { background: var(--bg-elev); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
.visit-info { padding: 2rem 0; }
.visit-address {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: 1.05rem; color: var(--cream); margin-bottom: 2rem;
}
.visit-address svg { color: var(--coral); flex-shrink: 0; margin-top: 4px; }
.visit-details { display: grid; gap: 1.5rem; }
.detail { display: flex; align-items: flex-start; gap: 1rem; }
.detail svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.detail strong { display: block; font-size: .95rem; color: var(--cream); margin-bottom: .25rem; }
.detail p, .detail a { font-size: .9rem; color: var(--muted); }
.detail a:hover { color: var(--coral); }
.visit-map { border-radius: var(--radius); overflow: hidden; min-height: 400px; border: 1px solid var(--border); }

/* ── Contact ──────────────────────────────────────── */
.contact { background: var(--bg); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-text p { color: var(--muted); font-size: 1.05rem; margin-top: 1rem; }
.contact-form { display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: grid; gap: .5rem; }
.form-group label { font-size: .85rem; font-weight: 500; color: var(--cream); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .875rem 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--cream);
  font-family: 'Inter', sans-serif; font-size: .95rem;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--coral);
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8690' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group select option { background: var(--bg-card); }
.form-note { font-size: .85rem; color: var(--muted); text-align: center; }
.form-note a { color: var(--coral); }
.form-success {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  background: rgba(232,106,91,.12); border: 1px solid rgba(232,106,91,.3);
  color: var(--coral); font-size: .95rem; margin-top: .5rem;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────── */
.footer { background: var(--bg-elev); border-top: 1px solid var(--border); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-brand p { color: var(--muted); font-size: .9rem; margin-top: 1rem; max-width: 260px; }
.footer-links strong, .footer-hours strong, .footer-contact strong {
  display: block; font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links ul, .footer-hours ul, .footer-contact ul { display: grid; gap: .6rem; }
.footer-links a, .footer-hours a, .footer-contact a { font-size: .9rem; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover, .footer-hours a:hover, .footer-contact a:hover { color: var(--coral); }
.footer-hours li { display: flex; justify-content: space-between; font-size: .9rem; color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); }

/* ── Scroll Animations ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .bakery-layout, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images { order: -1; max-width: 560px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .hamburger { display: flex; z-index: 110; }
  .menu {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(14,14,16,.97);
    backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity var(--transition);
  }
  .menu.open { opacity: 1; pointer-events: all; }
  .menu ul { flex-direction: column; gap: 2rem; text-align: center; }
  .menu a { font-size: 1.25rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .product-grid { grid-template-columns: 1fr; }
  .img-card--small { position: relative; width: 100%; bottom: 0; right: 0; margin-top: 1rem; }
  .bakery-img-stack { position: relative; bottom: 0; right: 0; margin-top: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .accent-box { flex-direction: column; text-align: center; }
}
