/* =========
   Base
   ========= */
:root{
  --bg:#ffffff;
  --ink:#121212;
  --muted:#555;
  --line:#e9e9e9;
  --gold:#b88a2a;
  --gold2:#d6b05a;
  --soft:#f7f7f7;
  --shadow: 0 18px 40px rgba(0,0,0,.10);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.55;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit}
.container{width:min(1120px, 92vw); margin:0 auto}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:#000; color:#fff; border-radius:10px; z-index:9999;
}

/* =========
   Header
   ========= */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px; min-width: 240px}
.brand-logo{
  width:44px; height:44px; border-radius:12px;
  border:1px solid var(--line);
  padding:6px;
  background:#fff;
}
.brand-text{display:flex; flex-direction:column}
.brand-name{
  font-family: Cinzel, serif;
  letter-spacing:.5px;
  font-weight:700;
  font-size:13.5px;
  line-height:1.1;
}
.brand-role{
  font-weight:700;
  font-size:12px;
  color:var(--gold);
  letter-spacing:1px;
}

.header-actions{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.action-link{
  font-size:12.5px;
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px dashed transparent;
}
.action-link:hover{color:var(--ink); border-bottom-color:var(--gold2)}
.action-pill{
  text-decoration:none;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:600;
}
.action-pill:hover{border-color:var(--gold2)}

.menu-btn{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.menu-btn span{
  display:block;
  width:18px; height:2px;
  background:#222;
  margin:4px auto;
  border-radius:10px;
}

.mobile-menu{
  display:none;
  border-top:1px solid var(--line);
  background:#fff;
}
.mobile-inner{
  padding:12px 0 18px 0;
  display:grid;
  gap:10px;
}
.mobile-inner a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--soft);
  font-weight:600;
}
.mobile-quick{
  display:grid; gap:10px; margin-top:8px;
}
.mobile-quick .action-link{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
}

/* =========
   Hero
   ========= */
.hero{
  position:relative;
  padding:56px 0 34px 0;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:24px;
  align-items:stretch;
}
.badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(184,138,42,.18), rgba(214,176,90,.08));
  border:1px solid rgba(184,138,42,.30);
  color:var(--gold);
  font-weight:700;
  letter-spacing:.8px;
  font-size:12px;
}
.hero-title{
  font-family:Cinzel, serif;
  font-size:42px;
  line-height:1.08;
  margin:14px 0 8px;
  letter-spacing:.4px;
}
.hero-sub{
  margin:0;
  font-weight:800;
  color:var(--gold);
  letter-spacing:2px;
}
.hero-ced{
  margin:10px 0 0;
  font-weight:800;
  letter-spacing:1px;
}
.hero-quote{
  margin:18px 0 18px;
  padding:16px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(184,138,42,.30);
  background: #fff;
  box-shadow: 0 12px 30px rgba(184,138,42,.12);
  font-weight:700;
  letter-spacing:.6px;
}
.quote-mark{color:var(--gold); font-size:20px; vertical-align:top}

.cta-row{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:16px 0 8px;
}
.btn{
  display:inline-flex;
  align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(184,138,42,.55); box-shadow: 0 10px 20px rgba(0,0,0,.08)}
.btn.primary{
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color:#0b0b0b;
  border-color: transparent;
}
.btn.ghost{
  background:#fff;
}
.btn.small{
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
}

.mini-info{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:14px;
}
.mini-item{
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--soft);
}
.mini-k{font-size:12px; color:var(--muted); font-weight:600}
.mini-v{font-size:13px; font-weight:800}

