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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 4px 20px rgba(15,23,42,.08), 0 2px 8px rgba(15,23,42,.04);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.12), 0 4px 16px rgba(15,23,42,.06);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--slate-700);
  background: var(--slate-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--teal-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-700); }

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

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--teal-600); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius);
  z-index: 200; font-size: .875rem;
}
.skip-link:focus { top: 16px; }

/* ─── Typography ─── */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 24px;
}

.section-title--center { text-align: center; }

.section-sub {
  font-size: 1.0625rem;
  color: var(--slate-500);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--slate-600);
  margin-bottom: 20px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .9375rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--teal-600);
  color: var(--white);
  border-color: var(--teal-600);
}
.btn--primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13,148,136,.25);
}

.btn--outline {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}
.btn--outline:hover {
  border-color: var(--teal-600);
  color: var(--teal-600);
  transform: translateY(-1px);
}

.btn--sm { padding: 10px 24px; font-size: .875rem; }
.btn--full { width: 100%; }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248,250,252,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--slate-900);
}
.logo:hover { color: var(--slate-900); }

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: -.01em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.main-nav a {
  font-size: .875rem;
  font-weight: 400;
  color: var(--slate-600);
  letter-spacing: .01em;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-600);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--teal-600); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--slate-700);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ─── */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  background: var(--slate-50);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 24px;
  padding: 6px 14px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--slate-900);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--teal-700);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-card--main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateY(-4px); }

/* Floating stat cards */
.stat-card {
  position: absolute;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.stat-card--1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}
.stat-card--2 {
  bottom: 60px;
  left: -30px;
  animation-delay: 2s;
}
.stat-card--3 {
  bottom: -20px;
  right: 40px;
  animation-delay: 4s;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--teal-600);
  line-height: 1;
}
.stat-label {
  font-size: .8125rem;
  color: var(--slate-500);
  line-height: 1.5;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── Divider ─── */
.divider {
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 560px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--slate-200);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 400;
  color: var(--slate-700);
}
.feature-item svg { flex-shrink: 0; }

/* ─── Products ─── */
.products {
  padding: 100px 0;
  background: var(--slate-50);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--slate-100);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

.product-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-body {
  padding: 28px;
}
.product-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.product-card-body p {
  font-size: .9375rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ─── Bakery ─── */
.bakery {
  padding: 100px 0;
  background: var(--white);
}

.bakery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bakery-visual { position: relative; }

.bakery-img-stack {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.bakery-img-stack img { width: 100%; height: 100%; object-fit: cover; }

.bakery-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-800);
}

.bakery-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bakery-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .9375rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.bakery-list-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--teal-600);
}

/* ─── Visit ─── */
.visit {
  padding: 100px 0;
  background: var(--slate-50);
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.visit-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-info-item { display: flex; flex-direction: column; gap: 6px; }

.visit-info-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.visit-info-value {
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.7;
}

.visit-info-link {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--teal-600);
}
.visit-info-link:hover { color: var(--teal-700); }

.visit-map {
  min-height: 420px;
  background: var(--slate-200);
}
.visit-map iframe { width: 100%; height: 100%; }

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--slate-200);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9375rem;
  color: var(--slate-600);
}
.contact-detail a { color: var(--slate-600); }
.contact-detail a:hover { color: var(--teal-600); }
.contact-detail svg { flex-shrink: 0; }

/* Form */
.contact-form-wrap {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--slate-100);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--slate-700);
  letter-spacing: .02em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 300;
  color: var(--slate-800);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius);
  font-size: .9375rem;
  color: var(--teal-700);
}

/* ─── Footer ─── */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer .logo-text { color: var(--white); }
.footer .logo-icon circle { fill: var(--teal-500); }

.footer-tagline {
  font-size: .9375rem;
  color: var(--slate-500);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: .9375rem;
  color: var(--slate-400);
}
.footer-links a:hover { color: var(--teal-400); }

.footer-contact p {
  font-size: .875rem;
  line-height: 1.8;
  margin-bottom: 4px;
}
.footer-contact a { color: var(--slate-400); }
.footer-contact a:hover { color: var(--teal-400); }

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .8125rem;
  color: var(--slate-600);
}

/* ─── 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) {
  .hero-grid,
  .about-grid,
  .bakery-grid,
  .contact-grid { gap: 48px; }

  .hero-visual { min-height: 420px; }
  .stat-card--1 { right: -10px; }
  .stat-card--2 { left: -10px; }
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .about-images { min-height: 400px; }
  .about-img-float { right: -20px; bottom: -20px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(248,250,252,.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  .main-nav a { font-size: 1rem; }

  .hero { padding-top: 100px; padding-bottom: 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 360px; order: -1; }
  .stat-card { padding: 14px 18px; }
  .stat-number { font-size: 1.375rem; }
  .stat-card--1 { top: -10px; right: 10px; }
  .stat-card--2 { bottom: 40px; left: -10px; }
  .stat-card--3 { bottom: -10px; right: 20px; }

  .about-grid,
  .bakery-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-images { min-height: 360px; }
  .about-img-float { right: -10px; bottom: -16px; }

  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .visit-card { grid-template-columns: 1fr; }
  .visit-content { padding: 40px; }
  .visit-map { min-height: 280px; }

  .contact-form-wrap { padding: 32px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
  .visit-content { padding: 28px; }
}
