:root {
  --bg: #f5f1ea;
  --panel: rgba(255, 252, 247, 0.84);
  --text: #221f1a;
  --muted: #6d665d;
  --line: rgba(34, 31, 26, 0.12);
  --accent: #b24a2a;
  --accent-dark: #8d381f;
  --shadow: 0 24px 60px rgba(72, 51, 28, 0.08);
  --shell: min(1180px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(178, 74, 42, 0.08), transparent 25%),
    linear-gradient(180deg, #faf7f1 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.page-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(34, 31, 26, 0.018) 1px, transparent 1px);
  background-size: 100% 28px;
  opacity: 0.5;
}
.page {
  width: var(--shell);
  margin: 0 auto;
  padding: 28px 0 36px;
  position: relative;
}
.hero {
  border-bottom: 1px solid var(--line);
  padding: 8px 0 26px;
}
.hero-topline,
.hero-main {
  display: grid;
  gap: 24px;
}
.hero-topline {
  grid-template-columns: 1fr auto;
  align-items: start;
  margin-bottom: 20px;
}
.hero-main {
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  align-items: end;
  margin-bottom: 22px;
}
.hero-label,
.section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 800;
}
.hero-label {
  min-width: 320px;
}
.eyebrow,
.mini-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 800;
}
.eyebrow { color: var(--accent); }
.mini-label { color: var(--muted); }
h1, h2, h3 {
  margin: 0;
  font-family: Outfit, sans-serif;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.94;
  max-width: 9.5ch;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  max-width: 10ch;
}
h3 {
  font-size: 1.18rem;
}
.hero-note p,
.intro-card p,
.service-item p,
.story-copy p,
.contact-head p,
.form-note {
  color: var(--muted);
  line-height: 1.8;
}
.actions,
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.actions { margin-top: 24px; }
.hero-note {
  padding: 0 0 18px 8px;
  align-self: center;
  max-width: 24rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease;
  will-change: transform;
}
.primary {
  color: #fff8f3;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.ghost {
  background: rgba(255,255,255,0.44);
  border-color: var(--line);
}
.hero-band {
  margin: 0;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
  background: #e6ddd1;
}
.hero-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 0.62fr 0.38fr;
  gap: 18px;
  margin-top: 26px;
}
.intro-card,
.quote-card,
.contact,
.story {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.intro-card,
.quote-card {
  padding: 24px;
}
.story-media {
  min-height: 380px;
  overflow: hidden;
  background: #e6ddd1;
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-mark {
  margin: 0 0 18px;
  color: var(--accent);
  font-weight: 800;
}
.services,
.story,
.contact {
  margin-top: 24px;
}
.services {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.service-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.service-index {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.story {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 0;
}
.story-copy {
  padding: 28px;
}
.contact {
  padding: 28px;
}
.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
input, select, textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.66);
  color: var(--text);
}
textarea {
  min-height: 132px;
  resize: vertical;
}
svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-note { min-height: 24px; margin: 0; }
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .42s ease, transform .42s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.tilt-card {
  will-change: transform;
  transition: transform 160ms ease;
}
@media (max-width: 980px) {
  .hero,
  .hero-topline,
  .hero-main,
  .editorial-grid,
  .service-list,
  .story,
  .row.two {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 8px;
  }
  .hero-label {
    min-width: 0;
  }
  .hero-note {
    padding: 0;
    max-width: none;
  }
}
@media (max-width: 720px) {
  .page {
    width: min(calc(100vw - 20px), 1180px);
    padding: 12px 0 22px;
  }
  h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }
  h2 {
    max-width: none;
  }
  .button {
    width: 100%;
  }
  .hero-topline {
    gap: 12px;
    margin-bottom: 14px;
  }
  .hero-main {
    gap: 16px;
    margin-bottom: 16px;
  }
  .intro-card,
  .quote-card,
  .contact,
  .story-copy {
    padding: 18px;
  }
}
