/* Ritmoria Tánciskola — fő stíluslap */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-036F, U+1E00-1EFF, U+2000-206F, U+20AC;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('fonts/playfair-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-036F, U+1E00-1EFF, U+2000-206F, U+20AC;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('fonts/playfair-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/playfair-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-036F, U+1E00-1EFF, U+2000-206F, U+20AC;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/playfair-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122;
}

:root{
  --bg:#16110F;
  --bg-alt:#1B1512;
  --bg-card:#1F1815;
  --bg-footer:#120E0C;
  --border:#2E241E;
  --border-card:#32271F;
  --border-strong:#3A2E27;
  --border-hover:#4A3A31;
  --text:#F5EFE7;
  --muted-1:#C9BAAE;
  --muted-2:#B5A79C;
  --muted-3:#9C8B7E;
  --muted-4:#8A7A6E;
  --muted-5:#7A6B60;
  --accent:#F1AF64;
  --accent-35:rgba(241,175,100,.35);
  --serif:'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
@supports (color: oklch(0.8 0.12 68)) {
  :root{
    --accent: oklch(0.80 0.12 68);
    --accent-35: oklch(0.80 0.12 68 / .35);
  }
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:var(--accent); text-decoration:none; }
a:hover{ color:var(--text); }
::selection{ background:var(--accent); color:var(--bg); }
button{ font-family:inherit; }

.wrap{ max-width:1240px; margin:0 auto; padding:0 28px; }
.wrap-narrow{ max-width:900px; }
.wrap-legal{ max-width:860px; }
.wrap-article{ max-width:1240px; }

/* ---------- Promo bar ---------- */
.promo-bar{
  background:var(--accent); color:var(--bg);
  font-size:13px; font-weight:600; letter-spacing:.04em;
  text-align:center; padding:10px 20px; position:relative;
}
.promo-bar .close{
  position:absolute; right:14px; top:50%; transform:translateY(-50%);
  cursor:pointer; background:none; border:none; color:var(--bg);
  font-size:16px; line-height:1; padding:4px; opacity:.7;
}
.promo-bar .close:hover{ opacity:1; }

/* ---------- Header ---------- */
header.site{
  position:sticky; top:0; z-index:40;
  background:rgba(22,17,15,.92); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
header.site .inner{
  display:flex; align-items:center; gap:32px; padding:18px 28px;
  max-width:1240px; margin:0 auto;
}
.brand{ cursor:pointer; display:flex; flex-direction:column; line-height:1; }
.brand .name{ font-family:var(--serif); font-size:26px; letter-spacing:.02em; color:var(--text); }
.brand .sub{ font-size:9px; letter-spacing:.42em; color:var(--accent); text-transform:uppercase; margin-top:5px; }

nav.main{ display:flex; flex-wrap:wrap; gap:22px; margin-left:auto; align-items:center; }
nav.main a.nav-link{
  cursor:pointer; font-size:13.5px; font-weight:500; letter-spacing:.02em;
  padding-bottom:3px; border-bottom:1px solid transparent; color:var(--text);
  white-space:nowrap;
}
nav.main a.nav-link:hover, nav.main a.nav-link.active{ color:var(--accent); }

.cart-btn{
  cursor:pointer; display:flex; align-items:center; gap:8px;
  border:1px solid var(--border-strong); border-radius:999px; padding:8px 16px;
  font-size:13px; font-weight:600; background:none; color:var(--text);
}
.cart-btn:hover{ border-color:var(--accent); }
.cart-btn .count{
  background:var(--accent); color:var(--bg); border-radius:999px;
  min-width:20px; text-align:center; padding:1px 6px; font-size:11px;
}

.nav-toggle{
  display:none; margin-left:auto; background:none; border:1px solid var(--border-strong);
  border-radius:8px; width:40px; height:40px; color:var(--text); cursor:pointer;
  align-items:center; justify-content:center; font-size:20px;
}

/* ---------- Buttons ---------- */
.btn{
  cursor:pointer; display:inline-block; font-weight:700; font-size:14.5px;
  padding:16px 30px; border-radius:999px; border:none; text-align:center;
  background:var(--accent); color:var(--bg);
}
.btn:hover{ color:var(--bg); filter:brightness(1.08); }
.btn-outline{
  cursor:pointer; display:inline-block; border:1px solid var(--border-hover);
  color:var(--text); font-weight:600; font-size:14.5px; padding:16px 30px;
  border-radius:999px; background:none; text-align:center;
}
.btn-outline:hover{ border-color:var(--accent); color:var(--text); }
.btn-sm{
  cursor:pointer; text-align:center; border:1px solid var(--border-hover);
  border-radius:999px; padding:10px; font-size:13px; font-weight:600;
  background:none; color:var(--text); display:block; width:100%;
}
.btn-sm:hover{ background:var(--accent); color:var(--bg); border-color:var(--accent); }
.btn-solid-sm{
  cursor:pointer; text-align:center; background:var(--accent); color:var(--bg);
  border:none; border-radius:999px; padding:12px; font-size:13.5px; font-weight:700; display:block; width:100%;
}
.btn-solid-sm:hover{ filter:brightness(1.08); }

/* ---------- Kicker / headings ---------- */
.kicker{ font-size:11px; letter-spacing:.34em; text-transform:uppercase; color:var(--accent); margin-bottom:16px; }
h1, h2, h3{ font-family:var(--serif); font-weight:500; margin:0; color:var(--text); }
.lead{ font-size:17px; line-height:1.7; color:var(--muted-1); }

/* ---------- Photo placeholder / images ---------- */
.ph{
  background:repeating-linear-gradient(135deg,#241C18 0 10px,#2C221D 10px 20px);
  display:flex; align-items:center; justify-content:center; color:var(--muted-4);
  font:11px/1.4 ui-monospace,Menlo,monospace; letter-spacing:.12em; text-transform:uppercase;
  border:1px solid var(--border-strong); border-radius:4px; text-align:center; padding:12px;
}
.photo{
  border:1px solid var(--border-strong); border-radius:4px; overflow:hidden; position:relative;
}
.photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.photo .cap{
  position:absolute; left:0; right:0; bottom:0; padding:8px 12px;
  background:linear-gradient(to top, rgba(10,7,6,.85), transparent);
  font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:#EADFCF;
}

/* ---------- Sections ---------- */
section.section{ padding-top:88px; padding-bottom:88px; }
section.section.tight{ padding-top:70px; padding-bottom:90px; }
.section-border{ border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.bg-alt{ background:var(--bg-alt); }

.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:30px;
  margin-bottom:44px; flex-wrap:wrap;
}
.section-head h2{ font-size:44px; line-height:1.1; }
.link-more{
  cursor:pointer; font-size:13.5px; font-weight:600; color:var(--accent);
  border-bottom:1px solid var(--accent); padding-bottom:3px; white-space:nowrap;
}

/* ---------- Grids ---------- */
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }

/* ---------- Hero ---------- */
.hero{
  padding-top:80px; padding-bottom:70px; display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center;
}
.hero h1{ font-size:68px; line-height:1.02; margin:0 0 26px; letter-spacing:-.01em; }
.hero h1 em{ font-style:italic; color:var(--accent); }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:36px; margin-top:46px; flex-wrap:wrap; }
.hero-stats .num{ font-family:var(--serif); font-size:32px; }
.hero-stats .lbl{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted-3); margin-top:6px; }
.hero-media{ display:grid; grid-template-columns:1fr 1fr; grid-template-rows:180px 180px 120px; gap:14px; }
.hero-media .wide{ grid-column:1 / -1; }
.hero-media .next{
  grid-column:1 / -1; background:var(--bg-card); border:1px solid var(--border-strong);
  border-radius:4px; padding:20px 24px; display:flex; flex-direction:column; justify-content:center;
}
.hero-media .next .tag{ font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:var(--accent); }
.hero-media .next .txt{ font-family:var(--serif); font-size:22px; margin-top:8px; }

