/* CasaHome — self-hosted stylesheet (no external fonts/CDN) */

:root {
  --bg: #FBF8F3;
  --ink: #2A2724;
  --ink-soft: #4A443D;
  --ink-softer: #3A352F;
  --muted: #6E6559;
  --muted-2: #8B8378;
  --border: #E3DBCF;
  --border-light: #EEE7DC;
  --input-border: #C9BEAD;
  --accent: #B4593A;
  --accent-hover: #8F4229;
  --accent-soft: #C58A6C;
  --paper: #F3ECE1;
  --white: #fff;
  --selection: #E7D8C6;
  --dark-bg: #2A2724;
  --dark-bg-2: #3E3830;
  --dark-ink: #EFE7DA;
  --dark-muted: #CFC5B6;
  --green: #6B7A5E;
  --green-bg: #F1F3EC;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, Consolas, 'Courier New', monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body { min-height: 100vh; display: flex; flex-direction: column; }

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

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

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--selection); }

.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.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;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--bg); padding: 10px 16px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Top announcement bar ---------- */
.announce {
  background: var(--dark-bg);
  color: var(--dark-ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}
.announce .sep { opacity: 0.4; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251,248,243,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: inherit;
}
.brand:hover { text-decoration: none; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-city {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a { color: var(--ink); }
.main-nav a:hover { color: var(--accent); text-decoration: none; }
.main-nav a.active { color: var(--accent); }

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--ink);
  background: none;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; }

.cart-btn {
  cursor: pointer;
  border: 1px solid var(--ink);
  background: none;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-btn:hover { background: var(--ink); color: var(--bg); }
.cart-count {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0 6px;
}

/* ---------- Buttons ---------- */
.btn {
  cursor: pointer;
  border: none;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 999px;
  display: inline-block;
  text-align: center;
}
.btn:hover { background: var(--accent); color: var(--bg); text-decoration: none; }

.btn-outline {
  cursor: pointer;
  border: 1px solid var(--input-border);
  background: none;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 999px;
  display: inline-block;
  text-align: center;
}
.btn-outline:hover { border-color: var(--ink); text-decoration: none; }

.btn-ghost {
  cursor: pointer;
  border: 1px solid var(--ink);
  background: none;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 999px;
  display: inline-block;
  text-align: center;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); text-decoration: none; }

.btn-small {
  cursor: pointer;
  border: 1px solid var(--ink);
  background: none;
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink);
}
.btn-small:hover { background: var(--ink); color: var(--bg); }

.btn-square {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border: 1px solid var(--input-border);
  background: none;
  font-size: 16px;
  color: var(--ink);
}
.btn-square:hover { border-color: var(--ink); }

.btn-block {
  width: 100%;
  cursor: pointer;
  border: none;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 16px;
}
.btn-block:hover { background: var(--accent); }

.btn-rm {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted-2);
  text-decoration: underline;
  margin-left: 8px;
  padding: 0;
}

