/* Fodrászat Pro — shared stylesheet */

:root {
  --bg: #F7F4EF;
  --ink: #1C1917;
  --dark: #241E1A;
  --dark-border: #3B332C;
  --dark-border-2: #5A4F45;
  --accent: #B08247;
  --accent-2: #D2A96C;
  --accent-hover: #8C6534;
  --cream: #F3EDE4;
  --cream-2: #CFC4B6;
  --cream-3: #C6BBAC;
  --cream-4: #E4D9C8;
  --muted: #6B6259;
  --muted-2: #8B8177;
  --muted-3: #5A524A;
  --muted-4: #9A9086;
  --muted-5: #9C9186;
  --muted-6: #8E8377;
  --muted-7: #A2988C;
  --line: #E5DED3;
  --line-2: #DDD4C7;
  --line-3: #E9E2D8;
  --line-4: #E4DCD1;
  --panel: #EFE9E0;
  --input-bg: #FCFAF7;
  --success: #5A7A52;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
input, select, textarea, button { font-family: var(--font-sans); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; margin: 0; }
p { text-wrap: pretty; }
button { cursor: pointer; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 960px; margin: 0 auto; padding: 0 28px; }
.wrap-legal { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.wrap-article { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--dark);
  color: var(--cream-2);
  font-size: 12.5px;
  letter-spacing: .06em;
  padding: 9px 0;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: var(--cream-4); }
.topbar-links { display: flex; gap: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247,244,239,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
  text-decoration: none;
  color: var(--ink);
}
.brand-name { font-family: var(--font-serif); font-size: 27px; letter-spacing: .02em; }
.brand-name em { color: var(--accent); font-style: italic; }
.brand-sub {
  font-size: 9.5px; letter-spacing: .34em; color: var(--muted-2);
  margin-top: 5px; text-transform: uppercase;
}
.main-nav { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.main-nav a {
  cursor: pointer; font-size: 13.5px; letter-spacing: .09em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 1px solid transparent; color: #3A342E;
}
.main-nav a:hover { color: var(--accent); }
.main-nav a.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-2); border-radius: 8px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle .bar { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle .bar::before, .nav-toggle .bar::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.nav-toggle .bar::before { top: -6px; }
.nav-toggle .bar::after { top: 6px; }

.header-actions { display: flex; gap: 10px; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 999px; padding: 15px 30px; font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer; text-decoration: none;
}
.btn-sm { padding: 10px 20px; font-size: 13px; letter-spacing: .06em; border-radius: 999px; }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--accent-2); color: var(--ink); }
.btn-dark { background: var(--dark); color: var(--bg); }
.btn-dark:hover { background: var(--accent); color: var(--ink); }
.btn-ghost-dark { background: transparent; color: var(--cream); border: 1px solid var(--dark-border-2); }
.btn-ghost-dark:hover { border-color: var(--accent); color: var(--cream); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--dark); color: var(--bg); }
.btn-white {
  position: relative; background: #fff; border: 1px solid var(--line-2); border-radius: 999px;
  padding: 9px 18px; font-size: 13px; letter-spacing: .06em; color: var(--ink);
}
.btn-white:hover { border-color: var(--accent); color: var(--ink); }
.btn-block { width: 100%; }
.btn-square {
  background: #241E1A; color: var(--bg); border: none; padding: 11px; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 0; width: 100%;
}
.btn-square:hover { background: var(--accent); color: var(--ink); }

/* ---------- Kicker / section headings ---------- */
.kicker {
  font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--accent);
}
.section-title { font-size: 42px; margin: 0; }
.page-title { font-size: 54px; margin: 16px 0 0; }
.lede { max-width: 640px; margin: 18px 0 0; font-size: 16px; line-height: 1.8; color: var(--muted-3); }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px; gap: 20px; flex-wrap: wrap;
}
.link-more { cursor: pointer; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }

section.section { padding: 76px 0; }
.section-tight { padding: 76px 28px 0; }

