
:root {
  --bg: #f6f3ee;
  --ink: #1a1a1a;
  --muted: #5c5a56;
  --line: #ddd7cc;
  --accent: #2f5d50;
  --card: #fffdf9;
  --soft: #ebe6dc;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Serif 4", Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 1.05rem;
}
.sans { font-family: "DM Sans", system-ui, sans-serif; }
a { color: inherit; }
.wrap { width: min(1080px, calc(100% - 2rem)); margin: 0 auto; }
.wrap-wide { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }

.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px); z-index: 10;
}
.brand { font-family: "DM Sans", sans-serif; font-weight: 700; letter-spacing: -0.02em; text-decoration: none; font-size: 1.05rem; }
.brand em { font-style: normal; color: var(--accent); }
.nav { display: flex; gap: 1.25rem; font-family: "DM Sans", sans-serif; font-size: .88rem; }
.nav a { text-decoration: none; color: var(--muted); }
.nav a:hover { color: var(--ink); }
.gallery-link { font-size: .8rem; color: var(--muted); text-decoration: none; }

.hero { padding: clamp(3rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem); }
.kicker {
  font-family: "DM Sans", sans-serif; font-size: .75rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 600;
}
.hero h1 {
  font-size: clamp(2.8rem, 10vw, 6.5rem); line-height: .95; letter-spacing: -0.03em;
  font-weight: 600; max-width: 12ch; margin-bottom: 1.25rem;
}
.sub { font-size: clamp(1.1rem, 2.4vw, 1.45rem); color: var(--muted); max-width: 28ch; margin-bottom: 2rem; }
.actions { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.btn {
  font-family: "DM Sans", sans-serif; display: inline-flex; align-items: center;
  padding: .85rem 1.35rem; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; transition: .2s;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.mail-plain { font-family: "DM Sans", sans-serif; font-size: .9rem; color: var(--muted); }
.mail-plain a { color: var(--accent); text-decoration: none; }

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; border-top: 1px solid var(--line); }
.pillars { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width:720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.5rem 1.4rem; display: flex; flex-direction: column; gap: .55rem; min-height: 100%;
}
.pillar-num { font-family: "DM Sans", sans-serif; font-size: .75rem; color: var(--accent); letter-spacing: .1em; }
.pillar-name { font-family: "DM Sans", sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.pillar-desc { color: var(--muted); font-size: 1rem; }

.labels { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; list-style: none; }
.labels li {
  font-family: "DM Sans", sans-serif; font-size: .85rem; padding: .55rem .9rem;
  background: var(--soft); border-radius: 999px; color: var(--ink);
}

.tariffs-lead { color: var(--muted); margin-top: .5rem; max-width: 40ch; }
.tariff-grid { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width:860px) { .tariff-grid { grid-template-columns: repeat(3, 1fr); } }
.tariff {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.6rem 1.45rem; display: flex; flex-direction: column; gap: .7rem;
}
.tariff.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.tariff-tag { font-family: "DM Sans", sans-serif; font-size: .72rem; letter-spacing: .12em; color: var(--muted); }
.tariff-name { font-family: "DM Sans", sans-serif; font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; }
.tariff-promise { color: var(--muted); flex: 1; font-size: .98rem; }
.tariff-price { font-family: "DM Sans", sans-serif; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.tariff .btn { align-self: flex-start; margin-top: .4rem; background: transparent; border-color: var(--line); color: var(--ink); border-radius: 10px; }
.tariff .btn:hover { border-color: var(--accent); color: var(--accent); }

.contact h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.02em; max-width: 18ch; margin: .6rem 0 1rem; }
.contact-lead { color: var(--muted); margin-bottom: 1.25rem; }
.contact .mail {
  font-family: "DM Sans", sans-serif; font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--accent); text-decoration: none; font-weight: 600; border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

.foot {
  border-top: 1px solid var(--line); padding: 1.5rem 0 2.5rem;
  font-family: "DM Sans", sans-serif; font-size: .85rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--ink); }
