:root {
  --primary: #5c6b2f;
  --bg: #f7f6ec;
  --ink: #23260f;
  --accent: #bc8a2e;
  --paper: #fffefc;
  --line: #e4e2d0;
  --mute: #5a5e3a;
  --display: 'Unbounded', system-ui, sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
  --r: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }

.wrap { width: min(1160px, 92vw); margin-inline: auto; }

h1 { font-family: var(--display); font-size: clamp(36px, 5.5vw, 66px); font-weight: 800; line-height: 1.0; letter-spacing: -0.02em; }
h2 { font-family: var(--display); font-size: clamp(24px, 3.2vw, 40px); font-weight: 700; line-height: 1.05; }
h3 { font-family: var(--display); font-size: 18px; font-weight: 700; line-height: 1.15; margin-bottom: 10px; }
h4 { font-family: var(--display); font-size: 16px; font-weight: 700; margin-bottom: 14px; }
p { color: var(--mute); line-height: 1.65; }
.lead { font-size: clamp(16px, 1.4vw, 18px); max-width: 50ch; color: var(--mute); margin-bottom: 24px; }
.eyebrow { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.eyebrow--inv { color: var(--accent); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(247,246,236,.93); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 24px; height: 66px; }
.brand { font-family: var(--display); font-size: 20px; font-weight: 800; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.brand__square { width: 20px; height: 20px; background: var(--primary); border-radius: 4px; display: inline-block; flex-shrink: 0; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14px; font-weight: 600; transition: color 0.15s; }
.nav__links a:hover { color: var(--primary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; font-weight: 700; font-size: 15px; padding: 13px 24px; border-radius: 999px; transition: transform 0.15s, background 0.15s; }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); background: #475525; }
.btn--ghost { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 2px var(--primary); }
.btn--ghost:hover { background: var(--primary); color: #fff; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { transform: translateY(-2px); background: #9e7220; }
.btn--sm { padding: 9px 16px; font-size: 12.5px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; }

/* HERO */
.hero { padding: clamp(40px, 5vw, 72px) 0 0; }
.hero__rail { display: grid; grid-template-columns: 280px 1fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
.hero__sidebar { position: sticky; top: 90px; padding-bottom: 32px; }
.sidebar__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); margin-bottom: 18px; }
.hero__sidebar h1 { margin-bottom: 28px; }
.sidebar__cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.sidebar__facts { display: flex; flex-direction: column; gap: 18px; border-top: 1px solid var(--line); padding-top: 24px; }
.sf strong { display: block; font-family: var(--display); font-size: 20px; font-weight: 800; color: var(--accent); }
.sf span { font-size: 12px; color: var(--mute); font-weight: 500; }
.hero__content { padding-bottom: 40px; }
.hero__main-img { margin-bottom: 18px; }
.hero__main-img img { width: 100%; height: clamp(300px, 42vw, 500px); object-fit: cover; border-radius: 20px; display: block; box-shadow: 0 24px 56px -20px rgba(35,38,15,.3); }
.hero__chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.chip { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--mute); }
.hero__intro { font-size: 16px; color: var(--mute); max-width: 60ch; line-height: 1.7; }

/* SECTION */
.section { padding: clamp(56px, 7vw, 88px) 0; }

/* WORKS */
.works__head { max-width: 52ch; margin-bottom: 40px; }
.works__head h2 { margin-bottom: 10px; }
.works__head p { color: var(--mute); }
.works__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.work-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; min-height: 180px; transition: box-shadow 0.2s; }
.work-card:hover { box-shadow: 0 6px 24px -6px rgba(35,38,15,.15); }
.work-card--wide { grid-column: span 2; }
.wc-label { align-self: flex-start; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); background: rgba(92,107,47,.1); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.work-card h3 { color: var(--ink); font-size: 18px; margin-bottom: 10px; }
.work-card p { color: var(--mute); font-size: 14.5px; flex: 1; }
.wc-meta { display: flex; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.wc-meta span { font-size: 12.5px; color: var(--mute); font-weight: 500; }
.wc-meta span::before { content: '· '; color: var(--accent); }
.wc-price { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--accent); margin-top: 14px; }

