:root{
  --bg:#f5f4f1;
  --panel:#ffffff;
  --panel-soft:#faf8f4;
  --border:#e8e4dc;
  --text:#191919;
  --muted:#6d6a64;
  --accent:#b79257;
  --shadow:0 24px 70px rgba(0,0,0,.06);
  --radius:28px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(183,146,87,.10), transparent 22%),
    linear-gradient(180deg,#f8f7f4 0%, var(--bg) 100%);
}

body.menu-open{
  overflow:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

.loader{
  position:fixed;
  inset:0;
  background:#f7f5f1;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .45s ease, visibility .45s ease;
}

.loader.hidden{
  opacity:0;
  visibility:hidden;
}

.loader-box{
  width:min(90vw,420px);
  text-align:center;
}

.loader-domain{
  font-size:11px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:rgba(0,0,0,.42);
  margin-bottom:16px;
}

.loader-track{
  height:8px;
  border-radius:999px;
  overflow:hidden;
  background:#ece7dd;
  border:1px solid #e2ddd3;
}

.loader-bar{
  height:100%;
  width:0;
  background:linear-gradient(90deg,#d7c29a 0%, #b79257 100%);
  animation:loadBar 1.5s cubic-bezier(.22,1,.36,1) forwards;
}

.loader-text{
  margin-top:14px;
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
}

@keyframes loadBar{
  from{width:0}
  to{width:100%}
}

.page{
  max-width:1220px;
  margin:0 auto;
  padding:18px;
}

.shell{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:34px;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
}

.header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 28px;
}

.brand-domain{
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(0,0,0,.42);
}

.brand-title{
  margin-top:6px;
  font-size:18px;
  font-weight:600;
  letter-spacing:-.02em;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.nav a{
  padding:11px 15px;
  border-radius:999px;
  border:1px solid transparent;
  color:var(--muted);
  transition:.18s ease;
  font-size:14px;
}

.nav a:hover{
  background:#fbfaf7;
  border-color:var(--border);
  color:var(--text);
}

.nav a.active{
  background:#191919;
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:#f7f4ee;
  color:#191919;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  transition:.18s ease;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.menu-toggle:hover{
  background:#f1ece2;
}

.menu-overlay{
  display:none;
}

.hero{
  padding:56px 28px 42px;
  border-bottom:1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(183,146,87,.08), transparent 25%),
    linear-gradient(180deg,#ffffff 0%, #fcfbf8 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:end;
}

.kicker{
  font-size:11px;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:rgba(0,0,0,.42);
}

.hero h1{
  margin:16px 0 0;
  font-size:60px;
  line-height:1.02;
  letter-spacing:-.045em;
  font-weight:600;
}

.accent{
  color:var(--accent);
}

.lead{
  margin:24px 0 0;
  max-width:760px;
  font-size:18px;
  line-height:1.85;
  color:var(--muted);
}

.hero-side{
  padding:24px;
  border-radius:24px;
  border:1px solid var(--border);
  background:var(--panel-soft);
}

.hero-side-title{
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(0,0,0,.42);
}

.hero-side-text{
  margin-top:10px;
  color:#4e4b46;
  line-height:1.8;
  font-size:15px;
}

.content{
  padding:34px 28px 40px;
}

.section-head{
  margin-bottom:20px;
}

.section-kicker{
  font-size:11px;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:rgba(0,0,0,.42);
}

.section-title{
  margin:10px 0 0;
  font-size:36px;
  line-height:1.08;
  letter-spacing:-.03em;
}

.section-text{
  margin:14px 0 0;
  max-width:860px;
  color:var(--muted);
  line-height:1.85;
  font-size:16px;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  border:1px solid var(--border);
  border-radius:24px;
  background:#fff;
  padding:24px;
  box-shadow:0 14px 34px rgba(0,0,0,.03);
}

.card.soft{
  background:var(--panel-soft);
}

.card-title{
  margin:0;
  font-size:22px;
  line-height:1.3;
}

.card-role{
  margin-top:8px;
  font-size:14px;
  line-height:1.7;
  color:var(--accent);
}

.card-text{
  margin-top:14px;
  font-size:15px;
  line-height:1.9;
  color:#514f4a;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-card{
  display:block;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid var(--border);
  background:#fff;
  transition:.18s ease;
}

.contact-card:hover{
  transform:translateY(-2px);
  border-color:#d8cfbf;
  box-shadow:0 12px 24px rgba(0,0,0,.05);
}

.contact-label{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(0,0,0,.42);
}

.contact-value{
  margin-top:8px;
  font-size:18px;
  line-height:1.55;
}

.list{
  margin:0;
  padding-left:18px;
  color:#514f4a;
}

.list li{
  margin-bottom:10px;
  line-height:1.85;
}

.footer{
  border-top:1px solid var(--border);
  padding:22px 28px 30px;
  color:#8a867f;
  font-size:13px;
  line-height:1.8;
  background:#fcfbf8;
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .45s ease, transform .45s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 980px){
  .hero-grid,
  .grid-2,
  .grid-3{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:46px;
  }
}

@media (max-width: 720px){
  .page{
    padding:12px;
  }

  .header-inner,
  .hero,
  .content,
  .footer{
    padding-left:18px;
    padding-right:18px;
  }

  .hero h1{
    font-size:36px;
  }

  .lead{
    font-size:16px;
  }

  .section-title{
    font-size:28px;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .menu-toggle{
    display:flex;
  }

  .nav{
    position:fixed;
    top:0;
    right:0;
    width:min(88vw,320px);
    height:100vh;
    background:rgba(255,255,255,.98);
    backdrop-filter:blur(16px);
    box-shadow:-18px 0 40px rgba(0,0,0,.08);
    border-left:1px solid var(--border);
    padding:84px 18px 24px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    transform:translateX(100%);
    transition:transform .28s ease;
    z-index:80;
  }

  .nav.open{
    transform:translateX(0);
  }

  .nav a{
    padding:14px 16px;
    border-radius:16px;
    font-size:15px;
  }

  .nav a.active{
    background:#191919;
    color:#fff;
  }

  .menu-overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.22);
    opacity:0;
    visibility:hidden;
    transition:.22s ease;
    z-index:70;
  }

  .menu-overlay.show{
    opacity:1;
    visibility:visible;
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}