.strip{ border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--bg-alt); }
.strip .inner{
  padding:26px 28px; display:flex; gap:44px; flex-wrap:wrap; justify-content:space-between;
  font-size:13px; color:var(--muted-2); letter-spacing:.06em;
  max-width:1240px; margin:0 auto;
}

/* ---------- Cards ---------- */
.card{
  background:var(--bg-card); border:1px solid var(--border-card); border-radius:5px;
  padding:24px; display:flex; flex-direction:column; gap:12px; min-height:210px;
}
.card:hover{ border-color:var(--accent); }
.card .lvl{ font-size:10.5px; letter-spacing:.2em; text-transform:uppercase; color:var(--accent); }
.card .ttl{ font-family:var(--serif); font-size:23px; line-height:1.15; }
.card .txt{ font-size:13.5px; line-height:1.6; color:var(--muted-2); }
.card .meta{ margin-top:auto; font-size:12px; color:var(--muted-4); letter-spacing:.06em; }

.benefit .num{ font-family:var(--serif); font-size:38px; color:var(--accent); line-height:1; }
.benefit .ttl{ font-size:19px; font-weight:600; margin:14px 0 10px; }
.benefit .txt{ font-size:14px; line-height:1.7; color:var(--muted-2); }

.review{ background:var(--bg); border:1px solid var(--border-card); border-radius:5px; padding:28px; }
.review .stars{ color:var(--accent); letter-spacing:.3em; font-size:13px; }
.review p{ font-family:var(--serif); font-style:italic; font-size:19px; line-height:1.55; margin:16px 0 20px; }
.review .name{ font-size:13.5px; font-weight:600; }
.review .role{ font-size:12.5px; color:var(--muted-4); margin-top:4px; }

