:root {
  --bg: oklch(98% 0.008 70);
  --text: oklch(22% 0.01 60);
  --muted: oklch(45% 0.01 60);
  --accent: oklch(52% 0.14 40);
  --accent-hover: oklch(42% 0.13 40);
  --accent-soft: oklch(42% 0.13 40);
  --border: oklch(88% 0.01 70);
  --border-soft: oklch(92% 0.008 70);
  --card-bg: oklch(99% 0.004 70);
  --section-bg: oklch(95% 0.012 70);
  --footer-bg: oklch(20% 0.012 60);
  --footer-text: oklch(85% 0.01 70);
  --footer-border: oklch(32% 0.012 60);
  --footer-muted: oklch(60% 0.01 70);
  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

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

main { flex: 1; }

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

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

input, textarea, select, button { font-family: var(--font-sans); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; margin: 0; }

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

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.brand { display: block; }
.brand-name { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--text); }
.brand-name span { color: var(--accent); }
.brand-sub { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; flex: 1; }
.navlink {
  background: none; border: none; cursor: pointer; font-family: var(--font-sans);
  font-size: 14px; padding: 10px 12px; color: oklch(30% 0.01 60); font-weight: 500;
  border-bottom: 2px solid transparent; text-decoration: none;
}
.navlink:hover { text-decoration: none; color: var(--accent); }
.navlink.active { color: var(--accent); font-weight: 600; border-bottom-color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 12px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 2px; padding: 10px 18px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: var(--font-sans); border: none; text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-outline:hover { background: var(--text); color: var(--bg); }
.btn-outline-inverse { background: transparent; color: #fff; border: 1px solid oklch(60% 0.01 70); }
.btn-white { background: #fff; color: var(--accent); font-weight: 700; padding: 15px 30px; font-size: 16px; }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; padding: 15px; font-size: 15px; }
.btn-cart {
  position: relative; background: none; border: 1px solid var(--border);
  padding: 10px 14px; color: var(--text);
}
.cart-badge {
  position: absolute; top: -8px; right: -8px; background: var(--accent); color: #fff;
  border-radius: 50%; width: 20px; height: 20px; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.center-btn { text-align: center; }

/* ===== HERO ===== */
.hero {
  padding: clamp(48px, 8vw, 96px) 24px 64px;
  display: grid; grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 48px; align-items: center;
}
.eyebrow {
  display: inline-block; background: var(--section-bg); border: 1px solid var(--border);
  border-radius: 2px; padding: 6px 14px; font-size: 12px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--accent-soft); margin-bottom: 20px;
}
.hero-text h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1.15; margin: 0 0 20px; }
.lead { font-size: 17px; color: var(--muted); max-width: 520px; margin: 0 0 28px; }
.stat-row { display: flex; gap: 32px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: var(--accent); }
.stat-label { font-size: 13px; color: var(--muted); }
.hero-media img, .about-media img, .contact-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--border);
}

/* ===== SECTIONS ===== */
.section-alt { background: var(--section-bg); padding: 64px 24px; }
.section-pad { padding: 64px 24px; }
.section-head { padding: 56px 24px 24px; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.1rem); text-align: center; margin: 0 0 8px; }
.section-sub { text-align: center; color: var(--muted); margin: 0 0 40px; }
h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0 0 12px; }

.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 12px; }

/* ===== GRID ===== */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ===== CARDS ===== */
.card {
  background: var(--card-bg); border: 1px solid var(--border); padding: 28px;
}
.card-link { cursor: pointer; color: inherit; display: block; transition: border-color .2s; }
.card-link:hover { text-decoration: none; border-color: var(--accent); }
.badge-letter {
  width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif);
  font-weight: 600; margin-bottom: 16px;
}
.card h3 { font-size: 18px; margin: 0 0 8px; }
.card p { font-size: 14px; color: var(--muted); margin: 0; }

/* ===== PROCESS STEPS ===== */
.step { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif);
  font-size: 20px; font-weight: 600; margin: 0 auto 16px;
}
.step h3 { font-size: 16px; margin: 0 0 6px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; }

/* ===== GALLERY ===== */
.gallery-preview .gallery-item, .gallery-full-item {
  aspect-ratio: 1; overflow: hidden; border: 1px solid var(--border-soft);
}
.gallery-item img, .gallery-full-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-full-item { aspect-ratio: auto; }
.gallery-full-item figcaption { font-size: 13px; color: var(--muted); padding: 8px 2px; }

/* ===== TESTIMONIALS ===== */
.quote { font-size: 15px; font-style: italic; color: oklch(30% 0.01 60); margin: 0 0 16px; }
.quote-name { font-size: 14px; font-weight: 600; }
.quote-role { font-size: 12px; color: var(--muted); }

/* ===== CTA BAND ===== */
.cta-band { background: var(--accent); padding: 56px 24px; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; color: #fff; }
.cta-inner h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 8px; }
.cta-inner p { margin: 0; opacity: 0.9; }

/* ===== SERVICES PAGE ===== */
.service-list { display: flex; flex-direction: column; gap: 20px; }
.service-row {
  display: grid; grid-template-columns: minmax(0, 220px) minmax(0, 1fr); gap: 24px;
  border: 1px solid var(--border); padding: 28px; background: var(--card-bg);
}
.service-row h3 { font-size: 19px; }
.service-row p { margin: 0 0 10px; color: oklch(30% 0.01 60); }
.price-from { font-size: 14px; color: var(--accent-soft); font-weight: 600; }