/* PANNO */
.panno { }
.panno__bg { background: var(--ink); padding: clamp(60px, 8vw, 96px) 0; }
.panno__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.panno h2 { color: #fff; margin: 10px 0 14px; }
.panno .lead { color: rgba(255,255,255,.72); margin-bottom: 28px; }
.panno__steps { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.panno__steps li { display: flex; gap: 0; position: relative; padding-bottom: 18px; }
.panno__steps li::before { counter-increment: none; }
.panno__steps li span { background: var(--accent); color: #fff; font-weight: 800; font-size: 13px; font-family: var(--display); min-width: 28px; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-right: 14px; margin-top: 2px; }
.panno__steps li p { font-size: 14.5px; color: rgba(255,255,255,.65); margin-top: 2px; }
.panno__steps li strong { display: none; }
.panno__card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 26px; }
.mat-list { display: flex; flex-direction: column; gap: 16px; }
.mat { display: flex; gap: 12px; align-items: flex-start; }
.mat__dot { width: 14px; height: 14px; border-radius: 3px; flex-shrink: 0; margin-top: 4px; }
.mat__dot--1 { background: #e84545; }
.mat__dot--2 { background: #45a8e8; }
.mat__dot--3 { background: #e8c745; }
.mat strong { display: block; color: #fff; font-size: 14px; margin-bottom: 4px; }
.mat p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5; }

/* LEARN */
.learn__grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.learn__text h2 { margin-bottom: 14px; }
.learn__text p { max-width: 40ch; }
.learn__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; }
.lcard--accent { background: var(--primary); border-color: transparent; }
.lcard--accent strong { color: #fff; }
.lcard--accent p { color: rgba(255,255,255,.72); }
.lcard--accent .lcard__price { color: rgba(255,255,255,.9); }
.lcard__icon { font-size: 28px; margin-bottom: 12px; }
.lcard strong { display: block; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.lcard p { font-size: 13.5px; color: var(--mute); flex: 1; line-height: 1.55; }
.lcard__price { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--accent); margin-top: 14px; }

/* CONTACT */
.contact { padding: clamp(56px, 7vw, 88px) 0; }
.contact__grid { background: linear-gradient(135deg, var(--primary) 0%, #3d4a1a 100%); border-radius: 24px; padding: clamp(36px, 5vw, 60px); display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.contact__info h2 { color: #fff; margin-bottom: 10px; }
.contact__info p { color: rgba(255,255,255,.78); max-width: 44ch; }
.contact__h { margin: 8px 0 16px !important; font-size: 14px; color: rgba(255,255,255,.55) !important; }
.contact__links { display: flex; gap: 20px; flex-wrap: wrap; }
.contact__links a { color: rgba(255,255,255,.9); text-decoration: none; font-weight: 600; font-size: 15px; }
.contact__links a:hover { color: var(--accent); }
.contact__cta { text-align: right; flex-shrink: 0; }
.contact__cta p { color: rgba(255,255,255,.7); max-width: 26ch; margin-bottom: 18px; text-align: right; font-size: 15px; }

/* FOOTER */
.foot { background: var(--ink); padding: 28px 0; }
.foot__in { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; }
.foot__in span:first-child { color: rgba(255,255,255,.85); font-weight: 600; }
.foot__in span:last-child { color: rgba(255,255,255,.4); }

@media (max-width: 900px) {
  .hero__rail { grid-template-columns: 1fr; }
  .hero__sidebar { position: static; padding-bottom: 0; }
  .hero__sidebar h1 { font-size: 48px; }
  .sidebar__cta { flex-direction: row; }
  .sidebar__facts { flex-direction: row; gap: 24px; }
  .works__grid { grid-template-columns: 1fr; }
  .work-card--wide { grid-column: span 1; }
  .panno__inner { grid-template-columns: 1fr; }
  .learn__grid { grid-template-columns: 1fr; }
  .learn__cards { grid-template-columns: 1fr 1fr; }
  .contact__grid { flex-direction: column; }
  .contact__cta { text-align: left; }
  .contact__cta p { text-align: left; }
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .learn__cards { grid-template-columns: 1fr; }
  .hero__chips { gap: 6px; }
  .sidebar__cta { flex-direction: column; }
  h1 { font-size: 34px; }
}
