:root {
  --primary: #233044;
  --accent: #d9aa55;
  --paper: #f7f3ea;
  --ink: #202124;
  --muted: #66706a;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--paper); color: var(--ink); line-height: 1.5; }
a { color: inherit; text-decoration: none; }
.topbar { position: sticky; top: 0; z-index: 5; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px clamp(20px, 5vw, 72px); background: rgba(247,243,234,.92); border-bottom: 1px solid rgba(32,33,36,.12); backdrop-filter: blur(14px); }
.brand { font-weight: 850; color: var(--primary); }
nav { display: flex; gap: clamp(12px, 2vw, 24px); color: var(--muted); font-size: .94rem; overflow-x: auto; }
.hero { min-height: 78vh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .46fr); gap: clamp(28px, 6vw, 80px); align-items: center; padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 72px); background: radial-gradient(circle at 80% 18%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 34%), linear-gradient(135deg, var(--paper), #e7ddcb); }
.eyebrow { margin: 0 0 12px; color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 850; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 850px; margin-bottom: 20px; color: var(--primary); font-size: clamp(3rem, 8vw, 7rem); line-height: .92; letter-spacing: 0; }
h2 { color: var(--primary); font-size: clamp(2rem, 4.5vw, 4.4rem); line-height: 1; letter-spacing: 0; }
.lede { max-width: 680px; color: var(--muted); font-size: 1.2rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; border-radius: 8px; padding: 12px 18px; font-weight: 780; }
.primary { background: var(--primary); color: white; }
.secondary { border: 1px solid rgba(32,33,36,.18); background: rgba(255,255,255,.55); }
.feature { min-height: 330px; display: grid; align-content: end; gap: 12px; padding: 26px; border-radius: 8px; background: var(--primary); color: white; box-shadow: 0 24px 80px rgba(0,0,0,.16); }
.feature span { color: var(--accent); font-weight: 850; text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; }
.feature strong { font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1; }
section { padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px); }
.split { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1fr); gap: clamp(28px, 6vw, 80px); background: #fffaf0; }
.split > p { color: var(--muted); font-size: 1.16rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 28px; }
article { min-height: 190px; padding: 24px; border: 1px solid rgba(32,33,36,.13); border-radius: 8px; background: rgba(255,250,240,.74); }
article p, .contact p { color: var(--muted); }
.gallery { background: var(--primary); color: white; }
.gallery h2 { color: white; }
.tiles { display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 16px; margin-top: 28px; }
.tiles span { min-height: 230px; border-radius: 8px; background: linear-gradient(145deg, var(--accent), rgba(255,255,255,.18)); }
.tiles span:nth-child(2) { background: linear-gradient(145deg, rgba(255,255,255,.28), rgba(255,255,255,.08)); }
.contact { display: flex; justify-content: space-between; gap: 24px; align-items: center; background: #e9dfcf; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .9em; }
.small { font-size: .9rem; }
@media (max-width: 820px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .hero, .split { grid-template-columns: 1fr; }
  .grid, .tiles { grid-template-columns: 1fr; }
  .contact { align-items: flex-start; flex-direction: column; }
}