.product-card{ background:var(--bg-card); border:1px solid var(--border-card); border-radius:5px; overflow:hidden; display:flex; flex-direction:column; }
.product-card .thumb{ height:160px; }
.product-card .body{ padding:18px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-card .name{ font-size:15.5px; font-weight:600; line-height:1.3; }
.product-card .price{ font-size:13px; color:var(--muted-3); }

.blog-card{ cursor:pointer; background:var(--bg); border:1px solid var(--border-card); border-radius:5px; padding:26px; }
a.blog-card{ display:block; color:inherit; text-decoration:none; }
.blog-card:hover{ border-color:var(--accent); }
.blog-card .date, .blog-card .thumb-body .date{ font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted-4); }
.blog-card .ttl, .blog-card .thumb-body .ttl{ font-family:var(--serif); font-size:23px; line-height:1.25; margin:14px 0 12px; }
.blog-card .txt, .blog-card .thumb-body .txt{ font-size:14px; line-height:1.7; color:var(--muted-2); }
.blog-card.with-thumb{ padding:0; overflow:hidden; }
.blog-card.with-thumb .thumb-photo{ height:190px; border:none; border-radius:0; }
.blog-card.with-thumb .thumb-body{ padding:26px; }

.cta-box{
  background:var(--bg-card); border:1px solid var(--accent-35); border-radius:6px; padding:56px;
  display:grid; grid-template-columns:1.1fr .9fr; gap:50px; align-items:center;
}
.cta-box h2{ font-size:40px; margin:0 0 18px; line-height:1.1; }
.cta-box p{ font-size:16px; line-height:1.7; color:var(--muted-1); margin:0; }

/* ---------- Inner page heading ---------- */
.page-head{ padding-top:70px; }
.page-head h1{ font-size:56px; margin:0 0 20px; line-height:1.05; }
.page-head p{ font-size:17px; line-height:1.7; color:var(--muted-1); max-width:720px; margin:0 0 46px; }

