:root{
  --bg: oklch(0.98 0.006 60);
  --text: oklch(0.22 0.015 40);
  --text-muted-1: oklch(0.40 0.02 40);
  --text-muted-2: oklch(0.45 0.02 40);
  --text-muted-3: oklch(0.50 0.02 40);
  --text-muted-4: oklch(0.55 0.02 40);
  --surface: oklch(0.955 0.01 50);
  --border: oklch(0.90 0.01 50);
  --border-2: oklch(0.93 0.01 50);
  --dark: oklch(0.22 0.015 40);
  --dark-text: oklch(0.95 0.01 50);
  --accent: #c17a63;
  --accent-text: #ffffff;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Segoe UI', Inter, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
h1,h2,h3{font-family:Georgia,'Playfair Display',serif;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
input,textarea,select{font-family:inherit;}
img{max-width:100%;display:block;}
.wrap{max-width:1160px;margin:0 auto;padding-left:40px;padding-right:40px;}
.wrap-narrow{max-width:1000px;margin:0 auto;padding-left:40px;padding-right:40px;}
.wrap-article{max-width:820px;margin:0 auto;padding-left:40px;padding-right:40px;}
.wrap-legal{max-width:760px;margin:0 auto;padding-left:40px;padding-right:40px;}
.wrap-contact{max-width:1100px;margin:0 auto;padding-left:40px;padding-right:40px;}

/* topbar */
.topbar{
  background:var(--dark);
  color:var(--dark-text);
  font-size:13px;
  padding:6px 24px;
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}
.topbar a{color:inherit;}

/* header */
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 40px;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  background:var(--bg);
  z-index:20;
  flex-wrap:wrap;
  gap:12px;
}
.logo{
  font-family:Georgia,'Playfair Display',serif;
  font-size:26px;
  font-weight:700;
  letter-spacing:1px;
}
.main-nav{display:flex;gap:22px;flex-wrap:wrap;font-size:15px;font-weight:500;}
.main-nav a.active{border-bottom:2px solid var(--accent);padding-bottom:2px;}
.header-actions{display:flex;align-items:center;gap:14px;}
.cart-btn{position:relative;font-size:22px;}
.cart-badge{
  position:absolute;top:-6px;right:-10px;background:var(--accent);color:#fff;
  font-size:11px;font-weight:700;border-radius:50%;width:18px;height:18px;
  display:flex;align-items:center;justify-content:center;
}
.nav-toggle{display:none;font-size:24px;}

/* buttons */
.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:2px;
  background:var(--accent);
  color:var(--accent-text);
  font-weight:600;
  font-size:15px;
}
.btn-outline{
  padding:14px 28px;
  border-radius:2px;
  border:1px solid var(--text);
  font-weight:600;
  font-size:15px;
}
.btn-sm{
  display:inline-block;
  padding:10px 20px;
  border-radius:2px;
  background:var(--accent);
  color:var(--accent-text);
  font-weight:600;
  font-size:13px;
}
.btn-sm.full{width:100%;text-align:center;}
.btn.full{width:100%;text-align:center;}

/* hero */
.hero{
  padding:70px 40px 60px;
  max-width:1160px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:50px;
  align-items:center;
}
.hero h1{font-size:48px;line-height:1.15;margin:0 0 18px;}
.hero p{font-size:17px;line-height:1.7;color:var(--text-muted-1);max-width:520px;margin:0 0 28px;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;}
.photo{border-radius:4px;overflow:hidden;background:var(--surface);}
.photo img{width:100%;height:100%;object-fit:cover;display:block;}
.photo-tall{aspect-ratio:4/5;}
.photo-square{aspect-ratio:4/3;}
.photo-wide{aspect-ratio:16/10;}
.photo-thumb{width:56px;height:56px;flex-shrink:0;border-radius:4px;overflow:hidden;}

/* features bar */
.features-bar{
  background:var(--surface);
  padding:32px 40px;
  display:flex;
  justify-content:center;
  gap:48px;
  flex-wrap:wrap;
  font-size:14px;
  font-weight:600;
  text-align:center;
}

/* section */
.section{padding:70px 40px;max-width:1160px;margin:0 auto;}
.section-alt{background:var(--surface);}
.section-title{font-size:32px;text-align:center;margin:0 0 8px;}
.section-sub{text-align:center;color:var(--text-muted-2);margin:0 0 40px;}

/* service cards */
.svc-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;}
.svc-card{
  text-align:left;background:#fff;border:1px solid var(--border);
  border-radius:4px;overflow:hidden;display:block;width:100%;
}
.svc-card .body{padding:16px;}
.svc-card h3{font-size:16px;margin:0 0 6px;font-family:inherit;}
.svc-card p{font-size:13px;color:var(--text-muted-2);margin:0;}

/* about teaser */
.about-teaser{background:var(--surface);padding:70px 40px;}
.about-teaser-inner{
  max-width:1160px;margin:0 auto;display:grid;
  grid-template-columns:1fr 1.1fr;gap:50px;align-items:center;
}
.about-teaser h2{font-size:30px;margin:0 0 16px;}
.about-teaser p{font-size:16px;line-height:1.7;color:var(--text-muted-1);margin:0 0 20px;}
.link-more{font-weight:600;border-bottom:2px solid var(--accent);padding-bottom:2px;}

