
:root{
  --bg:#f8f4ee;
  --surface:#ffffff;
  --surface-soft:#fcf8f3;
  --text:#2b2118;
  --muted:#6f5c48;
  --line:#e8dccd;
  --primary:#8b5e34;
  --primary-dark:#6e4828;
  --gold:#c59a3b;
  --dark:#24180f;
  --dark-2:#302015;
  --success:#1da851;
  --shadow:0 14px 34px rgba(56,34,14,.07);
  --radius:22px;
  --container:1180px;
  --header-h:88px;
  --max-copy:760px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Cairo',sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fbf8f3 0%, #f8f4ee 100%);
  line-height:1.9;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
.container{
  width:min(var(--container), calc(100% - 34px));
  margin-inline:auto;
}
.topbar{
  background:linear-gradient(90deg,var(--dark),var(--dark-2),var(--dark));
  color:#f2d697;
  text-align:center;
  padding:12px 18px;
  font-size:14px;
  letter-spacing:.2px;
  border-bottom:1px solid rgba(197,154,59,.22);
}
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(43,33,24,.08);
  box-shadow:0 4px 18px rgba(43,33,24,.03);
}
.header-wrap{
  min-height:var(--header-h);
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:22px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-mark{
  width:50px;
  height:50px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--primary),var(--gold));
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
  box-shadow:var(--shadow);
  flex:0 0 auto;
}
.brand-text strong{
  display:block;
  font-size:17px;
  line-height:1.2;
}
.brand-text span{
  display:block;
  color:var(--muted);
  font-size:12px;
  line-height:1.2;
}
.main-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
}
.main-nav a{
  position:relative;
  padding:8px 0;
  font-size:15px;
  color:var(--text);
}
.main-nav a::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.25s ease;
}
.main-nav a:hover,
.main-nav a.active{
  color:var(--primary);
}
.main-nav a:hover::after,
.main-nav a.active::after{
  width:100%;
}
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 15px;
  transition:.25s ease;
}
.btn-pill:hover{transform:translateY(-1px)}
.lang-btn{
  border:1px solid var(--line);
  background:#fff;
}
.wa-btn{
  background:var(--success);
  color:#fff;
}
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  margin:5px auto;
  background:var(--text);
  border-radius:2px;
}
.page-hero{
  background:
    radial-gradient(circle at top right, rgba(197,154,59,.12), transparent 28%),
    linear-gradient(180deg,#fffdfa 0%, #f6efe5 100%);
  padding:68px 0 42px;
  border-bottom:1px solid var(--line);
}
.kicker{
  display:inline-flex;
  color:var(--primary);
  font-weight:700;
  font-size:14px;
}
.page-hero h1,
.section-head h2,
.feature h2,
.cta-box h2{
  font-size:clamp(30px,4vw,50px);
  line-height:1.28;
  margin:12px 0 14px;
}
.page-hero p,
.section-head p,
.card p,
.feature p,
.quote-box p,
.cta-box p,
.footer-card p,
.footer-card li,
.footer-card a{
  color:var(--muted);
}
.page-hero p{
  max-width:var(--max-copy);
  font-size:17px;
}
.section{
  padding:82px 0;
}
.section-soft{
  background:var(--surface-soft);
  border-top:1px solid rgba(232,220,205,.55);
  border-bottom:1px solid rgba(232,220,205,.55);
}
.section-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 36px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:start;
}
.card,
.feature,
.quote-box,
.cta-box,
.footer-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card{
  padding:24px;
  background:linear-gradient(180deg,#fff,#fffdfa);
}
.card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.45;
}
.card-index{
  color:var(--gold);
  font-weight:800;
  font-size:14px;
  display:inline-block;
  margin-bottom:8px;
}
.list{
  margin:0;
  padding:0 18px 0 0;
  color:var(--muted);
}
.list li{margin:8px 0}
.feature{
  padding:26px;
  background:linear-gradient(180deg,#fff,#faf6ef);
}
.quote-box{
  padding:28px;
  display:grid;
  place-items:center;
  min-height:100%;
  background:linear-gradient(135deg,#2d2015,#50331e);
  color:#fff;
}
.quote-box blockquote{
  margin:0;
  font-size:26px;
  line-height:1.8;
  text-align:center;
  max-width:18ch;
}
.text-link{
  display:inline-block;
  margin-top:16px;
  color:var(--primary);
  font-weight:700;
}
.cta-box{
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  background:linear-gradient(180deg,#fff,#fbf6ef);
}
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:13px 22px;
  font-weight:700;
  transition:.25s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--primary); color:#fff}
.btn-primary:hover{background:var(--primary-dark)}
.btn-secondary{background:#fff; border:1px solid var(--line)}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.contact-box{
  padding:24px;
}
.contact-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.contact-list a{color:var(--primary); font-weight:700}
.contact-note{
  color:var(--muted);
  margin-top:12px;
}
.form{
  display:grid;
  gap:12px;
}
.input,
.textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  color:var(--text);
  padding:14px 16px;
}
.textarea{min-height:140px; resize:vertical}
.site-footer{
  background:var(--dark);
  color:#f4ede4;
  padding-top:42px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:20px;
  padding-bottom:28px;
}
.footer-card{
  padding:22px;
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
  box-shadow:none;
}
.footer-card h3{
  margin:0 0 10px;
  font-size:24px;
}
.footer-card h4{
  margin:0 0 12px;
  color:var(--gold);
  font-size:17px;
}
.footer-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.footer-card a:hover{color:#fff}
.footer-note{
  display:inline-block;
  margin-top:12px;
  color:var(--gold);
  font-size:13px;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  color:#baa48d;
  font-size:13px;
  padding:16px 0 18px;
}
@media (max-width:1080px){
  .grid-3,
  .split,
  .footer-grid,
  .contact-grid{
    grid-template-columns:1fr 1fr;
  }
  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width:920px){
  .header-wrap{
    grid-template-columns:auto auto auto;
  }
  .menu-toggle{display:block}
  .main-nav{
    position:absolute;
    top:100%;
    right:0;
    left:0;
    background:#fff;
    border-bottom:1px solid var(--line);
    box-shadow:0 18px 38px rgba(0,0,0,.08);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px 16px 14px;
  }
  .main-nav.open{display:flex}
  .main-nav a{
    width:100%;
    padding:12px 2px;
    border-bottom:1px solid rgba(231,218,200,.6);
  }
  .main-nav a:last-child{border-bottom:0}
  .header-actions{display:none}
  .grid-3,
  .split,
  .footer-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }
  .quote-box blockquote{font-size:22px}
}
@media (max-width:560px){
  .container{width:min(var(--container), calc(100% - 22px))}
  .topbar{font-size:13px; padding:10px 12px}
  .brand-mark{
    width:42px;
    height:42px;
    border-radius:14px;
    font-size:14px;
  }
  .brand-text strong{font-size:15px}
  .brand-text span{font-size:11px}
  .btn{width:100%}
}