.filter-btn {
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--input-border);
  background: transparent;
  color: var(--ink);
}
.filter-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filter-btn:hover { border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 24px 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow { color: var(--accent); margin-bottom: 22px; }
.hero h1 { font-size: 60px; line-height: 1.06; margin-bottom: 24px; }
.hero-lead { font-size: 18px; line-height: 1.65; color: var(--muted); max-width: 520px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-serif); font-size: 26px; }
.hero-stats .lbl { font-size: 13px; color: var(--muted); }
.hero-media {
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
  position: relative;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.media-box { position: relative; overflow: hidden; background: var(--paper); }
.media-box img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Feature strip ---------- */
.feature-grid {
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card { border: 1px solid var(--border); padding: 22px; background: var(--white); }
.feature-card .t { font-family: var(--font-serif); font-size: 19px; margin-bottom: 8px; }
.feature-card .d { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- Section header ---------- */
.section { padding: 44px 24px; max-width: 1240px; margin: 0 auto; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head h2 { font-size: 34px; }
.section-head .note { font-size: 14px; color: var(--muted); }
.section-head .link-more { cursor: pointer; color: var(--accent); font-size: 15px; background: none; border: none; font-family: var(--font-sans); padding: 0; }
.section-head .link-more:hover { text-decoration: underline; }

/* ---------- Category / product grids ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.cat-card { background: var(--white); border: 1px solid var(--border); display: block; color: inherit; }
.cat-card:hover { border-color: var(--ink); text-decoration: none; }
.cat-card .shot { height: 200px; }
.cat-card .body { padding: 18px; }
.cat-card .name { font-family: var(--font-serif); font-size: 20px; margin-bottom: 6px; }
.cat-card .count { font-size: 13px; color: var(--muted); }

.product-card { background: var(--white); border: 1px solid var(--border); display: flex; flex-direction: column; }
.product-card .shot { height: 230px; }
.product-card .body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card .cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.product-card .name { font-family: var(--font-serif); font-size: 18px; line-height: 1.3; }
.product-card .short { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.product-card .stock { font-size: 12px; color: var(--green); }
.product-card .row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.product-card .price { font-size: 17px; }

/* ---------- Dark workshop section ---------- */
.workshop {
  background: var(--dark-bg);
  color: var(--dark-ink);
  margin-top: 44px;
}
.workshop-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.workshop-eyebrow { color: var(--accent-soft); margin-bottom: 18px; }
.workshop h2 { font-size: 38px; line-height: 1.15; color: var(--bg); margin-bottom: 20px; }
.workshop p { font-size: 16px; line-height: 1.7; color: var(--dark-muted); margin: 0 0 16px; }
.workshop-media { height: 380px; overflow: hidden; background: var(--dark-bg-2); }
.workshop-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi-card { border: 1px solid var(--border); background: var(--white); padding: 26px; }
.testi-stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 12px; }
.testi-quote { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 16px; }
.testi-name { font-size: 13px; color: var(--muted); }

/* ---------- Newsletter box ---------- */
.newsletter {
  border: 1px solid var(--border);
  background: var(--paper);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}
.newsletter h2 { font-size: 30px; margin-bottom: 12px; }
.newsletter p { font-size: 15px; line-height: 1.65; color: var(--muted); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type=email] {
  flex: 1; min-width: 200px; border: 1px solid var(--input-border); background: var(--white);
  padding: 15px 16px; font-family: var(--font-sans); font-size: 15px; color: var(--ink);
}
.newsletter-form button {
  cursor: pointer; border: none; background: var(--ink); color: var(--bg);
  font-family: var(--font-sans); font-size: 15px; padding: 15px 26px;
}
.newsletter-form button:hover { background: var(--accent); }
.newsletter-consent { font-size: 12px; color: var(--muted-2); flex-basis: 100%; }
.form-note { font-size: 13px; color: var(--green); flex-basis: 100%; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-bg); color: var(--dark-muted); margin-top: auto; }
.footer-grid {
  max-width: 1240px; margin: 0 auto; padding: 60px 24px 30px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand { font-family: var(--font-serif); font-size: 24px; color: var(--bg); margin-bottom: 14px; }
.footer-grid p { font-size: 14px; line-height: 1.7; margin: 0 0 16px; }
.footer-meta { font-size: 13px; line-height: 1.8; }
.footer-col { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer-col .head { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.footer-col a { color: inherit; }
.footer-col a:hover { color: var(--bg); text-decoration: none; }
.footer-bottom { max-width: 1240px; margin: 0 auto; padding: 0 24px 24px; }
.footer-bottom-inner {
  border-top: 1px solid var(--dark-bg-2); padding-top: 20px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted-2);
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(42,39,36,0.45); z-index: 60;
  border: none; padding: 0; cursor: pointer;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 92vw;
  background: var(--bg); z-index: 61; display: flex; flex-direction: column;
  box-shadow: -14px 0 40px rgba(42,39,36,0.18);
}
.cart-drawer-head {
  padding: 22px 24px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-drawer-head .title { font-family: var(--font-serif); font-size: 22px; }
.cart-drawer-head button { cursor: pointer; border: none; background: none; font-size: 22px; color: var(--muted); line-height: 1; }
.cart-drawer-ship { padding: 16px 24px; border-bottom: 1px solid var(--border); }
.cart-drawer-ship .msg { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.progress-track { height: 5px; background: var(--border); border-radius: 99px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--green); }
.cart-drawer-body { flex: 1; overflow: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-drawer-empty { font-size: 15px; color: var(--muted); padding: 26px 0; }
.cart-drawer-item {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center;
  border-bottom: 1px solid var(--border-light); padding-bottom: 14px;
}
.cart-drawer-item .thumb { height: 64px; overflow: hidden; background: var(--paper); }
.cart-drawer-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-drawer-item .name { font-size: 15px; font-family: var(--font-serif); }
.cart-drawer-item .stepper { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-drawer-item .stepper button { cursor: pointer; width: 26px; height: 26px; border: 1px solid var(--input-border); background: none; color: var(--ink); }
.cart-drawer-foot { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-drawer-subtotal { display: flex; justify-content: space-between; font-size: 18px; margin-bottom: 14px; }

/* ---------- Cookie consent ---------- */
.consent-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--dark-bg); color: var(--dark-ink); padding: 20px 24px;
}
.consent-inner { max-width: 1240px; margin: 0 auto; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.consent-inner p { font-size: 14px; line-height: 1.6; margin: 0; flex: 1; min-width: 280px; }
.consent-inner a { color: #E0A483; text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-actions .necessary { cursor: pointer; border: 1px solid var(--muted); background: none; color: var(--dark-ink); font-family: var(--font-sans); font-size: 14px; padding: 12px 20px; }
.consent-actions .accept { cursor: pointer; border: none; background: var(--dark-ink); color: var(--ink); font-family: var(--font-sans); font-size: 14px; padding: 12px 22px; }

/* ---------- Page headers ---------- */
.page-head { padding: 48px 24px 12px; max-width: 1240px; margin: 0 auto; }
.page-head h1 { font-size: 44px; margin-bottom: 12px; }
.page-head .lead { font-size: 16px; color: var(--muted); max-width: 640px; line-height: 1.65; }

/* ---------- Shop ---------- */
.shop-section { padding: 48px 24px 70px; max-width: 1240px; margin: 0 auto; }
.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }

/* ---------- Rooms ---------- */
.rooms-section { padding: 48px 24px 70px; max-width: 1240px; margin: 0 auto; }
.room-card { border: 1px solid var(--border); background: var(--white); display: grid; grid-template-columns: 340px 1fr; margin-bottom: 20px; }
.room-card .shot { min-height: 250px; }
.room-card .body { padding: 30px; }
.room-card h2 { font-size: 28px; margin-bottom: 12px; }
.room-card p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }
.room-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.room-steps .step { display: flex; gap: 12px; font-size: 15px; color: var(--ink-soft); align-items: baseline; }
.room-steps .n { font-family: var(--font-mono); font-size: 11px; color: var(--accent); }

/* ---------- About ---------- */
.about-section { padding: 48px 24px 70px; max-width: 1000px; margin: 0 auto; }
.about-section > .lead { font-size: 19px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 20px; }
.about-media { height: 360px; overflow: hidden; margin: 34px 0; background: var(--paper); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-section h2 { font-size: 30px; margin: 34px 0 14px; }
.about-section p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 16px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 34px; }
.team-card { border: 1px solid var(--border); background: var(--white); padding: 22px; }
.team-card .name { font-family: var(--font-serif); font-size: 19px; }
.team-card .role { font-size: 13px; color: var(--accent); margin-bottom: 10px; }
.team-card .d { font-size: 14px; color: var(--muted); line-height: 1.6; }
.callout { border: 1px solid var(--border); background: var(--paper); padding: 30px; }
.callout h3 { font-size: 22px; margin-bottom: 10px; }
.callout p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ---------- Blog ---------- */
.blog-section { padding: 48px 24px 70px; max-width: 1100px; margin: 0 auto; }
.blog-list { display: flex; flex-direction: column; gap: 18px; }
.blog-row { border: 1px solid var(--border); background: var(--white); display: grid; grid-template-columns: 280px 1fr; color: inherit; }
.blog-row:hover { border-color: var(--ink); text-decoration: none; }
.blog-row .shot { min-height: 190px; }
.blog-row .body { padding: 26px 30px; }
.blog-row .meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.blog-row h2 { font-size: 26px; line-height: 1.25; margin-bottom: 10px; }
.blog-row .excerpt { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0 0 14px; }
.blog-row .more { color: var(--accent); font-size: 15px; }

.article { padding: 48px 24px 70px; max-width: 760px; margin: 0 auto; }
.article .back { color: var(--accent); font-size: 14px; }
.article .meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin: 26px 0 12px; }
.article h1 { font-size: 40px; line-height: 1.15; margin-bottom: 24px; }
.article-media { height: 300px; overflow: hidden; margin-bottom: 30px; background: var(--paper); }
.article-media img { width: 100%; height: 100%; object-fit: cover; }
.article p.body-p { font-size: 17px; line-height: 1.8; color: var(--ink-softer); margin: 0 0 20px; }
.article-foot { border-top: 1px solid var(--border); margin-top: 30px; padding-top: 24px; font-size: 14px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-section { padding: 48px 24px 70px; max-width: 860px; margin: 0 auto; }
.faq-section > .lead { font-size: 16px; color: var(--muted); line-height: 1.65; margin: 0 0 34px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); background: var(--white); }
.faq-q {
  cursor: pointer; width: 100%; text-align: left; border: none; background: none;
  padding: 20px 24px; display: flex; justify-content: space-between; gap: 18px; align-items: center;
}
.faq-q .q { font-family: var(--font-serif); font-size: 19px; color: var(--ink); }
.faq-q .sign { color: var(--accent); font-size: 20px; }
.faq-a { padding: 0 24px 22px; font-size: 15px; line-height: 1.7; color: var(--ink-soft); display: none; }
.faq-item.open .faq-a { display: block; }

/* ---------- Contact ---------- */
.contact-section { padding: 48px 24px 70px; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-section h1 { font-size: 44px; margin-bottom: 16px; }
.contact-section > div > p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 26px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; font-size: 15px; line-height: 1.6; }
.contact-info .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.contact-map { height: 230px; margin-top: 26px; overflow: hidden; position: relative; background: var(--paper); }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.contact-map .tag { position: absolute; left: 14px; bottom: 14px; font-family: var(--font-mono); font-size: 11px; color: var(--ink); background: rgba(251,248,243,0.92); padding: 6px 10px; }
.contact-form-card { border: 1px solid var(--border); background: var(--white); padding: 30px; }
.contact-form-card h2 { font-size: 26px; margin-bottom: 18px; }

/* ---------- Forms ---------- */
.form-col { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input[type=text], input[type=email], input[type=tel], input[type=number], textarea {
  border: 1px solid var(--input-border); padding: 14px; font-family: var(--font-sans); font-size: 15px; color: var(--ink); background: var(--white); width: 100%;
}
.form-row-2 input { padding: 13px; }
textarea { resize: vertical; }
.check-row { display: flex; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.5; align-items: flex-start; }
.check-row input { margin-top: 3px; }
.radio-row { display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--ink-soft); margin-top: 18px; }
.radio-row label { display: flex; gap: 10px; align-items: center; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Cart / Checkout page ---------- */
.cart-page { padding: 48px 24px 70px; max-width: 1100px; margin: 0 auto; }
.cart-page h1 { font-size: 44px; margin-bottom: 24px; }
.cart-empty { border: 1px solid var(--border); background: var(--white); padding: 50px; text-align: center; }
.cart-empty p { font-size: 18px; color: var(--muted); margin: 0 0 20px; }
.cart-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 34px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-line {
  border: 1px solid var(--border); background: var(--white); padding: 18px;
  display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; align-items: center;
}
.cart-line .thumb { height: 90px; overflow: hidden; background: var(--paper); }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .name { font-family: var(--font-serif); font-size: 18px; }
.cart-line .unit { font-size: 13px; color: var(--muted); margin: 4px 0 10px; }
.cart-line .stepper { display: flex; align-items: center; gap: 10px; }
.cart-line .lineTotal { font-size: 17px; }
.ship-card { border: 1px solid var(--border); background: var(--white); padding: 26px; }
.ship-card h2 { font-size: 22px; margin-bottom: 16px; }
.summary-card { border: 1px solid var(--border); background: var(--white); padding: 26px; position: sticky; top: 110px; }
.summary-card h2 { font-size: 22px; margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 10px; }
.summary-row .m { color: var(--muted); }
.summary-vat { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted-2); margin-bottom: 16px; }
.summary-grand { border-top: 1px solid var(--border); padding-top: 16px; display: flex; justify-content: space-between; font-size: 21px; font-family: var(--font-serif); margin-bottom: 20px; }
.summary-fine { font-size: 12px; color: var(--muted-2); line-height: 1.6; margin: 14px 0 0; }
.order-success { border: 1px solid var(--green); background: var(--green-bg); padding: 34px; margin-top: 24px; }
.order-success h2 { font-size: 26px; margin-bottom: 10px; }
.order-success p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ---------- Legal pages ---------- */
.legal-section { padding: 48px 24px 70px; max-width: 820px; margin: 0 auto; }
.legal-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.legal-section h1 { font-size: 40px; line-height: 1.15; margin-bottom: 10px; }
.legal-date { font-size: 13px; color: var(--muted-2); margin-bottom: 30px; }
.legal-block { margin-bottom: 26px; }
.legal-block h2 { font-size: 23px; margin-bottom: 10px; }
.legal-block p { font-size: 16px; line-height: 1.8; color: var(--ink-softer); margin: 0; }
.legal-foot { border-top: 1px solid var(--border); padding-top: 22px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { height: 340px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .workshop-inner { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .room-card { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-row { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .header-inner.nav-open .main-nav {
    display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
    position: absolute; left: 0; right: 0; top: 100%; background: var(--bg);
    border-bottom: 1px solid var(--border); padding: 18px 24px; margin: 0;
  }
  .site-header { position: sticky; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .hero h1 { font-size: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 70px 1fr; }
  .cart-line .lineTotal { grid-column: 2; }
}