/* testimonials */
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.testi-card{background:#fff;border:1px solid var(--border);border-radius:4px;padding:24px;}
.testi-card p.text{font-size:15px;line-height:1.6;color:oklch(0.35 0.02 40);margin:0 0 14px;font-style:italic;}
.testi-card p.name{font-size:14px;font-weight:600;margin:0;}

/* cta band */
.cta-band{padding:60px 40px;text-align:center;background:var(--dark);color:#fff;}
.cta-band h2{font-size:28px;margin:0 0 16px;}
.cta-band p{margin:0 0 24px;color:oklch(0.85 0.01 50);}

/* about page */
.about-hero{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;margin-bottom:50px;}
.about-hero p{font-size:16px;line-height:1.8;color:var(--text-muted-1);margin:0;}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:50px;}
.team-card h3{font-size:17px;margin:14px 0 4px;}
.team-card .role{font-size:13px;font-weight:600;color:var(--accent);margin:0 0 8px;}
.team-card .bio{font-size:14px;line-height:1.6;color:var(--text-muted-2);margin:0;}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.value-card{background:var(--surface);padding:20px;border-radius:4px;}
.value-card h3{font-size:15px;margin:0 0 6px;font-family:inherit;}
.value-card p{font-size:13px;color:var(--text-muted-2);margin:0;line-height:1.5;}

/* services page */
.svc-row{
  display:grid;grid-template-columns:1fr 1.4fr;gap:36px;align-items:start;
  margin-bottom:56px;padding-bottom:40px;border-bottom:1px solid var(--border);
}
.svc-row h2{font-size:24px;margin:16px 0 8px;}
.svc-row .intro{font-size:14px;line-height:1.6;color:var(--text-muted-2);margin:0;}
.svc-item{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid var(--border-2);}
.svc-item .name{font-size:15px;font-weight:600;margin:0;}
.svc-item .duration{font-size:12px;color:var(--text-muted-3);margin:2px 0 0;}
.svc-item .price{font-size:15px;font-weight:700;color:var(--accent);margin:0;}

/* pricing */
.price-cat h2{font-size:20px;background:var(--surface);padding:10px 16px;border-radius:4px;margin:0 0 4px;}
.price-row{display:flex;justify-content:space-between;padding:12px 16px;border-bottom:1px solid var(--border-2);}
.price-row .n{font-size:15px;}
.price-row .n .dur{color:var(--text-muted-4);font-size:13px;}
.price-row .p{font-size:15px;font-weight:700;}

/* shop */
.shop-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.product-card{background:#fff;border:1px solid var(--border);border-radius:4px;overflow:hidden;display:flex;flex-direction:column;}
.product-card .body{padding:14px;display:flex;flex-direction:column;flex:1;}
.product-card .cat{font-size:11px;text-transform:uppercase;letter-spacing:0.5px;color:var(--text-muted-4);margin:0 0 4px;}
.product-card .name{font-size:15px;font-weight:600;margin:0 0 8px;flex:1;}
.product-card .price{font-size:16px;font-weight:700;color:var(--accent);margin:0 0 10px;}

/* blog */
.article{margin-bottom:48px;padding-bottom:40px;border-bottom:1px solid var(--border);}
.article .date{font-size:12px;color:var(--text-muted-4);margin:16px 0 6px;}
.article h2{font-size:24px;margin:0 0 14px;}
.article p.body-p{font-size:15px;line-height:1.7;color:oklch(0.35 0.02 40);margin:0 0 12px;}

/* contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;margin-bottom:56px;}
.contact-info h2{font-size:18px;margin:0 0 16px;font-family:inherit;}
.contact-info p{font-size:15px;line-height:1.8;color:var(--text-muted-1);margin:0 0 6px;}
.hours h3{font-size:15px;margin:0 0 10px;font-family:inherit;}
.hours-row{display:flex;justify-content:space-between;max-width:260px;font-size:14px;color:var(--text-muted-1);line-height:1.9;}
.map-embed{border-radius:4px;overflow:hidden;border:0;width:100%;aspect-ratio:4/5;}
.notice-box{background:var(--surface);border-radius:4px;padding:28px;max-width:520px;margin-bottom:56px;}
.form{max-width:520px;margin-bottom:56px;display:flex;flex-direction:column;gap:14px;}
.form h2{font-size:18px;margin:0 0 6px;font-family:inherit;}
.form input,.form textarea{
  padding:12px 14px;border:1px solid oklch(0.85 0.01 50);border-radius:2px;font-size:14px;
}
.form textarea{resize:vertical;}
.faq-list{display:flex;flex-direction:column;gap:16px;max-width:720px;}
.faq-item{border-bottom:1px solid var(--border);padding-bottom:14px;}
.faq-item .q{font-size:15px;font-weight:600;margin:0 0 6px;}
.faq-item .a{font-size:14px;color:var(--text-muted-2);margin:0;line-height:1.6;}

/* legal pages */
.legal-body{font-size:15px;line-height:1.8;color:oklch(0.35 0.02 40);display:flex;flex-direction:column;gap:18px;}
.legal-body strong{display:block;margin-bottom:2px;}

/* footer */
.site-footer{background:var(--surface);border-top:1px solid var(--border);padding:50px 40px 24px;margin-top:auto;}
.footer-grid{max-width:1160px;margin:0 auto;display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:36px;}
.footer-brand p.name{font-family:Georgia,'Playfair Display',serif;font-size:22px;font-weight:700;margin:0 0 10px;}
.footer-brand p{font-size:13px;line-height:1.7;color:var(--text-muted-2);margin:0 0 12px;}
.footer-social{display:flex;gap:10px;margin-top:14px;}
.footer-social span{font-size:12px;font-weight:600;border:1px solid oklch(0.8 0.01 50);padding:6px 12px;border-radius:2px;}
.footer-col p.title{font-size:13px;font-weight:700;margin:0 0 12px;}
.footer-col{display:flex;flex-direction:column;gap:8px;font-size:13px;color:var(--text-muted-1);}
.footer-col a{display:block;}
.footer-bottom{text-align:center;font-size:12px;color:var(--text-muted-4);margin:36px 0 0;}

/* cart drawer */
.cart-overlay{position:fixed;inset:0;background:oklch(0.2 0 0 / 0.4);z-index:30;display:none;}
.cart-overlay.open{display:block;}
.cart-panel{
  position:absolute;right:0;top:0;bottom:0;width:380px;max-width:90vw;
  background:#fff;padding:28px;overflow-y:auto;display:flex;flex-direction:column;
}
.cart-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;}
.cart-header h2{font-size:22px;margin:0;}
.cart-close{font-size:22px;}
.cart-empty-msg{font-size:14px;color:var(--text-muted-3);}
.cart-empty-msg a{color:var(--accent);font-weight:600;text-decoration:underline;}
.cart-items{display:flex;flex-direction:column;gap:16px;flex:1;}
.cart-item{display:flex;gap:12px;border-bottom:1px solid var(--border-2);padding-bottom:14px;}
.cart-item .name{font-size:14px;font-weight:600;margin:0 0 4px;}
.cart-item .price{font-size:13px;color:var(--text-muted-3);margin:0 0 8px;}
.cart-item .qty-row{display:flex;align-items:center;gap:10px;}
.qty-btn{width:24px;height:24px;border:1px solid oklch(0.8 0.01 50);border-radius:2px;}
.qty-val{font-size:13px;}
.remove-btn{margin-left:auto;font-size:12px;color:var(--text-muted-3);text-decoration:underline;}
.cart-footer{border-top:1px solid var(--border);padding-top:16px;margin-top:16px;}
.cart-total{display:flex;justify-content:space-between;font-size:16px;font-weight:700;margin-bottom:16px;}
.cart-note{font-size:12px;color:var(--text-muted-3);margin:10px 0 0;}
.cart-thanks p{font-size:15px;line-height:1.6;}

/* cookie banner */
.cookie-banner{
  position:fixed;bottom:0;left:0;right:0;background:var(--dark);color:#fff;
  padding:18px 40px;display:flex;justify-content:space-between;align-items:center;
  gap:20px;flex-wrap:wrap;z-index:40;
}
.cookie-banner p{font-size:13px;margin:0;max-width:640px;line-height:1.5;}
.cookie-banner a{text-decoration:underline;}
.cookie-actions{display:flex;gap:10px;}
.cookie-btn-reject{padding:10px 18px;border:1px solid #fff;border-radius:2px;font-size:13px;color:#fff;}
.cookie-btn-accept{padding:10px 18px;background:#fff;color:var(--dark);border-radius:2px;font-size:13px;font-weight:600;}

.form-msg{font-size:14px;padding:12px 14px;border-radius:2px;margin:0 0 6px;}
.form-msg.error{background:oklch(0.95 0.05 30);color:oklch(0.4 0.15 30);}

@media (max-width: 980px){
  .hero{grid-template-columns:1fr;padding:40px 24px;}
  .svc-grid{grid-template-columns:repeat(2,1fr);}
  .about-teaser-inner{grid-template-columns:1fr;}
  .testi-grid{grid-template-columns:1fr;}
  .about-hero{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .values-grid{grid-template-columns:repeat(2,1fr);}
  .svc-row{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .shop-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .section,.wrap,.wrap-contact{padding-left:24px;padding-right:24px;}
}
@media (max-width: 640px){
  .site-header{padding:14px 20px;}
  .main-nav{display:none;width:100%;order:3;flex-direction:column;gap:4px;}
  .main-nav.open{display:flex;}
  .nav-toggle{display:block;}
  .svc-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr;}
  .values-grid{grid-template-columns:1fr;}
  .shop-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .cart-panel{width:100%;max-width:100%;}
}
