/* ===== Variables ===== */
:root{
  --black: #100d0a;
  --black-soft: #1a1512;
  --black-card: #211b16;
  --gold: #d4af37;
  --gold-light: #f4e2a2;
  --gold-dark: #a8781f;
  --cream: #f7f4ee;
  --text-dark: #2a2419;
  --text-muted: #6b6357;
  --border-light: #e8e2d4;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16,13,10,0.08);
  --shadow-lg: 0 20px 50px rgba(16,13,10,0.35);
  --ff-head: 'Poppins', 'Segoe UI', sans-serif;
  --ff-body: 'Manrope', 'Segoe UI', sans-serif;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
h1,h2,h3,h4{font-family:var(--ff-head); font-weight:700; line-height:1.25;}

/* ===== Reveal animation ===== */
[data-reveal]{
  opacity:0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].in-view{
  opacity:1;
  transform:none;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  border-radius:100px;
  font-weight:600;
  font-size:15px;
  transition: all .25s ease;
  border:2px solid transparent;
  cursor:pointer;
  white-space:nowrap;
}
.btn-gold{
  background:linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color:#211b16;
  box-shadow:0 8px 20px rgba(212,175,55,0.35);
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 12px 26px rgba(212,175,55,0.45); }
.btn-outline{
  border-color: rgba(244,233,201,0.5);
  color: var(--gold-light);
}
.btn-outline:hover{ background:rgba(244,233,201,0.08); border-color:var(--gold-light); }
.btn-dark{
  background: var(--black);
  color: var(--gold-light);
}
.btn-dark:hover{ background:#000; transform:translateY(-2px); }

/* ===== Topbar ===== */
.topbar{
  background: var(--black);
  color:#cfc7b8;
  font-size:13px;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:9px 24px;
  gap:16px;
  flex-wrap:wrap;
}
.topbar-left{ display:flex; gap:22px; flex-wrap:wrap; align-items:center; }
.topbar-item{ display:flex; align-items:center; gap:6px; }
.topbar-item i{ width:14px; height:14px; background-color:var(--gold); flex:none; }
.topbar-item a:hover{ color:var(--gold-light); }
.topbar-social a{ display:flex; }
.topbar-social i{ width:16px; height:16px; background-color:var(--gold); }

/* ===== Header ===== */
.site-header{
  position:sticky; top:0; z-index:100;
  background: rgba(16,13,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(212,175,55,0.15);
  transition: box-shadow .3s;
}
.site-header.scrolled{ box-shadow:0 8px 24px rgba(0,0,0,0.35); }
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
  gap:24px;
}
.brand{ display:flex; align-items:center; }
.brand-logo{ height:42px; width:auto; }
.nav{ display:flex; gap:32px; margin-left:auto; margin-right:24px; }
.nav a{
  color:#e8e2d0;
  font-weight:500;
  font-size:15px;
  position:relative;
  padding:6px 0;
  transition:color .2s;
}
.nav a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:2px;
  background:var(--gold);
  transition:width .25s;
}
.nav a:hover{ color:var(--gold-light); }
.nav a:hover::after{ width:100%; }
.header-cta{ flex:none; padding:11px 22px; font-size:14px; }
.header-cta i{ width:16px; height:16px; background-color:#211b16; }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none; cursor:pointer;
  padding:6px;
}
.nav-toggle span{
  width:24px; height:2px; background:var(--gold-light); border-radius:2px;
  transition: all .3s;
}

/* ===== Hero ===== */
.hero{
  position:relative;
  background: radial-gradient(ellipse at top right, #211b16 0%, var(--black) 55%);
  color:#f4efe2;
  overflow:hidden;
  padding: 90px 0 100px;
}
.hero-bg-pattern{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(212,175,55,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 70% 30%, black, transparent 70%);
  pointer-events:none;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items:center;
  gap:40px;
  position:relative;
  z-index:1;
}
.eyebrow{
  display:inline-block;
  color:var(--gold-light);
  font-size:13px;
  font-weight:600;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:18px;
  padding:6px 16px;
  border:1px solid rgba(212,175,55,0.4);
  border-radius:100px;
}
.eyebrow-dark{ color:var(--gold-dark); border-color:rgba(168,120,31,0.35); background:rgba(212,175,55,0.08); }
.hero-text h1{
  font-size:clamp(32px, 4.4vw, 52px);
  margin-bottom:22px;
  color:#f7f2e4;
}
.gold-text{
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-desc{
  color:#c9c1b0;
  font-size:17px;
  max-width:520px;
  margin-bottom:34px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-visual{ display:flex; justify-content:center; }
.hero-diamond{
  width:min(360px, 80vw);
  filter: drop-shadow(0 20px 40px rgba(212,175,55,0.15));
  animation: float 5s ease-in-out infinite;
}
@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-14px); }
}

/* ===== Section head ===== */
.section-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 56px;
}
.section-head h2{ font-size:clamp(26px,3.4vw,38px); margin:14px 0 16px; color:var(--text-dark); }
.section-head p{ color:var(--text-muted); font-size:16px; }
.light-title{ color:#f7f2e4 !important; }

/* ===== Services ===== */
.services{ padding:100px 0; background:var(--cream); }
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:24px;
}
.service-card{
  background:#fff;
  border:1px solid var(--border-light);
  border-radius:var(--radius);
  padding:32px 26px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:rgba(212,175,55,0.4);
}
.service-icon{
  width:56px; height:56px;
  border-radius:14px;
  background:linear-gradient(135deg, #211b16, var(--black));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  color:var(--gold);
}
.service-icon svg{ width:28px; height:28px; }
.service-card h3{ font-size:18px; margin-bottom:10px; color:var(--text-dark); }
.service-card p{ font-size:14.5px; color:var(--text-muted); }

/* ===== About ===== */
.about{ padding:100px 0; background:#fff; }
.about-inner{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:64px;
  align-items:center;
}
.about-frame{
  background: radial-gradient(circle at 40% 30%, #211b16, var(--black));
  border-radius:24px;
  padding:40px;
  box-shadow:var(--shadow-lg);
}
.about-svg{ width:100%; height:auto; }
.about-text p{ color:var(--text-muted); margin-bottom:18px; font-size:15.5px; }
.about-points{ display:grid; grid-template-columns:1fr 1fr; gap:12px 20px; margin:24px 0 28px; }
.about-points li{ display:flex; align-items:center; gap:10px; font-weight:600; font-size:14.5px; color:var(--text-dark); }
.about-points i{ width:18px; height:18px; background-color:var(--gold-dark); flex:none; }
.leader-card{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:14px 22px 14px 14px;
  background: var(--cream);
  border:1px solid var(--border-light);
  border-radius:100px;
}
.leader-avatar{
  width:44px; height:44px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color:#211b16;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-family:var(--ff-head);
  flex:none;
}
.leader-card h4{ font-size:15px; margin-bottom:2px; }
.leader-card span{ font-size:13px; color:var(--text-muted); }

/* ===== Why ===== */
.why{ padding:100px 0; background:var(--black); }
.why .section-head p{ color:#b9b3a6; }
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.why-card{
  background: var(--black-card);
  border:1px solid rgba(212,175,55,0.15);
  border-radius:var(--radius);
  padding:32px 26px;
  transition: transform .3s, border-color .3s;
}
.why-card:hover{ transform:translateY(-6px); border-color:rgba(212,175,55,0.5); }
.why-num{
  font-family:var(--ff-head);
  font-size:34px;
  font-weight:800;
  background:linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom:12px;
}
.why-card h3{ color:#f4efe2; font-size:19px; margin-bottom:10px; }
.why-card p{ color:#a49d8e; font-size:14.5px; }

/* ===== CTA strip ===== */
.cta-strip{
  background:linear-gradient(120deg, var(--gold-dark), var(--gold) 50%, var(--gold-light));
  padding:44px 0;
}
.cta-strip-inner{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
}
.cta-strip h2{ color:#211b16; font-size:clamp(20px,2.6vw,28px); }
.cta-strip .btn-dark i{ width:18px; height:18px; background-color:var(--gold-light); }

/* ===== Contact ===== */
.contact{ padding:100px 0 60px; background:var(--cream); }
.contact-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap:48px;
  margin-bottom:48px;
}
.contact-info{ display:flex; flex-direction:column; gap:22px; }
.contact-item{ display:flex; gap:16px; align-items:flex-start; }
.contact-icon{
  width:48px; height:48px; flex:none;
  border-radius:12px;
  background:linear-gradient(135deg, #211b16, var(--black));
  display:flex; align-items:center; justify-content:center;
}
.contact-icon i{ width:20px; height:20px; background-color:var(--gold); }
.contact-item h4{ font-size:14px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-bottom:4px; }
.contact-item a, .contact-item span{ font-size:16px; font-weight:600; color:var(--text-dark); }
.contact-item a:hover{ color:var(--gold-dark); }

.contact-form{
  background:#fff;
  border:1px solid var(--border-light);
  border-radius:var(--radius);
  padding:32px;
  display:flex;
  flex-direction:column;
  gap:16px;
  box-shadow:var(--shadow);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact-form input, .contact-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--border-light);
  border-radius:10px;
  font-family:var(--ff-body);
  font-size:14.5px;
  background:var(--cream);
  resize:vertical;
  transition:border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus{
  outline:none;
  border-color:var(--gold);
}
.contact-form button{ align-self:flex-start; margin-top:4px; }

.map-wrap{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--border-light);
  filter: grayscale(0.15) contrast(1.05);
}

/* ===== Footer ===== */
.footer{ background:var(--black); color:#a49d8e; padding-top:70px; }
.footer-inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(212,175,55,0.12);
}
.footer-logo{ height:38px; margin-bottom:16px; }
.footer-brand p{ font-size:14px; line-height:1.7; max-width:280px; }
.footer-col h4{ color:#f4efe2; font-size:15px; margin-bottom:18px; }
.footer-col{ display:flex; flex-direction:column; gap:11px; font-size:14px; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-bottom{ padding:22px 0; text-align:center; font-size:13px; color:#7a7365; }

/* ===== WhatsApp float ===== */
.whatsapp-float{
  position:fixed; bottom:26px; right:26px; z-index:200;
  width:58px; height:58px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(37,211,102,0.45);
  animation: pulse 2.4s infinite;
}
.whatsapp-float i{ width:28px; height:28px; background-color:#fff; }
.whatsapp-float:hover{ transform:scale(1.08); }
@keyframes pulse{
  0%{ box-shadow:0 10px 26px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70%{ box-shadow:0 10px 26px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow:0 10px 26px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== Icons (mask-based, inherit currentColor via background-color) ===== */
i[class^="ic-"]{ display:inline-block; mask-repeat:no-repeat; mask-position:center; mask-size:contain; -webkit-mask-repeat:no-repeat; -webkit-mask-position:center; -webkit-mask-size:contain; }
.ic-phone{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.ic-pin{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.ic-mail{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E"); }
.ic-check{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.ic-whatsapp{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.48 1.32 5L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2zm0 18.06h-.01a8.2 8.2 0 0 1-4.19-1.15l-.3-.18-3.12.82.83-3.04-.2-.31a8.19 8.19 0 0 1-1.26-4.29c0-4.54 3.7-8.24 8.25-8.24 2.2 0 4.27.86 5.83 2.42a8.18 8.18 0 0 1 2.41 5.83c0 4.55-3.7 8.24-8.24 8.24zm4.52-6.16c-.25-.12-1.47-.72-1.7-.81-.23-.08-.39-.12-.56.12-.17.25-.64.81-.78.97-.14.17-.29.19-.54.06-.25-.12-1.04-.38-1.99-1.22-.74-.66-1.23-1.47-1.38-1.72-.14-.25-.02-.38.11-.51.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.56-1.35-.77-1.85-.2-.48-.41-.42-.56-.42-.14 0-.31-.01-.47-.01-.17 0-.43.06-.66.31-.23.25-.86.85-.86 2.07 0 1.22.89 2.4 1.01 2.57.12.17 1.75 2.67 4.24 3.74.59.26 1.06.41 1.42.53.6.19 1.14.16 1.57.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.08.14-1.18-.06-.1-.23-.16-.48-.28z'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.48 1.32 5L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2zm0 18.06h-.01a8.2 8.2 0 0 1-4.19-1.15l-.3-.18-3.12.82.83-3.04-.2-.31a8.19 8.19 0 0 1-1.26-4.29c0-4.54 3.7-8.24 8.25-8.24 2.2 0 4.27.86 5.83 2.42a8.18 8.18 0 0 1 2.41 5.83c0 4.55-3.7 8.24-8.24 8.24zm4.52-6.16c-.25-.12-1.47-.72-1.7-.81-.23-.08-.39-.12-.56.12-.17.25-.64.81-.78.97-.14.17-.29.19-.54.06-.25-.12-1.04-.38-1.99-1.22-.74-.66-1.23-1.47-1.38-1.72-.14-.25-.02-.38.11-.51.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.56-1.35-.77-1.85-.2-.48-.41-.42-.56-.42-.14 0-.31-.01-.47-.01-.17 0-.43.06-.66.31-.23.25-.86.85-.86 2.07 0 1.22.89 2.4 1.01 2.57.12.17 1.75 2.67 4.24 3.74.59.26 1.06.41 1.42.53.6.19 1.14.16 1.57.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.08.14-1.18-.06-.1-.23-.16-.48-.28z'/%3E%3C/svg%3E"); }
.ic-instagram{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E"); }

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .about-inner{ grid-template-columns:1fr; }
  .about-frame{ max-width:420px; margin:0 auto; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 780px){
  .nav{
    position:fixed; top:0; right:0; height:100vh; width:78%; max-width:320px;
    background:var(--black-soft);
    flex-direction:column; gap:0;
    padding:100px 32px 32px;
    transform:translateX(100%);
    transition:transform .35s ease;
    z-index:99;
  }
  .nav.open{ transform:translateX(0); }
  .nav a{ padding:14px 0; border-bottom:1px solid rgba(212,175,55,0.1); width:100%; }
  .nav-toggle{ display:flex; }
  .header-cta{ display:none; }
  .topbar-inner{ justify-content:center; text-align:center; }
  .topbar-left{ justify-content:center; }
  .hero-inner{ grid-template-columns:1fr; text-align:center; }
  .hero-desc{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }
  .hero-visual{ order:-1; }
  .services-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .about-points{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr; text-align:left; }
  .cta-strip-inner{ justify-content:center; text-align:center; }
}