/* ---------- Styles list page ---------- */
.style-row{
  display:grid; grid-template-columns:260px 1fr 200px; gap:34px; background:var(--bg-card);
  border:1px solid var(--border-card); border-radius:6px; padding:28px; align-items:start;
}
.style-row .thumb{ height:170px; }
.style-row .detail-col{ border-left:1px solid var(--border-card); padding-left:24px; display:flex; flex-direction:column; gap:14px; }
.style-row .detail-col .lbl{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted-4); }
.style-row .detail-col .val{ font-size:15px; margin-top:5px; }

/* ---------- Schedule ---------- */
.day-block{ margin-bottom:34px; }
.day-head{ display:flex; align-items:center; gap:16px; margin-bottom:16px; }
.day-head .name{ font-family:var(--serif); font-size:26px; }
.day-head .rule{ flex:1; height:1px; background:var(--border-card); }
.class-row{
  display:grid; grid-template-columns:120px 1fr 160px 140px 120px; gap:20px; align-items:center;
  background:var(--bg-card); border:1px solid var(--border-card); border-radius:5px; padding:16px 22px; margin-bottom:8px;
}
.class-row .time{ font-size:15px; font-weight:600; color:var(--accent); }
.class-row .style{ font-size:16px; }
.class-row .lvl, .class-row .teacher{ font-size:13.5px; color:var(--muted-2); }
.class-row .room{ font-size:12.5px; color:var(--muted-4); text-align:right; }
.note-box{ margin-top:44px; background:var(--bg-alt); border:1px solid var(--border-card); border-radius:6px; padding:28px; font-size:14.5px; line-height:1.75; color:var(--muted-2); }

/* ---------- Teachers ---------- */
.teacher-card{ background:var(--bg-card); border:1px solid var(--border-card); border-radius:6px; overflow:hidden; }
.teacher-card .thumb{ height:280px; }
.teacher-card .body{ padding:24px; }
.teacher-card .name{ font-family:var(--serif); font-size:24px; }
.teacher-card .role{ font-size:11.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--accent); margin:8px 0 14px; }
.teacher-card .bio{ font-size:14px; line-height:1.7; color:var(--muted-2); }

/* ---------- Prices ---------- */
.plan-card{ background:var(--bg-card); border:1px solid var(--border-card); border-radius:6px; padding:30px; display:flex; flex-direction:column; gap:14px; }
.plan-card .tag{ font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--accent); }
.plan-card .name{ font-family:var(--serif); font-size:26px; }
.plan-card .price{ font-family:var(--serif); font-size:38px; color:var(--text); }
.plan-card .unit{ font-size:13.5px; color:var(--muted-3); }
.plan-card .desc{ font-size:14px; line-height:1.7; color:var(--muted-2); border-top:1px solid var(--border-card); padding-top:14px; }
.info-box{ background:var(--bg-alt); border:1px solid var(--border-card); border-radius:6px; padding:30px; }
.info-box .ttl{ font-family:var(--serif); font-size:24px; margin-bottom:14px; }
.info-box .txt{ font-size:14.5px; line-height:1.85; color:var(--muted-2); }

/* ---------- Gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.gallery-grid .photo{ height:230px; }

/* ---------- Blog article ---------- */
article.post{ max-width:820px; }
article.post .back{ cursor:pointer; font-size:13px; color:var(--accent); }
article.post .meta{ font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted-4); margin-top:26px; }
article.post h1{ font-size:40px; line-height:1.15; margin:14px 0 24px; }
article.post .cover{ height:340px; margin-bottom:30px; }
article.post p{ font-size:16.5px; line-height:1.85; color:var(--muted-1); margin:0 0 20px; }

