
:root{
  --bg:#f6f1e8;
  --bg-soft:#fbf7f1;
  --card:#ffffff;
  --text:#2b1713;
  --muted:#5d4338;
  --gold:#9a6d1f;
  --gold-soft:#e4d4bb;
  --gold-ring:#d2b274;
  --red:#7f0d11;
  --line:#e3d3bb;
  --shadow:0 12px 30px rgba(127, 13, 17, 0.06);
  --radius:28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%; display:block}
a{text-decoration:none; color:inherit}

.container{
  width:min(1180px, calc(100% - 48px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(246,241,232,0.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}
.brand-logo{
  width:64px;
  height:64px;
  object-fit:cover;
  border-radius:50%;
  box-shadow:var(--shadow);
  border:1px solid rgba(184,138,42,.2);
}
.brand-title{
  font-size:18px;
  font-weight:700;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold);
}
.brand-subtitle{
  font-size:12px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:#6a4a2d;
  margin-top:4px;
}
.site-nav{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.site-nav a{
  padding:10px 16px;
  border-radius:999px;
  color:#5b3b2f;
  transition:.2s ease;
}
.site-nav a:hover{
  background:#fff;
  color:var(--red);
}

.hero{
  position:relative;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(184,138,42,0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(127,13,17,0.12), transparent 32%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:48px;
  padding:84px 0 96px;
}
.eyebrow, .section-tag, .mini-tag, .contact-label{
  text-transform:uppercase;
  letter-spacing:.28em;
}
.eyebrow{
  display:inline-flex;
  font-size:12px;
  color:var(--gold);
  background:rgba(255,255,255,.72);
  border:1px solid #d8c29d;
  box-shadow:0 8px 20px rgba(0,0,0,.03);
  border-radius:999px;
  padding:10px 16px;
}
.hero h1{
  font-size:60px;
  line-height:1.08;
  margin:24px 0 0;
  max-width:900px;
}
.hero p{
  max-width:760px;
  margin:24px 0 0;
  font-size:19px;
  color:var(--muted);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:36px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{ transform:translateY(-1px) }
.btn-primary{
  background:var(--red);
  color:#fff;
  box-shadow:0 14px 28px rgba(127,13,17,.14);
}
.btn-secondary{
  background:rgba(255,255,255,.82);
  color:#7a571d;
  border:1px solid #caa86c;
}

.pillars{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:42px;
}
.pillar-card{
  background:rgba(255,255,255,.82);
  border:1px solid #e2d2b8;
  border-radius:24px;
  padding:22px;
  color:#5b3b2f;
  box-shadow:0 8px 20px rgba(0,0,0,.03);
}

.hero-panel{
  background:rgba(255,255,255,.85);
  border:1px solid #dcc8a7;
  border-radius:32px;
  padding:32px;
  box-shadow:var(--shadow);
}
.panel-head{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:24px;
}
.panel-logo-wrap{
  width:64px;
  height:64px;
  border-radius:18px;
  background:#fff8ef;
  border:1px solid rgba(215,185,126,.4);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.panel-logo{
  width:48px;
  height:48px;
  object-fit:contain;
}
.section-tag{
  font-size:12px;
  color:var(--gold);
}
.hero-panel h2,
.section h2{
  margin:8px 0 0;
  font-size:40px;
  line-height:1.15;
}

.process-list{
  display:grid;
  gap:16px;
}
.process-item{
  display:flex;
  gap:16px;
  background:#fffdfa;
  border:1px solid #efe2d0;
  border-radius:24px;
  padding:18px;
}
.step{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#b88a2a;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  flex:0 0 auto;
}
.step-title{
  color:var(--red);
  font-size:13px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.process-item p{
  margin:6px 0 0;
  color:#64493d;
  font-size:14px;
}

.section{
  padding:88px 0;
}
.section-soft{
  background:var(--bg-soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-heading{
  max-width:840px;
}
.section-heading p,
.split-grid p,
.training-card p,
.about-copy p,
.contact-box p{
  color:var(--muted);
  font-size:18px;
  margin-top:18px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:44px;
}
.service-card{
  background:rgba(255,255,255,.9);
  border:1px solid var(--gold-soft);
  border-radius:28px;
  padding:28px;
  box-shadow:0 8px 20px rgba(0,0,0,.03);
  transition:transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 28px rgba(0,0,0,.06);
}
.icon-box{
  width:48px;
  height:48px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff6ea;
  border:1px solid rgba(210,178,116,.4);
  color:var(--gold);
  font-size:18px;
}
.service-card h3{
  margin:22px 0 0;
  font-size:24px;
}
.service-card p{
  margin:14px 0 0;
  color:#654a3e;
  font-size:15px;
}

.split-grid,
.training-grid,
about-grid,
.contact-box{
  display:grid;
  gap:36px;
}
.split-grid{
  grid-template-columns:.9fr 1.1fr;
}
.info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.info-card{
  background:#fff;
  border:1px solid var(--gold-soft);
  border-radius:24px;
  padding:22px;
  box-shadow:0 8px 20px rgba(0,0,0,.03);
  color:var(--muted);
  font-size:17px;
}
.mini-tag{
  color:var(--red);
  font-size:11px;
  margin-bottom:12px;
}

.training-grid{
  grid-template-columns:1fr 1fr;
}
.training-card{
  background:rgba(255,255,255,.9);
  border:1px solid #e2d2b8;
  border-radius:32px;
  padding:32px;
  box-shadow:0 8px 20px rgba(0,0,0,.03);
}
.training-highlight{
  background:linear-gradient(135deg, #fffaf2, #f8efe2);
  border:1px solid #dbc39b;
  border-radius:32px;
  padding:32px;
  box-shadow:0 8px 20px rgba(0,0,0,.03);
  display:grid;
  gap:16px;
}
.training-item{
  background:rgba(255,255,255,.8);
  border:1px solid #eadbc6;
  border-radius:24px;
  padding:18px 18px 18px 20px;
  color:var(--muted);
  position:relative;
}
.training-item::before{
  content:"●";
  color:var(--gold);
  margin-right:10px;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.about-copy{
  color:var(--muted);
  font-size:18px;
}

.contact-box{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  background:#fff;
  border:1px solid #dcc39b;
  border-radius:36px;
  padding:36px;
  box-shadow:var(--shadow);
}
.contact-card{
  background:#fffaf4;
  border:1px solid #eadbc6;
  border-radius:28px;
  padding:26px;
}
.contact-item + .contact-item{
  margin-top:18px;
}
.contact-label{
  font-size:12px;
  color:var(--gold);
}
.contact-value{
  margin-top:8px;
  color:var(--text);
  font-size:18px;
}

.site-footer{
  border-top:1px solid var(--line);
  background:#f4eee4;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:28px 0;
  color:#6a4a2d;
  font-size:14px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-logo{
  width:40px;
  height:40px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid rgba(201,164,95,.3);
}
.footer-title{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:13px;
  font-weight:700;
}
.footer-subtitle{
  margin-top:4px;
}

@media (max-width: 1100px){
  .hero-grid,
  .split-grid,
  .training-grid,
  .about-grid,
  .contact-box{
    grid-template-columns:1fr;
  }
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 820px){
  .header-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .site-nav{
    width:100%;
  }
  .hero h1{
    font-size:42px;
  }
  .pillars,
  .services-grid,
  .info-grid{
    grid-template-columns:1fr;
  }
  .brand-title{
    letter-spacing:.18em;
    font-size:16px;
  }
  .brand-subtitle{
    letter-spacing:.2em;
  }
  .hero-panel h2,
  .section h2{
    font-size:30px;
  }
  .container{
    width:min(1180px, calc(100% - 32px));
  }
  .section,
  .hero-grid{
    padding-top:64px;
    padding-bottom:64px;
  }
}

@media (max-width: 560px){
  .brand{
    align-items:flex-start;
  }
  .brand-logo{
    width:56px;
    height:56px;
  }
  .site-nav a{
    padding:8px 12px;
    font-size:14px;
  }
  .btn{
    width:100%;
  }
}