.hero-card{
  border-radius: calc(var(--radius) + 6px);
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.hero-card-top{
  display:flex; align-items:center; gap:12px;
  padding:16px 16px;
  background: linear-gradient(180deg, rgba(184,138,42,.14), rgba(255,255,255,1));
  border-bottom:1px solid var(--line);
}
.hero-emblem{
  width:54px; height:54px;
  padding:8px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
}
.hero-card-title .t1{
  font-family:Cinzel, serif;
  font-weight:800;
  letter-spacing:.4px;
  line-height:1.05;
}
.hero-card-title .t2{
  color:var(--gold);
  font-weight:900;
  letter-spacing:2px;
  margin-top:6px;
}

.hero-card-body{padding:16px 16px 10px}
.hc-row{display:flex; gap:10px; align-items:flex-start; margin:10px 0}
.hc-label{
  width:92px;
  font-size:12px;
  color:var(--muted);
  font-weight:800;
  letter-spacing:.5px;
}
.hc-value{font-weight:700}
.hc-value a{color:var(--ink); text-decoration:none; border-bottom:1px dashed rgba(184,138,42,.55)}
.hc-value a:hover{border-bottom-style:solid}
.hc-divider{height:1px; background:var(--line); margin:14px 0}

.hero-card-footer{
  padding:14px 16px 16px;
  display:flex; gap:10px; flex-wrap:wrap;
  border-top:1px solid var(--line);
  background:#fff;
}

.hero-decor{position:absolute; inset:0; pointer-events:none}
.ring{
  position:absolute;
  border-radius:999px;
  border:1px solid rgba(184,138,42,.26);
  background: radial-gradient(circle at 30% 30%, rgba(214,176,90,.16), transparent 55%);
  filter: blur(.2px);
}
.r1{width:520px; height:520px; right:-240px; top:-220px}
.r2{width:340px; height:340px; right:110px; top:120px; opacity:.7}
.r3{width:260px; height:260px; left:-120px; bottom:-140px; opacity:.55}

/* =========
   Sections
   ========= */
.section{padding:44px 0}
.section.alt{background: linear-gradient(180deg, #fff, #fafafa)}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; margin-bottom:16px;
}
.section-head h2{
  margin:0;
  font-family:Cinzel, serif;
  letter-spacing:.6px;
  font-size:28px;
}
.section-head p{
  margin:0;
  color:var(--muted);
  font-weight:600;
}

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

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  padding:18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.card h3{
  margin:0 0 10px;
  font-family:Cinzel, serif;
  letter-spacing:.4px;
}
.card.highlight{
  border-color: rgba(184,138,42,.35);
  background: linear-gradient(180deg, rgba(184,138,42,.10), #fff);
}

.list{
  margin:0; padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.list li{
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--soft);
  font-weight:800;
  letter-spacing:.6px;
}
.list.columns{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-box{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(184,138,42,.30);
  background:#fff;
}
.quote-icon{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:14px;
  background: linear-gradient(90deg, rgba(184,138,42,.18), rgba(214,176,90,.08));
  border:1px solid rgba(184,138,42,.30);
  color:var(--gold);
  font-weight:900;
}
.quote-text{
  font-weight:900;
  letter-spacing:.6px;
}
.divider{
  height:1px;
  background: rgba(184,138,42,.22);
  margin:14px 0;
}
.meta{display:grid; gap:10px}
.meta-item{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--soft);
}
.meta-k{color:var(--muted); font-weight:800}
.meta-v{font-weight:900}

/* =========
   Contact
   ========= */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}
.contact-card{padding:18px}
.contact-row{
  display:flex; gap:12px;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--soft);
  margin-bottom:10px;
}
.icon{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  background:#fff;
  border:1px solid var(--line);
  font-size:18px;
}
.contact-text .k{font-size:12px; color:var(--muted); font-weight:800; letter-spacing:.5px}
.contact-text .v{font-weight:900}
.contact-text .v a{
  text-decoration:none;
  border-bottom:1px dashed rgba(184,138,42,.55);
}
.contact-text .v a:hover{border-bottom-style:solid}

.contact-visual{
  padding:0;
  overflow:hidden;
}
.cv-top{
  padding:14px;
  background: linear-gradient(180deg, rgba(184,138,42,.14), rgba(255,255,255,1));
  border-bottom:1px solid var(--line);
}
.cv-top img{
  border-radius:14px;
  border:1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}
.cv-bottom{
  padding:18px;
}
.cv-name{
  font-family:Cinzel, serif;
  font-weight:900;
  letter-spacing:.5px;
  margin-top:10px;
}
.cv-ced{
  color:var(--gold);
  font-weight:900;
  letter-spacing:1px;
  margin-top:8px;
}
.cv-quote{
  margin-top:14px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(184,138,42,.30);
  background:#fff;
  font-weight:900;
  letter-spacing:.6px;
}

/* =========
   Footer
   ========= */
.site-footer{
  border-top:1px solid var(--line);
  background:#fff;
  padding:26px 0;
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}
.footer-left{display:flex; align-items:center; gap:12px}
.footer-logo{
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  padding:6px;
}
.footer-name{font-family:Cinzel, serif; font-weight:900; letter-spacing:.4px}
.footer-role{color:var(--gold); font-weight:900; letter-spacing:2px; font-size:12px}
.footer-right{display:grid; gap:6px; text-align:right}
.footer-ced{font-weight:900}
.footer-quote{color:var(--muted); font-weight:700}

/* =========
   Responsive
   ========= */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .hero-title{font-size:36px}
}

@media (max-width: 760px){
  .header-actions{display:none}
  .menu-btn{display:inline-block}
  .mobile-menu.is-open{display:block}
  .hero{padding-top:34px}
  .hero-title{font-size:32px}
  .list.columns{grid-template-columns:1fr}
  .footer-right{text-align:left}
}