/* ---------- Shop ---------- */
.shop-cats{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px; }
.shop-cat{
  cursor:pointer; border:1px solid var(--border-hover); border-radius:999px; padding:9px 20px;
  font-size:13px; font-weight:600; color:var(--text); background:none;
}
.shop-cat:hover, .shop-cat.active{ border-color:var(--accent); color:var(--accent); }
.shop-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.shop-card{ background:var(--bg-card); border:1px solid var(--border-card); border-radius:6px; overflow:hidden; display:flex; flex-direction:column; }
.shop-card .thumb{ height:220px; }
.shop-card .body{ padding:22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.shop-card .cat{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted-4); }
.shop-card .name{ font-size:17px; font-weight:600; line-height:1.3; }
.shop-card .desc{ font-size:13.5px; line-height:1.6; color:var(--muted-2); }
.shop-card .price{ font-family:var(--serif); font-size:24px; margin-top:6px; }
.ship-boxes{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:40px; }
.ship-boxes .box{ background:var(--bg-alt); border:1px solid var(--border-card); border-radius:6px; padding:26px; }
.ship-boxes .box .ttl{ font-size:16px; font-weight:600; margin-bottom:10px; }
.ship-boxes .box .txt{ font-size:14px; line-height:1.75; color:var(--muted-2); }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:50px; }
.form-card{ display:flex; flex-direction:column; gap:18px; background:var(--bg-card); border:1px solid var(--border-card); border-radius:6px; padding:34px; }
.form-field label{ display:block; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted-3); margin-bottom:8px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; background:var(--bg); border:1px solid var(--border-strong); border-radius:4px;
  padding:13px 15px; color:var(--text); font-family:var(--sans); font-size:15px; outline:none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color:var(--accent); }
.form-field textarea{ resize:vertical; }
.form-row-2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.consent{ display:flex; gap:10px; align-items:flex-start; font-size:13px; line-height:1.6; color:var(--muted-3); }
.consent input{ width:16px; height:16px; margin-top:2px; flex:0 0 auto; accent-color:var(--accent); }
.success-box{ background:var(--bg-card); border:1px solid var(--accent); border-radius:6px; padding:36px; }
.success-box .ttl{ font-family:var(--serif); font-size:28px; margin-bottom:12px; }
.success-box .txt{ font-size:15px; line-height:1.75; color:var(--muted-2); }
.error-box{ background:var(--bg-card); border:1px solid #b5544a; border-radius:6px; padding:18px 22px; font-size:14px; color:#e8a89f; margin-bottom:4px; }

.info-card{ background:var(--bg-card); border:1px solid var(--border-card); border-radius:6px; padding:30px; display:flex; flex-direction:column; gap:20px; }
.info-card .grp .lbl{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--accent); margin-bottom:8px; }
.info-card .grp .val{ font-size:16px; line-height:1.6; }
.map-embed{ height:250px; border:1px solid var(--border-strong); border-radius:4px; overflow:hidden; }
.map-embed iframe{ width:100%; height:100%; border:0; filter:grayscale(.35) invert(.92) contrast(.9); }

/* ---------- FAQ ---------- */
.faq-item{ cursor:pointer; background:var(--bg-card); border:1px solid var(--border-card); border-radius:6px; padding:24px 26px; margin-bottom:12px; }
.faq-item .row{ display:flex; gap:20px; align-items:flex-start; }
.faq-item .q{ font-size:18px; font-weight:600; flex:1; line-height:1.4; }
.faq-item .sign{ color:var(--accent); font-size:20px; line-height:1; }
.faq-item .a{ font-size:15px; line-height:1.8; color:var(--muted-2); margin-top:16px; max-width:700px; display:none; }
.faq-item.open .a{ display:block; }

/* ---------- Legal ---------- */
.legal-block{ margin-bottom:34px; }
.legal-block h2{ font-family:var(--serif); font-size:25px; margin-bottom:14px; }
.legal-block p{ font-size:15.5px; line-height:1.85; color:var(--muted-1); margin:0 0 14px; }
.legal-updated{ font-size:13px; color:var(--muted-4); margin-bottom:44px; }
.legal-nav{ border-top:1px solid var(--border-card); padding-top:26px; display:flex; gap:18px; flex-wrap:wrap; }
.legal-nav a{ font-size:13px; color:var(--muted-3); border:1px solid var(--border-strong); border-radius:999px; padding:8px 16px; }
.legal-nav a:hover, .legal-nav a.active{ color:var(--accent); border-color:var(--accent); }

