:root {
  --color-bg: oklch(96% 0.02 75);
  --color-text: oklch(27% 0.035 40);
  --color-muted: oklch(45% 0.03 45);
  --color-muted-2: oklch(42% 0.03 45);
  --color-primary: oklch(38% 0.08 42);
  --color-primary-hover: oklch(30% 0.08 42);
  --color-primary-dark: oklch(30% 0.05 42);
  --color-surface: oklch(99% 0.008 75);
  --color-border: oklch(88% 0.02 60);
  --color-header-bg: oklch(99% 0.008 75);
  --color-chip-bg: oklch(94% 0.02 65);
  --color-chip-border: oklch(85% 0.03 55);
  --color-icon-bg: oklch(90% 0.04 55);
  --color-season-bg: oklch(92% 0.03 55);
  --color-success-bg: oklch(93% 0.05 140);
  --color-success-border: oklch(80% 0.05 140);
  --color-success-text: oklch(30% 0.05 140);
  --color-star: oklch(60% 0.1 55);
  --color-accent: oklch(55% 0.13 30);
  --color-cookie-bg: oklch(22% 0.03 42);
  --color-cookie-btn: oklch(60% 0.1 55);
  --color-cookie-btn-text: oklch(15% 0.02 42);
  --color-input-border: oklch(85% 0.02 60);
  --font-heading: Georgia, 'Times New Roman', 'Liberation Serif', serif;
  --font-body: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-hover); text-decoration: underline; }

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

input, textarea, button { font-family: var(--font-body); }
::placeholder { color: oklch(60% 0.02 60); }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: oklch(38% 0.08 42);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14.5px;
  font-weight: 600;
}

.main-nav a { color: var(--color-text); }
.main-nav a.active { color: var(--color-primary); }

.cart-link {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-chip-bg);
  padding: 9px 16px;
  border-radius: 24px;
  border: 1px solid var(--color-chip-border);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
}
.cart-link:hover { text-decoration: none; }

.cart-icon {
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-primary);
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-badge.visible { display: flex; }

main { flex: 1; width: 100%; }

/* Buttons */
.btn {
  border: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: var(--font-body);
  display: inline-block;
}
.btn-primary { background: var(--color-primary); color: white; }
.btn-primary:hover { background: var(--color-primary-hover); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 11px 24px;
}
.btn-outline:hover { text-decoration: none; background: oklch(93% 0.02 60); }
.btn-small { padding: 8px 14px; font-size: 13px; border-radius: 7px; }

/* Hero */
.hero {
  padding: 56px 24px 24px;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .hero { grid-template-columns: 1fr; } }

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  color: oklch(30% 0.05 42);
  margin: 0;
}
.hero p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-muted-2);
  max-width: 480px;
  margin-top: 18px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hero-img, .photo-block {
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: 20px;
  overflow: hidden;
}
.photo-block img { width: 100%; height: 100%; object-fit: cover; }

/* Sections */
section.page-section { padding: 48px 24px; }
.page-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 10px;
}
.page-lead {
  font-size: 15.5px;
  color: var(--color-muted);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
}
.subsection-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  margin: 44px 0 18px;
}

/* USP grid */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 40px 24px;
}
.usp-card, .value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 22px;
}
.usp-letter {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-icon-bg);
  color: oklch(35% 0.07 42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 12px;
}
.usp-card-title, .value-card-title { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.value-card-title { color: var(--color-primary); }
.usp-card-desc, .value-card-desc { font-size: 14px; color: var(--color-muted); line-height: 1.5; }

/* Section headers with link */
.section-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.section-header-row a { font-weight: 600; font-size: 14px; }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.product-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
}
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-name { font-weight: 700; font-size: 16px; }
.product-desc { font-size: 13.5px; color: var(--color-muted); line-height: 1.4; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price { font-weight: 700; color: var(--color-primary); }
.badge-limited {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.03em;
  z-index: 1;
}

/* Seasonal banner */
.season-banner {
  background: var(--color-season-bg);
  padding: 44px 24px;
}
.season-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.1fr);
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) { .season-banner-inner { grid-template-columns: 1fr; } }
.season-banner .photo-block { aspect-ratio: 5/3; }
.season-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(45% 0.09 45);
}
.season-banner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  margin: 8px 0 12px;
}
.season-banner p { font-size: 15px; line-height: 1.6; color: oklch(38% 0.04 42); max-width: 460px; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 22px;
}
.stars { color: var(--color-star); font-size: 15px; margin-bottom: 10px; }
.testimonial-text { font-size: 14.5px; line-height: 1.6; color: oklch(35% 0.03 42); font-style: italic; margin: 0; }
.testimonial-name { font-weight: 700; font-size: 14px; margin-top: 12px; }