/* ===== PRICING ===== */
.price-groups {
  padding: 0 24px 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.price-group { border: 1px solid var(--border); background: var(--card-bg); }
.price-group-title {
  background: var(--section-bg); padding: 16px 20px; font-family: var(--font-serif);
  font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--border);
}
.price-group-body { padding: 8px 20px; }
.price-item {
  display: flex; justify-content: space-between; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border-soft); font-size: 14px;
}
.price-val { font-weight: 600; color: var(--accent-soft); white-space: nowrap; }
.notice { background: var(--section-bg); border: 1px solid var(--border); padding: 20px 24px; font-size: 14px; color: var(--muted); }

/* ===== ABOUT ===== */
.about-grid {
  padding: 0 24px 56px; display: grid; grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 40px; align-items: start;
}
.about-grid p { margin: 0 0 16px; }
.team-member { text-align: center; }
.team-photo {
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px;
  background: var(--section-bg);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 600; font-family: var(--font-serif); }
.team-role { font-size: 13px; color: var(--muted); }

/* ===== SHOP ===== */
.product-card { border: 1px solid var(--border); background: var(--card-bg); display: flex; flex-direction: column; }
.product-media { aspect-ratio: 4/3; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent-soft); }
.product-body h3 { font-size: 16px; margin: 0; }
.product-body p { font-size: 13px; color: var(--muted); margin: 0; flex: 1; }
.product-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.product-price { font-family: var(--font-serif); font-weight: 600; font-size: 17px; }

/* ===== CART ===== */
.cart-page { max-width: 900px; padding: 56px 24px 80px; margin: 0 auto; }
.cart-page h1 { margin: 0 0 32px; }
.empty-cart { text-align: center; padding: 48px 0; color: var(--muted); }
.empty-cart p { margin: 0 0 20px; }
.cart-lines { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.cart-line {
  display: grid; grid-template-columns: minmax(0, 1fr) auto auto auto; gap: 16px; align-items: center;
  border: 1px solid var(--border); background: var(--card-bg); padding: 16px 20px;
}
.cart-line-name { font-weight: 600; }
.cart-line-price { font-size: 13px; color: var(--muted); }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--border); background: #fff; cursor: pointer; }
.qty-val { min-width: 20px; text-align: center; }
.line-total { font-weight: 600; white-space: nowrap; }
.remove-btn { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 13px; text-decoration: underline; }
.cart-total { display: flex; justify-content: flex-end; font-family: var(--font-serif); font-size: 20px; font-weight: 600; margin-bottom: 40px; }
.checkout-box { border: 1px solid var(--border); background: var(--section-bg); padding: 28px; }
.checkout-box h2 { font-size: 18px; margin: 0 0 16px; }

/* ===== FORMS ===== */
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.form-field {
  padding: 12px 14px; border: 1px solid oklch(85% 0.01 70); font-size: 14px; width: 100%;
  background: #fff; color: var(--text);
}
.form-field-wide { grid-column: 1 / -1; }
.form-field-tall { min-height: 110px; }
textarea.form-field { min-height: 70px; }
.form-note { font-size: 12px; color: var(--muted); }
.contact-form { border: 1px solid var(--border); background: var(--card-bg); padding: 28px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ===== CONTACT ===== */
.contact-grid {
  padding: 0 24px 64px; display: grid; grid-template-columns: minmax(280px, 1fr) minmax(280px, 1.3fr); gap: 40px;
}
.contact-media img { margin-bottom: 24px; }
.contact-details { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.hours-title { margin-top: 10px; }
.hours-row { display: flex; justify-content: space-between; max-width: 260px; }

/* ===== LEGAL ===== */
.legal-page { max-width: 820px; padding: 56px 24px 80px; margin: 0 auto; }
.legal-page h1 { font-size: 2rem; margin: 0 0 24px; }
.legal-page h2 { font-size: 1.2rem; margin: 24px 0 8px; }
.legal-date { color: var(--muted); font-size: 13px; margin: 0 0 24px; }

/* ===== THANK YOU ===== */
.thankyou-page { max-width: 640px; padding: 80px 24px; margin: 0 auto; text-align: center; }
.thankyou-box {
  border: 1px solid var(--border); background: var(--section-bg); padding: 48px 32px;
}
.thankyou-box h1 { margin: 0 0 12px; }
.thankyou-box p { color: var(--muted); margin: 0 0 28px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 56px 24px 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--footer-border); }
.footer-brand { font-family: var(--font-serif); font-size: 19px; color: #fff; margin-bottom: 12px; }
.footer-text { font-size: 13px; line-height: 1.7; }
.footer-heading { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.footer-links a { color: var(--footer-text); }
.footer-contact { font-size: 13px; margin-top: 16px; }
.footer-contact a { color: var(--footer-text); }
.footer-bottom { padding-top: 20px; font-size: 12px; color: var(--footer-muted); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; background: var(--footer-bg); color: #fff;
  padding: 18px 24px; display: flex; gap: 20px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.cookie-text { font-size: 13px; max-width: 640px; }
.cookie-text a { color: oklch(75% 0.06 40); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  .hero, .about-grid, .contact-grid, .service-row { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 1fr; text-align: left; }
}