/* ---------- Footer ---------- */
footer.site{ background:var(--bg-footer); border-top:1px solid var(--border); }
.footer-grid{ padding:64px 28px 30px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:44px; max-width:1240px; margin:0 auto; }
.footer-grid .brand-name{ font-family:var(--serif); font-size:26px; }
.footer-grid .brand-sub{ font-size:9px; letter-spacing:.42em; color:var(--accent); text-transform:uppercase; margin-top:6px; }
.footer-grid p{ font-size:14px; line-height:1.75; color:var(--muted-3); margin:20px 0 0; max-width:300px; }
.footer-grid .legal-info{ font-size:12.5px; line-height:1.7; color:var(--muted-5); margin:18px 0 0; }
.footer-col-title{ font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--text); margin-bottom:16px; }
.footer-links{ display:flex; flex-direction:column; gap:11px; }
.footer-links a{ font-size:14px; color:var(--muted-3); }
.footer-links a:hover{ color:var(--accent); }
.newsletter-form input{ width:100%; background:var(--bg-alt); border:1px solid var(--border-strong); border-radius:4px; padding:12px 14px; color:var(--text); font-family:var(--sans); font-size:14px; outline:none; }
.newsletter-form input:focus{ border-color:var(--accent); }
.newsletter-form button{
  cursor:pointer; display:block; width:100%; text-align:center; margin-top:10px; border:1px solid var(--accent);
  color:var(--accent); background:none; border-radius:999px; padding:11px; font-size:13px; font-weight:600;
}
.newsletter-form button:hover{ background:var(--accent); color:var(--bg); }
.newsletter-msg{ font-size:12.5px; color:var(--accent); margin-top:8px; min-height:1em; }
.footer-bottom{
  padding:22px 28px 40px; border-top:1px solid var(--border); display:flex; justify-content:space-between;
  gap:20px; flex-wrap:wrap; font-size:12.5px; color:var(--muted-5);
  max-width:1240px; margin:0 auto;
}
.footer-bottom a{ color:var(--muted-5); }
.footer-bottom a:hover{ color:var(--accent); }

