
:root {
  --ink: #222222;
  --muted: #626262;
  --line: #ded8d1;
  --paper: #fbfaf8;
  --soft: #f2efeb;
  --brand: #9b1c20;
  --brand-dark: #691315;
  --kraft: #b98754;
  --white: #ffffff;
  --shadow: 0 16px 38px rgba(36, 28, 20, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.brand img { width: 230px; max-width: 48vw; height: auto; display: block; object-fit: contain; }
.mainnav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mainnav a {
  padding: 10px 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  border-bottom: 2px solid transparent;
}
.mainnav a:hover,
.mainnav a[aria-current="page"] { border-color: var(--brand); color: var(--brand); }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--white); padding: 8px 10px; font-size: 20px; }
.hero {
  position: relative;
  min-height: min(620px, calc(100vh - 82px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #efe9e2;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.76) 38%, rgba(255,255,255,.18) 72%);
}
.hero-panel {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 42px 0;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3 { line-height: 1.18; margin-top: 0; letter-spacing: 0; }
.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.8vw, 58px);
  max-width: 13ch;
}
.hero p:not(.eyebrow) {
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 600px;
  color: #3f3a36;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 14px;
  padding: 12px 18px;
  background: var(--brand);
  color: white;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.button:hover { background: var(--brand-dark); }
.page-intro,
.split,
.card-grid,
.feature-grid,
.contact-layout,
.legal,
.band {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}
.page-intro {
  padding: 78px 0 38px;
}
.page-intro h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(34px, 4.8vw, 58px);
}
.page-intro p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}
.split {
  display: grid;
  grid-template-columns: minmax(250px, .85fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 6vw, 72px);
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
.split h2 { font-size: clamp(28px, 4vw, 44px); }
.split p { color: var(--muted); font-size: 17px; }
.card-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 56px 0 76px;
}
.card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card,
.feature,
.contact-box,
.contact-form,
.legal {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.card,
.feature,
.contact-box,
.contact-form {
  padding: 28px;
}
.card h2,
.feature h2 { font-size: 20px; color: var(--brand); overflow-wrap: anywhere; hyphens: auto; }
.card p,
.feature li { color: var(--muted); }
.feature ul { margin: 0; padding-left: 20px; }
.feature li + li { margin-top: 9px; }
.band {
  margin-bottom: 80px;
  padding: 48px clamp(24px, 6vw, 68px);
  background: var(--brand);
  color: var(--white);
}
.band p { max-width: 760px; color: rgba(255,255,255,.86); }
.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  padding: 20px 0 84px;
}
.contact-box h2 { color: var(--brand); }
.contact-form {
  display: grid;
  gap: 15px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfc7be;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}
.contact-form .check input { width: auto; margin-top: 4px; }
.privacy-consent {
  margin-top: 2px;
  padding: 14px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
}
.privacy-consent input {
  flex: 0 0 auto;
}
.privacy-consent span {
  display: block;
  min-width: 0;
  line-height: 1.45;
}
.privacy-consent a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal {
  margin-bottom: 86px;
  padding: clamp(24px, 5vw, 54px);
}
.legal h2 {
  margin: 28px 0 10px;
  color: var(--brand);
  font-size: 24px;
}
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--muted); }
.legal-long {
  font-size: 15px;
  color: #34302c;
}
.notice {
  padding: 14px 16px;
  background: var(--soft);
  border-left: 4px solid var(--brand);
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #2b2927;
  color: #f7f3ef;
}
.site-footer a { color: #f7f3ef; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-content: start;
}
@media (max-width: 980px) {
  .card-grid,
  .card-grid.four,
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split,
  .contact-layout,
  .site-footer { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-header { min-height: 72px; align-items: flex-start; }
  .nav-toggle { display: inline-flex; }
  .mainnav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    padding: 10px 18px 18px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
  }
  .mainnav.open { display: grid; justify-content: stretch; }
  .mainnav a { padding: 11px 0; }
  .hero { min-height: 620px; align-items: end; }
  .hero::after { background: linear-gradient(180deg, rgba(255,255,255,.52) 0%, rgba(255,255,255,.95) 55%); }
  .hero-panel { margin: 0 auto; padding-bottom: 46px; }
  .hero h1 { max-width: 13ch; }
  .card-grid,
  .card-grid.four,
  .feature-grid { grid-template-columns: 1fr; }
}


.section-visual {
  width: min(1120px, calc(100% - 36px));
  margin: 8px auto 18px;
}
.section-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
@media (max-width: 760px) {
  .brand img { width: 190px; }
  .hero { min-height: 560px; }
  .card-grid.four { grid-template-columns: 1fr; }
}
