:root {
  --bg: #f4efe7;
  --bg-soft: #fbf8f3;
  --panel: rgba(255, 252, 247, 0.86);
  --text: #18161b;
  --muted: #67606a;
  --line: rgba(24, 22, 27, 0.12);
  --accent: #e58f62;
  --accent-soft: #f5d5c3;
  --shell: min(1180px, calc(100vw - 32px));
  --radius: 28px;
  --shadow: 0 24px 80px rgba(64, 42, 28, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(229, 143, 98, 0.16), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(245, 213, 195, 0.54), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 44%, #efe5d7 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin: 0 auto; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}
.brand {
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.nav { display: flex; gap: 22px; color: var(--muted); }
.hero {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 18px;
  align-items: stretch;
}
.hero-copy {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-visual {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  min-height: 620px;
  box-shadow: var(--shadow);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
  color: #b46039;
}
h1, h2 {
  margin: 0;
  font-family: Newsreader, serif;
  letter-spacing: -.04em;
}
h1 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 7vw, 6rem);
  line-height: .93;
}
h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: .96;
}
h3 {
  margin: 0;
  font-size: 1.18rem;
}
.lead, .editorial-card p, .mini, .contact p { color: var(--muted); line-height: 1.8; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .96rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}
.primary { background: #18161b; color: #fff; }
.ghost { background: rgba(255,255,255,.54); border-color: var(--line); }
.section { margin-top: 24px; }
.editorial {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 18px;
}
.section-intro, .editorial-card, .card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.section-intro { padding: 30px; }
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.editorial-card {
  padding: 24px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.editorial-card.accent {
  background: linear-gradient(180deg, #fff8f2 0%, #f9e5d8 100%);
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9d5531;
  font-weight: 800;
  font-size: .82rem;
}
.showcase {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 18px;
}
.story-block { padding: 30px; }
.visual-stack {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 18px;
}
.card.tall {
  grid-row: span 2;
  overflow: hidden;
  min-height: 560px;
}
.card.tall img,
.card.small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.small-copy {
  padding: 24px;
  display: flex;
  align-items: end;
  background: linear-gradient(180deg, #fffaf4 0%, #f4dfcd 100%);
}
.mini {
  margin: 0;
  font-size: 1.02rem;
}
.small-image {
  overflow: hidden;
  min-height: 220px;
}
.contact {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 18px;
  padding: 28px;
}
.form { display: grid; gap: 14px; }
.row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  color: var(--text);
  border-radius: 16px;
  padding: .95rem 1rem;
  font: inherit;
}
textarea { resize: vertical; }
.footer {
  padding: 18px 0 30px;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
}
.footer p { margin: 0; }
.reveal { opacity: 0; transform: translateY(14px); transition: .42s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (max-width: 980px) {
  .topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero, .editorial, .showcase, .contact, .row.two, .editorial-grid, .visual-stack { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; }
  .card.tall { min-height: 360px; }
}