/* ---------- Cart drawer ---------- */
.cart-overlay{ position:fixed; inset:0; z-index:60; display:none; justify-content:flex-end; }
.cart-overlay.open{ display:flex; }
.cart-overlay .backdrop{ position:absolute; inset:0; background:rgba(10,7,6,.7); border:none; cursor:pointer; }
.cart-drawer{
  position:relative; width:430px; max-width:92vw; height:100%; background:var(--bg-alt);
  border-left:1px solid var(--border-strong); display:flex; flex-direction:column;
}
.cart-drawer .head{ padding:26px 28px; border-bottom:1px solid var(--border-card); display:flex; justify-content:space-between; align-items:center; }
.cart-drawer .head .ttl{ font-family:var(--serif); font-size:24px; }
.cart-drawer .head .x{ cursor:pointer; font-size:22px; color:var(--muted-3); background:none; border:none; }
.cart-drawer .body{ flex:1; overflow-y:auto; padding:22px 28px; display:flex; flex-direction:column; gap:18px; }
.cart-empty{ font-size:15px; line-height:1.75; color:var(--muted-2); }
.cart-line{ display:grid; grid-template-columns:66px 1fr auto; gap:14px; align-items:center; border-bottom:1px solid #2A211C; padding-bottom:16px; }
.cart-line .thumb{ height:66px; border:1px solid var(--border-strong); border-radius:4px; overflow:hidden; }
.cart-line .name{ font-size:14.5px; font-weight:600; line-height:1.35; }
.cart-line .price{ font-size:13px; color:var(--muted-3); margin-top:4px; }
.cart-line .qty-row{ display:flex; gap:8px; align-items:center; margin-top:9px; }
.qty-btn{ cursor:pointer; width:24px; height:24px; border:1px solid var(--border-hover); border-radius:4px; display:flex; align-items:center; justify-content:center; font-size:14px; background:none; color:var(--text); }
.qty-val{ font-size:14px; min-width:18px; text-align:center; }
.remove-link{ cursor:pointer; font-size:12px; color:var(--muted-4); margin-left:8px; background:none; border:none; }
.line-total{ font-size:14.5px; font-weight:600; }
.cart-drawer .foot{ padding:24px 28px; border-top:1px solid var(--border-card); display:flex; flex-direction:column; gap:12px; }
.sum-row{ display:flex; justify-content:space-between; font-size:14px; color:var(--muted-2); }
.sum-total{ display:flex; justify-content:space-between; font-family:var(--serif); font-size:24px; padding-top:8px; border-top:1px solid #2A211C; }
.checkout-note{ font-size:12px; line-height:1.6; color:var(--muted-5); text-align:center; }
.checkout-done{ font-size:13.5px; line-height:1.7; color:var(--accent); text-align:center; }

/* ---------- Cookie banner ---------- */
.cookie-banner{ position:fixed; bottom:20px; left:20px; right:20px; z-index:70; display:flex; justify-content:center; }
.cookie-card{
  max-width:960px; width:100%; background:var(--bg-card); border:1px solid var(--border-hover); border-radius:8px;
  padding:24px 28px; display:grid; grid-template-columns:1fr auto; gap:26px; align-items:center; box-shadow:0 20px 60px rgba(0,0,0,.5);
}
.cookie-card p{ font-size:14px; line-height:1.7; color:var(--muted-1); margin:0; }
.cookie-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav{ display:none; }

/* ---------- Utility ---------- */
.hidden{ display:none !important; }
.center{ text-align:center; }
.mt-40{ margin-top:40px; }
.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--accent); color:var(--bg);
  padding:12px 20px; z-index:100; font-weight:700; border-radius:0 0 6px 0;
}
.skip-link:focus{ left:0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero{ grid-template-columns:1fr; gap:40px; padding-top:50px; }
  .hero h1{ font-size:46px; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .cta-box{ grid-template-columns:1fr; padding:36px; }
  .style-row{ grid-template-columns:1fr; }
  .style-row .detail-col{ border-left:none; padding-left:0; border-top:1px solid var(--border-card); padding-top:18px; }
  .class-row{ grid-template-columns:1fr 1fr; row-gap:6px; }
  .class-row .room{ text-align:left; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .shop-grid{ grid-template-columns:repeat(2,1fr); }
  section.section{ padding:56px 0; }
  .section-head h2, .page-head h1{ font-size:34px; }
}
@media (max-width: 680px){
  /* backdrop-filter establishes a containing block for fixed descendants,
     which would break the full-screen fixed nav drawer below */
  header.site{ backdrop-filter:none; }
  header.site .inner{ padding:14px 20px; flex-wrap:wrap; }
  nav.main{ display:none; position:fixed; inset:0; top:0; z-index:55; background:var(--bg);
    flex-direction:column; align-items:flex-start; padding:90px 28px 28px; gap:26px; margin-left:0; overflow-y:auto; }
  nav.main.open{ display:flex; }
  nav.main a.nav-link{ font-size:20px; }
  nav.main .cart-btn{ margin-top:10px; }
  .nav-toggle{ display:flex; }
  .wrap{ padding:0 18px; }
  .hero{ padding:34px 0 40px; }
  .hero h1{ font-size:34px; }
  .hero-media{ grid-template-rows:140px 140px 120px; }
  .grid-4{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; padding:44px 0 20px; }
  .cta-box{ padding:26px; }
  .cta-box h2{ font-size:28px; }
  .page-head h1{ font-size:30px; }
  .form-row-2{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:1fr; }
  .shop-grid{ grid-template-columns:1fr; }
  .style-row{ padding:20px; }
  .cart-drawer{ width:100vw; }
  .cookie-banner{ left:10px; right:10px; bottom:10px; }
  .cookie-card{ grid-template-columns:1fr; padding:20px; }
}
