:root {
  --red: #ce2b22;
  --ink: #0e0e0e;
  --muted: #8a8a8a;
  --line: #e4e2de;
  --paper: #ffffff;
  --dark: #0e0e0e;
  --dark-2: #000000;
  --on-dark-soft: #b9b9b9;
  --on-dark-faint: #e9e9e9;
  --rose: #ffe7e4;
  --maxw: 1440px;
  --gutter: clamp(20px, 6.9vw, 100px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.eyebrow {
  color: var(--red); font-weight: 600; font-size: 15px;
  letter-spacing: 2.4px; text-transform: uppercase; margin: 0;
}
.eyebrow.detail { letter-spacing: 2.08px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 3px; }

/* ---------------- BRAND FONT (official Bauhaus logo) ---------------- */
@font-face {
  font-family: "Bauhaus";
  src: url("fonts/Bauhaus-Regular.woff2") format("woff2"),
       url("fonts/Bauhaus-Regular.woff") format("woff"),
       url("fonts/Bauhaus-Regular.ttf") format("truetype"),
       url("fonts/Bauhaus-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------------- NAV ---------------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; gap: 20px; }
.wordmark {
  font-family: "Bauhaus", "Baumans", "Quicksand", "Inter", sans-serif;
  font-weight: 400; font-size: 34px; letter-spacing: 0.05em; color: var(--ink); line-height: 1;
  white-space: nowrap;
}
.nav-right { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.nav-links a { font-weight: 500; font-size: 16px; color: var(--ink); position: relative; }
.nav-links a.link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--red); transition: width .28s ease;
}
.nav-links a.link:hover::after,
.nav-links a.link:focus-visible::after,
.nav-links a.link.current::after { width: 100%; }

/* language toggle */
.lang-toggle {
  flex: none; cursor: pointer;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 999px;
  font: inherit; font-weight: 600; font-size: 13px; letter-spacing: .5px;
  padding: 8px 14px; min-width: 46px; text-align: center;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.lang-toggle:hover { border-color: var(--red); color: var(--red); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { display: block; }

/* ---------------- HERO ---------------- */
.hero { position: relative; width: 100%; background: #1a1614; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,8,7,0.72) 0%, rgba(10,8,7,0.35) 42%, rgba(10,8,7,0.05) 70%),
    linear-gradient(180deg, rgba(10,8,7,0.10) 60%, rgba(10,8,7,0.55) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  min-height: clamp(560px, 57vw, 823px);
  display: flex; flex-direction: column; justify-content: center; padding-block: 60px;
}
.hero h1 {
  font-weight: 900; color: #fff; margin: 14px 0 0;
  font-size: clamp(64px, 12vw, 120px); line-height: .92; letter-spacing: -2.4px; opacity: .96;
}
.hero p.lede {
  color: #fff; opacity: .9; font-weight: 500; font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55; max-width: 470px; margin: 28px 0 0;
}
.hero-cta { display: flex; align-items: center; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.btn-light {
  background: #fff; color: var(--ink); font-weight: 600; font-size: 17px;
  padding: 19px 34px; border-radius: 6px; transition: transform .2s ease, box-shadow .2s ease;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.link-arrow { color: #f5f5f5; font-weight: 800; font-size: 17px; }
.link-arrow .arw { display: inline-block; transition: transform .2s ease; }
.link-arrow:hover .arw { transform: translateX(6px); }

/* Nuance hero: portrait image, cropped to keep the light + faces; maroon backdrop */
.hero--nuance { background: #410d14; }
.hero--nuance .hero-img { object-position: center 34%; }

/* ---------------- STILLNESS BAND ---------------- */
.band-still { background: var(--dark-2); color: #fff; text-align: center; padding: clamp(70px, 9vw, 120px) 0; }
.band-still h2 { font-weight: 300; font-size: clamp(34px, 5vw, 60px); line-height: 1.05; margin: 0; }
.band-still p { color: var(--on-dark-soft); font-weight: 300; font-size: clamp(16px, 2vw, 20px); line-height: 1.5; max-width: 760px; margin: 22px auto 0; }

/* ---------------- COLLECTION ---------------- */
.collection { padding: clamp(72px, 9vw, 120px) 0; }
.collection-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 60px);
}
.collection-head h2 { font-weight: 700; font-size: clamp(32px, 4.5vw, 48px); line-height: 1.02; margin: 12px 0 0; max-width: 660px; }
.collection-head .avail { color: var(--muted); font-size: 18px; margin: 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.8vw, 40px); }
.card {
  border: 1px solid var(--line); border-radius: 40px; background: #fff; padding: 26px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(14,14,14,.08); border-color: #d8d5d0; }
.card-media { border-radius: 28px; overflow: hidden; aspect-ratio: 1 / 1; background: linear-gradient(135deg, #f4f2ef, #eceae6); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card h3 { font-weight: 700; font-size: 26px; margin: 24px 0 0; }
.card .cat { color: var(--muted); font-size: 16px; margin: 10px 0 0; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 16px; }
.card .price { color: var(--red); font-weight: 600; font-size: 22px; }
.card .view { font-weight: 500; font-size: 15px; color: var(--ink); white-space: nowrap; }
.card .view .arw { display: inline-block; transition: transform .2s ease; }
.card:hover .view .arw { transform: translateX(5px); }

/* ---------------- DETAIL ---------------- */
.detail { padding: clamp(20px, 3vw, 40px) 0 clamp(72px, 9vw, 110px); }
.detail-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.detail-media { border-radius: 40px; overflow: hidden; background: #faf9f7; aspect-ratio: 4 / 5; }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail h2 { font-weight: 700; font-size: clamp(34px, 4.5vw, 46px); margin: 14px 0 0; }
.detail p.body { color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.58; margin: 26px 0 0; max-width: 560px; }
.materials { color: var(--ink); font-weight: 500; font-size: 14px; letter-spacing: .84px; margin: 34px 0 0; }

/* ---------------- PRE-ORDER BAND ---------------- */
.band-pre { background: var(--dark); color: #fff; text-align: center; padding: clamp(70px, 9vw, 110px) 0; }
.band-pre h2 { font-weight: 700; font-size: clamp(34px, 5vw, 52px); margin: 0; }
.band-pre p { color: var(--rose); font-weight: 300; font-size: clamp(17px, 2vw, 20px); margin: 22px 0 0; }
.btn-reserve {
  display: inline-block; margin-top: 36px; background: #fff; color: var(--red);
  font-weight: 600; font-size: 17px; padding: 18px 40px; border-radius: 6px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-reserve:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.35); }
.pre-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.pre-cta .btn-reserve { margin-top: 0; }
.btn-outline {
  display: inline-block; background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.5); font-weight: 600; font-size: 17px;
  padding: 18px 40px; border-radius: 6px; transition: border-color .2s ease, background .2s ease;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------------- CONTACT / RESERVE ---------------- */
.reserve { padding: clamp(72px, 9vw, 120px) 0; background: #fbfaf8; border-top: 1px solid var(--line); }
.reserve-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 80px); }
.reserve h2 { font-weight: 700; font-size: clamp(30px, 4vw, 42px); margin: 12px 0 0; line-height: 1.05; }
.reserve .intro { color: var(--muted); font-size: 18px; line-height: 1.6; margin: 22px 0 0; max-width: 380px; }
.reserve .contact-line { margin-top: 28px; font-size: 16px; }
.reserve .contact-line a { color: var(--red); font-weight: 600; }
form.enquiry { display: grid; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { font-weight: 600; font-size: 14px; letter-spacing: .2px; }
input, select, textarea {
  font: inherit; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(206,43,34,.12); }
textarea { resize: vertical; min-height: 120px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn-submit {
  justify-self: start; background: var(--red); color: #fff; border: 0; cursor: pointer;
  font-weight: 600; font-size: 16px; padding: 16px 38px; border-radius: 8px;
  transition: background .2s ease, transform .2s ease;
}
.btn-submit:hover { background: #b3211a; transform: translateY(-1px); }
.btn-submit:disabled { opacity: .6; cursor: default; transform: none; }
.form-note { font-size: 13px; color: var(--muted); }
.form-status { font-size: 15px; font-weight: 500; margin: 4px 0 0; min-height: 1.2em; }
.form-status.ok { color: #1a7f4b; }
.form-status.err { color: var(--red); }

/* ---------------- FOOTER ---------------- */
footer.site { background: var(--dark); color: #fff; padding: clamp(56px, 7vw, 72px) 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand .wordmark { color: #fff; font-size: 30px; letter-spacing: 0.05em; }
.foot-brand p { color: var(--muted); font-size: 16px; margin: 22px 0 0; }
.foot-brand a.mail { color: var(--on-dark-soft); font-size: 16px; display: inline-block; margin-top: 8px; }
.foot-col h4 { color: var(--muted); font-size: 13px; letter-spacing: 1.3px; margin: 4px 0 18px; font-weight: 600; }
.foot-col a { color: var(--on-dark-faint); font-size: 15px; display: block; margin-bottom: 12px; transition: color .2s ease; }
.foot-col a:hover { color: #fff; }
.foot-rule { height: 1px; background: rgba(255,255,255,0.12); margin: 44px 0 24px; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-bottom, .foot-bottom a { color: var(--muted); font-size: 14px; }
.foot-bottom a:hover { color: #fff; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1023px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid, .reserve-grid { grid-template-columns: 1fr; }
  .detail-media { aspect-ratio: 16 / 10; max-width: 560px; }
  .foot-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

/* Phones: keep TWO product cards per row, with scaled-down card text */
@media (max-width: 720px) {
  .nav { height: 72px; }
  .wordmark { font-size: 26px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 24px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 18px; width: 100%; }

  .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card { padding: 14px; border-radius: 22px; }
  .card-media { border-radius: 15px; }
  .card h3 { font-size: 17px; margin-top: 14px; }
  .card .cat { font-size: 12.5px; margin-top: 5px; }
  .card-foot { margin-top: 12px; gap: 6px; }
  .card .price { font-size: 15px; }
  .card .view { font-size: 12.5px; }

  .row-2 { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .hero-inner { min-height: 74vh; padding-block: 40px; }
  .band-still { padding: 52px 0; }
  .band-still p { margin-top: 16px; }
  .collection { padding: 52px 0 44px; }
  .collection-head { margin-bottom: 26px; gap: 8px; }
  .collection-head h2 { font-size: 30px; }
  .collection-head .avail { font-size: 15px; }
  .detail { padding: 8px 0 52px; }
  .detail-grid { gap: 22px; }
  .detail .eyebrow.detail { margin-bottom: 0; }
  .detail h2 { font-size: 30px; margin-top: 6px; }
  .detail p.body { margin-top: 16px; font-size: 16.5px; }
  .materials { margin-top: 22px; }
  .band-pre { padding: 56px 0; }
  .band-pre p { margin-top: 14px; }
  .pre-cta { margin-top: 26px; gap: 12px; }
  .btn-reserve, .btn-outline { width: 100%; max-width: 320px; }
  .reserve { padding: 52px 0; }
  .reserve-grid { gap: 26px; }
  .reserve h2 { font-size: 27px; }
  .reserve .intro { margin-top: 14px; font-size: 16px; }
  .reserve .contact-line { margin-top: 18px; }
  footer.site { padding: 48px 0 32px; }
  .foot-rule { margin: 32px 0 20px; }
}

/* Mobile: smaller display type + buttons */
@media (max-width: 720px) {
  .hero h1 { font-size: clamp(42px, 13.5vw, 58px); letter-spacing: -1px; }
  .hero p.lede { font-size: 15.5px; margin-top: 18px; max-width: 100%; }
  .hero-cta { gap: 14px; margin-top: 26px; }
  .btn-light, .btn-reserve, .btn-outline, .btn-submit { font-size: 15px; padding: 14px 24px; }
  .link-arrow { font-size: 15px; }
  .band-still h2 { font-size: clamp(26px, 7vw, 32px); }
  .band-still p { font-size: 15px; }
  .band-pre h2 { font-size: clamp(28px, 7.5vw, 34px); }
  .band-pre p { font-size: 15px; }
  .lang-toggle { font-size: 12px; padding: 7px 12px; min-width: 42px; }
  .nav-links a { font-size: 17px; }
  .collection-head .avail { font-size: 14px; }
  .detail p.body { font-size: 15.5px; }
  .materials { font-size: 12.5px; letter-spacing: .5px; }
}

/* Very small phones: shrink card text a touch more so 2-up never overflows */
@media (max-width: 400px) {
  .card { padding: 11px; border-radius: 18px; }
  .card h3 { font-size: 15px; margin-top: 11px; }
  .card .cat { font-size: 11.5px; }
  .card .price { font-size: 14px; }
  .card .view { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