/* ---------- Hero ---------- */
.hero {
  background: var(--dark); color: var(--cream);
}
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; min-height: 560px;
}
.hero-copy { padding: 80px 0; }
.hero h1 { font-size: 66px; line-height: 1.04; margin: 22px 0 0; letter-spacing: -.01em; }
.hero h1 em { color: var(--accent-2); font-style: italic; }
.hero-lead { margin: 26px 0 0; max-width: 460px; color: var(--cream-3); font-size: 16.5px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-serif); font-size: 34px; color: var(--accent-2); }
.hero-stat-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-5); }
.hero-media { height: 100%; min-height: 560px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Page header (inner pages) ---------- */
.page-header { padding: 64px 28px 0; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.feature-card { background: #fff; border: 1px solid var(--line-3); padding: 30px 26px; }
.feature-card h3 { font-size: 22px; margin-bottom: 10px; }
.feature-card p { margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--muted); }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { aspect-ratio: 4/3; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: 44px; line-height: 1.15; margin: 18px 0 0; }
.split p { margin: 22px 0 0; font-size: 16px; line-height: 1.8; color: var(--muted-3); }
.split p + p { margin-top: 16px; }

/* ---------- Cards: services / products ---------- */
.panel-section { background: var(--panel); padding: 76px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.service-card { background: #fff; border: 1px solid var(--line-4); }
.service-card .media { aspect-ratio: 3/2; overflow: hidden; }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; }
.service-card .body { padding: 26px; }
.service-card .row { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.service-card .name { font-family: var(--font-serif); font-size: 25px; }
.service-card .price { color: var(--accent); font-size: 15px; white-space: nowrap; }
.service-card p { margin: 12px 0 0; font-size: 14.5px; line-height: 1.7; color: var(--muted); }
.service-card .time { margin-top: 14px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-4); }

.product-card { background: #fff; border: 1px solid var(--line-3); display: flex; flex-direction: column; }
.product-card .media { aspect-ratio: 1; overflow: hidden; }
.product-card .media img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card .brand { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-7); }
.product-card .name { font-family: var(--font-serif); font-size: 21px; line-height: 1.2; }
.product-card .desc { margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--muted); }
.product-card .price { font-size: 16px; color: var(--accent); margin-top: auto; }

/* ---------- Reviews ---------- */
.reviews-section { background: var(--dark); color: var(--cream); padding: 76px 0; }
.reviews-section h2 { color: var(--cream); margin: 0 0 36px; }
.review-card { border: 1px solid var(--dark-border); padding: 30px 26px; }
.review-stars { color: var(--accent-2); letter-spacing: .3em; font-size: 13px; }
.review-text { margin: 16px 0 20px; font-size: 15.5px; line-height: 1.8; color: var(--cream-2); font-style: italic; }
.review-name { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-6); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; gap: 16px; font-size: 16px; }
.faq-q .sign { color: var(--accent); }
.faq-a { margin: 12px 0 0; font-size: 15px; line-height: 1.75; color: var(--muted); display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .sign::before { content: '\2212'; }
.faq-item:not(.open) .sign::before { content: '+'; }

/* ---------- Newsletter panel ---------- */
.newsletter-panel { background: var(--panel); padding: 40px; }
.newsletter-panel h3 { font-size: 30px; margin: 0 0 8px; }
.newsletter-panel p { margin: 0 0 22px; font-size: 15px; line-height: 1.7; color: var(--muted); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 180px; }
.form-msg { margin-top: 12px; font-size: 12.5px; color: var(--muted-2); line-height: 1.6; }
.form-msg.ok { color: var(--success); }
.form-msg.err { color: #A4453B; }
.hours-box { margin-top: 32px; padding-top: 28px; border-top: 1px solid #DFD7CB; }
.hours-box .h { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 12px; }
.hours-box .v { font-size: 15px; line-height: 2; color: #4A443E; }

/* ---------- Forms ---------- */
.field-label {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 8px; display: block;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
select, textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line-2); background: var(--input-bg); font-size: 14px;
  color: var(--ink);
}
textarea { resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; font-size: 13px; color: var(--muted); line-height: 1.6; }
.checkbox-row input { margin-top: 3px; }
.checkbox-row a { cursor: pointer; }

.slot-group { display: flex; flex-wrap: wrap; gap: 10px; }
.slot-pill { position: relative; }
.slot-pill input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.slot-pill label {
  display: inline-block; cursor: pointer; padding: 11px 18px; border: 1px solid var(--line-2);
  font-size: 14px; background: var(--input-bg); color: #3A342E;
}
.slot-pill input:checked + label { background: var(--dark); color: var(--bg); border-color: var(--dark); }
.slot-pill input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; }

.tabs { display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
.tab {
  cursor: pointer; padding: 10px 20px; border-radius: 999px; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; border: 1px solid var(--line-2); background: transparent; color: var(--muted-3);
}
.tab.active { background: var(--dark); color: var(--bg); border-color: var(--dark); }

/* ---------- Booking / contact panels ---------- */
.panel-white { background: #fff; border: 1px solid var(--line); padding: 40px; }
.panel-white-sm { background: #fff; border: 1px solid var(--line); padding: 36px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--dark); color: var(--cream);
  padding: 48px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
}
.cta-banner h3 { font-size: 34px; margin: 0 0 8px; }
.cta-banner p { margin: 0; color: var(--cream-3); font-size: 15.5px; max-width: 560px; line-height: 1.7; }

/* ---------- Team ---------- */
.team-card { background: #fff; border: 1px solid var(--line-3); }
.team-card .media { aspect-ratio: 3/4; overflow: hidden; }
.team-card .media img { width: 100%; height: 100%; object-fit: cover; }
.team-card .body { padding: 24px; }
.team-card .name { font-family: var(--font-serif); font-size: 24px; }
.team-card .role { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-top: 6px; }
.team-card p { margin: 14px 0 0; font-size: 14px; line-height: 1.7; color: var(--muted); }
.team-card .years { margin-top: 14px; font-size: 13px; color: var(--muted-2); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  background: linear-gradient(transparent, rgba(28,25,23,.65));
  color: #F3EDE4; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
}

/* ---------- Blog ---------- */
.blog-card { cursor: pointer; background: #fff; border: 1px solid var(--line-3); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blog-card:hover { border-color: var(--accent); }
.blog-card .media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card .meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.blog-card .title { font-family: var(--font-serif); font-size: 25px; line-height: 1.25; color: var(--ink); }
.blog-card p { margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--muted); }
.blog-card .read { margin-top: auto; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }

.post-back { cursor: pointer; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.post-title { font-size: 46px; line-height: 1.15; margin: 22px 0 0; }
.post-meta { margin: 16px 0 0; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.post-hero { aspect-ratio: 16/9; margin: 32px 0; overflow: hidden; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-body h2 { font-size: 30px; margin: 34px 0 12px; }
.post-body p { margin: 0 0 16px; font-size: 16.5px; line-height: 1.85; color: #4A443E; }
.post-cta { margin-top: 44px; padding: 32px; background: var(--panel); }
.post-cta .h { font-family: var(--font-serif); font-size: 26px; margin-bottom: 10px; }
.post-cta p { margin: 0 0 20px; font-size: 15px; line-height: 1.75; color: var(--muted-3); }

/* ---------- About ---------- */
.principles { display: grid; gap: 14px; }
.principle { display: flex; gap: 14px; }
.principle .num { color: var(--accent); }
.principle span:last-child { font-size: 15.5px; line-height: 1.75; color: #4A443E; }
.milestones { background: var(--dark); color: var(--cream); padding: 32px; }
.milestones .h { font-family: var(--font-serif); font-size: 26px; margin-bottom: 16px; }
.milestones .v { font-size: 14.5px; line-height: 2.1; color: var(--cream-3); }

/* ---------- Contact ---------- */
.contact-list { display: grid; gap: 26px; }
.contact-item .h { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.contact-item .v { font-size: 17px; line-height: 1.6; }
.map-embed { aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Legal pages ---------- */
.legal h1 { font-size: 46px; margin: 0 0 8px; }
.legal .updated { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 32px; }
.legal h2 { font-size: 27px; margin: 30px 0 10px; }
.legal p { margin: 0 0 14px; color: #4A443E; font-size: 15.5px; line-height: 1.8; }
.legal table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); background: #fff; margin: 0 0 20px; }
.legal th, .legal td { text-align: left; padding: 14px 18px; font-size: 14.5px; border-bottom: 1px solid var(--panel); }
.legal thead th { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); border-bottom: 1px solid var(--line); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--cream-3); padding: 64px 0 28px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand { font-family: var(--font-serif); font-size: 27px; color: var(--cream); }
.footer-brand em { color: var(--accent-2); font-style: italic; }
.footer-desc { margin: 16px 0 0; font-size: 14.5px; line-height: 1.8; max-width: 300px; }
.footer-addr { margin-top: 20px; font-size: 14.5px; line-height: 1.9; }
.footer-addr a { color: var(--accent-2); }
.footer-col-title { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-6); margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; font-size: 14.5px; }
.footer-links a { color: var(--cream-3); cursor: pointer; }
.footer-links a:hover { color: var(--accent-2); }
.footer-bottom {
  max-width: var(--wrap); margin: 36px auto 0; padding: 22px 28px 0; border-top: 1px solid var(--dark-border);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--muted-6);
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end;
}
.cart-overlay.open { display: flex; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(28,25,23,.5); border: none; padding: 0; }
.cart-drawer {
  position: relative; width: 440px; max-width: 100%; background: var(--bg); height: 100%;
  display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(0,0,0,.25);
}
.cart-head { padding: 24px 28px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.cart-head .title { font-family: var(--font-serif); font-size: 27px; }
.cart-close { cursor: pointer; font-size: 22px; color: var(--muted-2); background: none; border: none; line-height: 1; }
.cart-body { flex: 1; overflow: auto; padding: 20px 28px; }
.cart-empty { font-size: 15px; color: var(--muted); line-height: 1.7; }
.cart-line { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { width: 70px; height: 70px; flex: none; overflow: hidden; background: var(--line-3); }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .info { flex: 1; }
.cart-line .name { font-family: var(--font-serif); font-size: 19px; }
.cart-line .price { font-size: 13px; color: var(--muted-2); margin-top: 2px; }
.qty-row { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.qty-btn {
  cursor: pointer; width: 26px; height: 26px; border: 1px solid var(--line-2); background: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.remove-link { cursor: pointer; margin-left: auto; font-size: 12.5px; color: var(--muted-7); text-decoration: underline; background: none; border: none; }
.cart-line .line-total { font-size: 15px; color: var(--accent); white-space: nowrap; }
.cart-foot { padding: 22px 28px; border-top: 1px solid var(--line); background: var(--panel); }
.cart-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--muted); }
.cart-row + .cart-row { margin-top: 8px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 19px; margin-top: 14px; padding-top: 14px; border-top: 1px solid #DFD7CB; }
.cart-total-row span:last-child { color: var(--accent); }
.cart-note { margin-top: 10px; font-size: 12px; color: var(--muted-2); line-height: 1.6; }
.cart-badge { font-variant-numeric: tabular-nums; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: var(--dark); color: var(--cream-4);
  padding: 22px 28px; box-shadow: 0 -12px 40px rgba(0,0,0,.25);
}
.cookie-banner .wrap { max-width: var(--wrap); margin: 0 auto; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; padding: 0; }
.cookie-banner p { margin: 0; flex: 1; min-width: 280px; font-size: 14px; line-height: 1.7; color: var(--cream-3); }
.cookie-banner a { color: var(--accent-2); text-decoration: underline; cursor: pointer; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cookie-reject { background: transparent; color: var(--cream-4); border: 1px solid var(--dark-border-2); border-radius: 999px; padding: 12px 22px; font-size: 12.5px; letter-spacing: .08em; }
.btn-cookie-accept { background: var(--accent); color: var(--ink); border: none; border-radius: 999px; padding: 12px 26px; font-size: 12.5px; letter-spacing: .08em; }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; margin-top: 40px; align-items: start; }
.order-summary-line { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px dotted var(--line-2); font-size: 14.5px; }
.order-summary-line .n { color: var(--muted-3); }
.order-summary-line .p { color: var(--accent); }

.price-line { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px dotted var(--line-2); }
.price-line .item-name { font-size: 16px; }
.price-line .item-time { font-size: 13px; color: var(--muted-2); margin-top: 4px; }
.price-line .item-price { color: var(--accent); font-size: 15.5px; white-space: nowrap; }
.service-group-title { font-family: var(--font-serif); font-size: 30px; margin: 0 0 6px; color: var(--dark); }
.divider { height: 1px; background: var(--line-2); margin-bottom: 18px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--dark); color: var(--bg);
  padding: 12px 18px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { min-height: 340px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-media { order: -1; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 78px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column;
    align-items: flex-start; padding: 24px 28px; gap: 4px; overflow: auto; transform: translateX(100%);
    transition: transform .25s ease; z-index: 39; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 44px; }
  .page-title { font-size: 38px; }
  .section-title { font-size: 32px; }
  .feature-grid, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .cart-drawer { width: 100%; }
  .header-actions .btn-white span.label { display: none; }
}