/* Visit CTA */
.visit-cta {
  background: var(--color-primary);
  color: oklch(97% 0.01 75);
  padding: 40px 24px;
  text-align: center;
}
.visit-cta h2 { font-family: var(--font-heading); font-weight: 700; font-size: 24px; margin-bottom: 10px; }
.visit-cta p { font-size: 15px; opacity: 0.9; margin: 0 0 6px; }

/* Tips */
.tip-list { display: flex; flex-direction: column; gap: 18px; }
.tip-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 22px 24px;
}
.tip-title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.tip-text { font-size: 14.5px; line-height: 1.65; color: oklch(38% 0.03 42); margin: 0; }

/* About */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .about-intro { grid-template-columns: 1fr; } }
.about-intro .photo-block { aspect-ratio: 4/3; }
.about-intro p { font-size: 15.5px; line-height: 1.7; color: oklch(35% 0.03 42); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 44px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.team-member { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; font-size: 15px; }
.team-role { font-size: 13px; color: var(--color-muted); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.1fr);
  gap: 40px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}
.info-card-title { font-weight: 700; font-size: 17px; margin-bottom: 14px; }
.info-lines { font-size: 14.5px; line-height: 1.9; color: oklch(38% 0.03 42); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  font-size: 14.5px;
  color: oklch(38% 0.03 42);
}
.map-photo { aspect-ratio: 4/3; border-radius: 14px; margin-bottom: 20px; position: relative; }
.map-photo .map-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
}

/* Forms */
.form-stack { display: flex; flex-direction: column; gap: 12px; max-width: 480px; }
.form-stack input, .form-stack textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--color-input-border);
  font-size: 14px;
  width: 100%;
}
.form-stack textarea { resize: vertical; }
.form-note { font-size: 13px; color: var(--color-muted); line-height: 1.5; }
.form-error {
  background: oklch(93% 0.06 30);
  border: 1px solid oklch(80% 0.08 30);
  color: oklch(32% 0.1 30);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}
.form-error.visible { display: block; }

.success-box {
  background: var(--color-success-bg);
  border: 1px solid var(--color-success-border);
  border-radius: 12px;
  padding: 20px;
  font-size: 14.5px;
  color: var(--color-success-text);
}
.success-box-center { text-align: center; padding: 40px 24px; }

/* Cart */
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px 18px;
  flex-wrap: wrap;
}
.cart-item-info { flex: 1; min-width: 140px; }
.cart-item-name { font-weight: 700; font-size: 15px; }
.cart-item-price { font-size: 13px; color: var(--color-muted); }
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid oklch(80% 0.02 60);
  background: white;
  cursor: pointer;
  font-weight: 700;
}
.cart-item-total { font-weight: 700; min-width: 70px; text-align: right; }
.cart-remove { background: transparent; border: none; color: oklch(55% 0.1 30); cursor: pointer; font-size: 13px; font-weight: 600; }
.cart-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0 30px;
}
.cart-summary-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.cart-summary-note { font-size: 13px; color: var(--color-muted); }
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}
.cart-empty p { font-size: 16px; color: var(--color-muted); margin-bottom: 18px; }

/* Legal pages */
.legal-content { font-size: 14.5px; line-height: 1.75; color: oklch(35% 0.03 42); display: flex; flex-direction: column; gap: 16px; }
.legal-title { font-family: var(--font-heading); font-weight: 700; font-size: 30px; margin-bottom: 20px; }

/* Footer */
.site-footer { background: var(--color-primary-dark); color: oklch(92% 0.01 75); padding: 48px 24px 24px; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.footer-brand { font-family: var(--font-heading); font-weight: 700; font-size: 20px; margin-bottom: 12px; color: white; }
.footer-desc { font-size: 13.5px; line-height: 1.6; opacity: 0.85; margin: 0; }
.footer-col-title { font-weight: 700; font-size: 14px; margin-bottom: 12px; color: white; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
.footer-links a { opacity: 0.85; color: oklch(92% 0.01 75); }
.footer-contact { font-size: 13.5px; line-height: 1.8; opacity: 0.85; }
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid oklch(40% 0.04 42);
  font-size: 12.5px;
  opacity: 0.7;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-cookie-bg);
  color: oklch(95% 0.01 75);
  padding: 16px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { font-size: 13.5px; max-width: 640px; line-height: 1.5; margin: 0; }
.cookie-banner a { color: oklch(85% 0.05 65); text-decoration: underline; }
.btn-cookie {
  background: var(--color-cookie-btn);
  color: var(--color-cookie-btn-text);
  border: none;
  padding: 10px 20px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
