/* ==========================================================================
   Ant Projects — shared design system
   ========================================================================== */

:root{
  --black:#0e0f0d;
  --black-soft:#171815;
  --orange-600:#f2690a;
  --orange-700:#cc5606;
  --orange-100:#fdead9;
  --whatsapp:#25D366;
  --whatsapp-dark:#1ebc59;
  --ink:#141414;
  --body-text:#5c5d59;
  --light-bg:#f6f6f4;
  --border:#e8e8e5;
  --shadow:0 16px 40px rgba(0,0,0,.10);
  --radius-lg:18px;
  --radius-md:12px;
  --radius-sm:8px;
  --ease:cubic-bezier(.4,0,.2,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--body-text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,h5{ font-family:'Poppins',sans-serif; color:var(--ink); margin:0; line-height:1.15; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
.container{ max-width:1200px; margin:0 auto; padding:0 24px; }

/* -------------------- Buttons -------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-weight:700; font-size:14px; letter-spacing:.02em;
  padding:14px 26px; border-radius:var(--radius-sm);
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  border:2px solid transparent; white-space:nowrap;
}
.btn svg{ width:16px; height:16px; flex-shrink:0; }
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--orange-600); color:#fff; box-shadow:0 10px 24px rgba(242,105,10,.35); }
.btn-primary:hover{ background:var(--orange-700); }
.btn-whatsapp{ background:var(--whatsapp); color:#fff; box-shadow:0 10px 24px rgba(37,211,102,.3); }
.btn-whatsapp:hover{ background:var(--whatsapp-dark); }
.btn-outline-dark{ border-color:rgba(255,255,255,.35); color:#fff; background:transparent; }
.btn-outline-dark:hover{ background:rgba(255,255,255,.08); }
.btn-dark{ background:var(--black); color:#fff; }
.btn-dark:hover{ background:#000; }
.btn-block{ width:100%; }

/* -------------------- Utility bar -------------------- */
.utility-bar{ background:var(--black); color:#cfcfca; font-size:12px; padding:8px 0; }
.utility-bar .container{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:8px; }
.utility-left{ display:flex; align-items:center; gap:8px; font-weight:600; }
.utility-left svg{ width:14px; height:14px; color:var(--orange-600); }
.utility-right{ display:none; align-items:center; gap:22px; }
@media (min-width:760px){ .utility-right{ display:flex; } }
.utility-right span{ display:flex; align-items:center; gap:6px; }
.utility-right svg{ width:13px; height:13px; color:var(--orange-600); }

/* -------------------- Header -------------------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; padding-top:14px; padding-bottom:14px; gap:18px; }
.brand{ display:flex; align-items:center; gap:10px; color:var(--ink); flex-shrink:0; }
.brand-mark{ width:34px; height:auto; flex-shrink:0; object-fit:contain; display:block; }
.brand-text{ line-height:1.05; }
.brand-name{ font-family:'Poppins',sans-serif; font-weight:800; font-size:19px; letter-spacing:.01em; }
.brand-name .hl{ color:var(--orange-600); }
.brand-tag{ display:block; font-size:10px; color:#8a8a86; margin-top:2px; }

.nav-links{ display:none; align-items:center; gap:28px; }
@media (min-width:960px){ .nav-links{ display:flex; } }
.nav-links a{
  font-size:14px; font-weight:600; color:#3a3a38; padding:6px 0; position:relative;
}
.nav-links a.active, .nav-links a:hover{ color:var(--orange-600); }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:var(--orange-600);
}

.nav-actions{ display:none; align-items:center; gap:12px; }
@media (min-width:1180px){ .nav-actions{ display:flex; } }
.nav-whatsapp{
  display:flex; align-items:center; gap:8px; background:var(--black);
  color:#fff; padding:10px 18px; border-radius:var(--radius-sm); font-size:13px; font-weight:700;
}
.nav-whatsapp svg{ width:16px; height:16px; color:var(--whatsapp); }
.nav-call{ text-align:right; }
.nav-call .btn{ padding:10px 20px; }
.nav-call span{ display:block; font-size:11px; color:#8a8a86; margin-top:4px; text-align:center; }

.nav-toggle{
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:8px; border:1px solid var(--border);
  background:transparent; color:var(--ink);
}
@media (min-width:960px){ .nav-toggle{ display:none; } }
.nav-toggle svg{ width:20px; height:20px; }

.mobile-menu{
  max-height:0; overflow:hidden; background:#fff;
  transition:max-height .3s var(--ease);
  border-top:1px solid var(--border);
}
.mobile-menu.open{ max-height:420px; }
.mobile-menu-inner{ display:flex; flex-direction:column; gap:4px; padding:16px 24px 24px; }
.mobile-menu-inner a{ color:#3a3a38; font-weight:600; padding:12px 0; border-bottom:1px solid var(--border); }
.mobile-menu-inner a.active{ color:var(--orange-600); }
.mobile-menu-inner .btn{ margin-top:14px; }
@media (min-width:960px){ .mobile-menu{ display:none; } }

/* -------------------- Hero -------------------- */
.hero{ background:var(--black); position:relative; overflow:hidden; }
.hero-grid{
  display:grid; grid-template-columns:1fr; gap:36px; align-items:center;
  padding-top:56px; padding-bottom:64px;
}
@media (min-width:900px){ .hero-grid{ grid-template-columns:1.05fr .95fr; padding-top:76px; padding-bottom:88px; gap:40px; } }
.eyebrow{ display:inline-block; font-size:12.5px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:var(--orange-600); margin-bottom:12px; }
.hero-title{ font-size:32px; font-weight:800; color:#fff; letter-spacing:-.01em; }
@media (min-width:600px){ .hero-title{ font-size:42px; } }
@media (min-width:1100px){ .hero-title{ font-size:46px; } }
.hero-title .hl{ text-decoration:underline; text-decoration-color:var(--orange-600); text-underline-offset:6px; }
.hero-sub{ margin-top:18px; font-size:16px; color:#b9b9b4; max-width:480px; line-height:1.65; }
.hero-actions{ margin-top:28px; display:flex; flex-wrap:wrap; gap:14px; }
.hero-media{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 30px 70px rgba(0,0,0,.5); }
.hero-media img{ width:100%; height:100%; object-fit:cover; }

/* -------------------- Trust bar -------------------- */
.trust-bar{ background:var(--black-soft); padding:26px 0; border-top:1px solid rgba(255,255,255,.06); }
.trust-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; text-align:center; }
@media (min-width:900px){ .trust-grid{ grid-template-columns:repeat(5,1fr); text-align:left; } }
.trust-item{ display:flex; flex-direction:column; align-items:center; gap:8px; color:#e4e4e1; }
@media (min-width:900px){ .trust-item{ align-items:flex-start; } }
.trust-icon{ color:var(--orange-600); }
.trust-icon svg{ width:26px; height:26px; }
.trust-item h5{ color:#fff; font-size:13px; font-weight:700; margin:0; }
.trust-item p{ font-size:11.5px; color:#9a9a96; margin-top:2px; }

/* -------------------- Section heading -------------------- */
.section-head{ text-align:center; max-width:640px; margin:0 auto 44px; }
.section-title{ font-size:26px; font-weight:800; margin-top:8px; }
@media (min-width:700px){ .section-title{ font-size:32px; } }
.section{ padding:72px 0; }
.section-alt{ background:var(--light-bg); }

/* -------------------- Services grid (photo cards) -------------------- */
.services-grid{ display:grid; grid-template-columns:1fr; gap:22px; }
@media (min-width:640px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:980px){ .services-grid{ grid-template-columns:repeat(4,1fr); } }
.service-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg);
  overflow:hidden; transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.service-photo{ position:relative; aspect-ratio:4/3; overflow:visible; }
.service-photo img{ width:100%; height:100%; object-fit:cover; }
.service-icon{
  position:absolute; bottom:-20px; left:20px; z-index:2;
  width:44px; height:44px; border-radius:50%; background:var(--orange-600); color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 8px 18px rgba(0,0,0,.25); flex-shrink:0;
}
.service-icon svg{ width:20px; height:20px; }
.service-body{ padding:32px 20px 22px; }
.service-card h3{ font-size:16.5px; font-weight:700; margin-bottom:8px; }
.service-card p{ font-size:13.5px; line-height:1.55; }
.service-link{ display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-weight:700; font-size:12.5px; color:var(--orange-600); text-transform:uppercase; letter-spacing:.04em; }
.service-link svg{ width:13px; height:13px; transition:transform .2s var(--ease); }
.service-card:hover .service-link svg{ transform:translateX(4px); }

/* -------------------- Recent work gallery -------------------- */
.gallery-head{ display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:32px; }
.gallery-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
@media (min-width:760px){ .gallery-grid{ grid-template-columns:repeat(5,1fr); } }
.gallery-card{ border-radius:var(--radius-md); overflow:hidden; aspect-ratio:1/1; box-shadow:var(--shadow); }
.gallery-card img{ width:100%; height:100%; object-fit:cover; transition:transform .4s var(--ease); }
.gallery-card:hover img{ transform:scale(1.08); }

/* -------------------- Testimonials -------------------- */
.testi-grid{ display:grid; grid-template-columns:1fr; gap:24px; }
@media (min-width:760px){ .testi-grid{ grid-template-columns:repeat(3,1fr); } }
.testi-card{ background:#fff; border-radius:var(--radius-lg); padding:28px; border:1px solid var(--border); }
.testi-stars{ color:var(--orange-600); letter-spacing:2px; font-size:14px; margin-bottom:14px; }
.testi-card p{ font-size:14px; color:var(--ink); line-height:1.6; }
.testi-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:18px; }
.testi-name{ font-weight:700; color:var(--ink); font-size:13.5px; }
.testi-loc{ font-size:12px; color:var(--body-text); }
.testi-foot svg{ width:20px; height:20px; }

/* -------------------- CTA bar -------------------- */
.cta-bar{ background:var(--orange-600); position:relative; overflow:hidden; }
.cta-bar-inner{
  padding-top:28px; padding-bottom:28px; display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:20px;
}
.cta-left{ display:flex; align-items:center; gap:16px; color:#fff; }
.cta-icon{
  width:50px; height:50px; border-radius:50%; background:#fff; color:var(--orange-600);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.cta-icon svg{ width:22px; height:22px; }
.cta-left h3{ color:#fff; font-size:18px; font-weight:800; }
.cta-left p{ font-size:13px; color:rgba(255,255,255,.85); margin-top:2px; }
.cta-actions{ display:flex; flex-wrap:wrap; align-items:center; gap:14px; }
.cta-phone{ color:#fff; font-size:19px; font-weight:800; display:flex; align-items:center; gap:10px; }
.cta-phone svg{ width:20px; height:20px; }

/* -------------------- Footer -------------------- */
.site-footer{ background:var(--black); color:#9a9a96; padding-top:60px; }
.footer-grid{ display:grid; grid-template-columns:1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.08); }
@media (min-width:760px){ .footer-grid{ grid-template-columns:1.3fr 1fr 1fr 1.1fr; } }
.footer-brand .brand{ margin-bottom:14px; color:#fff; }
.footer-brand .brand-name{ color:#fff; }
.footer-brand p{ font-size:13.5px; line-height:1.7; max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center; color:#fff;
}
.footer-social a:hover{ background:var(--orange-600); border-color:var(--orange-600); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h5{ color:#fff; font-size:13px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; margin-bottom:18px; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col ul a{ font-size:13.5px; color:#9a9a96; }
.footer-col ul a:hover{ color:#fff; }
.footer-contact li{ display:flex; align-items:flex-start; gap:10px; font-size:13.5px; }
.footer-contact svg{ width:15px; height:15px; color:var(--orange-600); flex-shrink:0; margin-top:2px; }
.footer-bottom{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px; padding:22px 0; font-size:12.5px; color:#77776f; }

/* -------------------- About page -------------------- */
.page-hero{ background:var(--black); position:relative; }
.page-hero-media{ position:relative; height:340px; overflow:hidden; }
.page-hero-media img{ width:100%; height:100%; object-fit:cover; }
.page-hero-media::after{ content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(14,15,13,.92) 0%, rgba(14,15,13,.55) 55%, rgba(14,15,13,.15) 100%); }
.page-hero-copy{ position:absolute; inset:0; display:flex; align-items:center; }
.page-hero-copy .container{ width:100%; }
.page-hero-copy .inner{ max-width:560px; }
.page-hero-title{ font-size:30px; font-weight:800; color:#fff; letter-spacing:-.01em; }
@media (min-width:600px){ .page-hero-title{ font-size:40px; } }
.page-hero-title .hl{ color:var(--orange-600); }
.page-hero-copy p{ margin-top:16px; font-size:14.5px; color:#c9c9c5; line-height:1.6; max-width:460px; }

.split-2{ display:grid; grid-template-columns:1fr; gap:44px; }
@media (min-width:900px){ .split-2{ grid-template-columns:1fr 1fr; align-items:center; } }
.mini-eyebrow{ font-size:12px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:var(--orange-600); margin-bottom:10px; }
.split-2 h3{ font-size:26px; font-weight:800; margin-bottom:6px; }
.split-2 .underline{ width:44px; height:3px; background:var(--orange-600); border-radius:2px; margin-bottom:18px; }
.split-2 p + p{ margin-top:14px; }
.split-2 p{ font-size:14.5px; line-height:1.7; }
.about-photo-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:12px; }
.about-photo-grid .tall{ grid-row:span 2; border-radius:var(--radius-md); overflow:hidden; }
.about-photo-grid .tall img{ width:100%; height:100%; object-fit:cover; }
.about-photo-grid .small{ border-radius:var(--radius-md); overflow:hidden; aspect-ratio:4/3; }
.about-photo-grid .small img{ width:100%; height:100%; object-fit:cover; }
.about-photo-col{ display:flex; flex-direction:column; gap:12px; }

.mission-bar{
  margin-top:60px; background:var(--black); border-radius:var(--radius-lg);
  padding:30px 32px; display:flex; align-items:center; gap:24px; flex-wrap:wrap;
}
.mission-icon{
  width:56px; height:56px; border-radius:50%; background:rgba(255,255,255,.08); color:var(--orange-600);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.mission-icon svg{ width:26px; height:26px; }
.mission-bar h4{ color:var(--orange-600); font-size:13px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; margin-bottom:6px; }
.mission-bar p{ color:#e4e4e1; font-size:14.5px; line-height:1.6; max-width:640px; }

.values-grid{ display:grid; grid-template-columns:1fr; gap:22px; margin-top:44px; }
@media (min-width:640px){ .values-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:960px){ .values-grid{ grid-template-columns:repeat(4,1fr); } }
.value-card{ background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 20px; text-align:center; }
.value-icon{
  width:52px; height:52px; border-radius:50%; background:var(--orange-100); color:var(--orange-600);
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px;
}
.value-icon svg{ width:24px; height:24px; }
.value-card h4{ font-size:15px; font-weight:800; }
.value-card p{ margin-top:8px; font-size:13px; line-height:1.55; }

.team-areas-grid{ display:grid; grid-template-columns:1fr; gap:44px; margin-top:60px; }
@media (min-width:900px){ .team-areas-grid{ grid-template-columns:1.3fr 1fr; } }
.team-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:24px; }
@media (min-width:560px){ .team-grid{ grid-template-columns:repeat(4,1fr); } }
.team-card{ text-align:center; }
.team-photo{ border-radius:var(--radius-md); overflow:hidden; aspect-ratio:1/1; margin-bottom:12px; }
.team-photo img{ width:100%; height:100%; object-fit:cover; }
.team-card h4{ font-size:13.5px; font-weight:700; }
.team-card p{ margin-top:6px; font-size:12px; line-height:1.5; }

.areas-list{ display:grid; grid-template-columns:1fr; gap:4px; margin-top:20px; }
.areas-list li{ display:flex; align-items:center; gap:10px; font-size:14px; color:var(--ink); padding:7px 0; border-bottom:1px solid var(--border); }
.areas-list svg{ width:16px; height:16px; color:var(--orange-600); flex-shrink:0; }

/* -------------------- Contact page -------------------- */
.contact-cta{ background:var(--orange-600); }
.contact-cta .cta-bar-inner{ padding-top:24px; padding-bottom:24px; }

.contact-grid{ display:grid; grid-template-columns:1fr; gap:24px; margin-top:0; align-items:start; }
@media (min-width:960px){ .contact-grid{ grid-template-columns:.85fr 1.15fr 1fr; } }
.contact-info-panel{ background:var(--black); border-radius:var(--radius-lg); padding:32px 26px; color:#fff; }
.contact-info-panel .eyebrow{ margin-bottom:14px; }
.info-row{ display:flex; align-items:center; gap:14px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.info-row:last-child{ border-bottom:0; }
.info-row-icon{
  width:40px; height:40px; border-radius:50%; background:var(--orange-600); color:#fff;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; line-height:0;
}
.info-row-icon svg{ width:18px; height:18px; display:block; stroke:#fff !important; fill:none; }
.info-row-icon svg[fill="currentColor"]{ fill:#fff !important; }
.info-row h4{ font-size:13.5px; font-weight:700; color:#fff; }
.info-row strong{ display:block; font-size:15px; color:#fff; margin-top:2px; }
.info-row span{ font-size:12px; color:#9a9a96; margin-top:2px; display:block; }

.form-panel{ background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px 26px; }
.form-panel .eyebrow{ margin-bottom:18px; display:block; }
.form-row{ display:grid; grid-template-columns:1fr; gap:14px; margin-bottom:14px; }
@media (min-width:520px){ .form-row{ grid-template-columns:1fr 1fr; } }
.field input, .field select, .field textarea{
  width:100%; border:1px solid var(--border); border-radius:var(--radius-sm); padding:13px 15px;
  font-family:inherit; font-size:14px; color:var(--ink); background:#fff;
}
.field textarea{ resize:vertical; min-height:110px; margin-bottom:16px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:2px solid var(--orange-600); outline-offset:1px; }
.form-note-inline{ margin-top:14px; font-size:12px; color:var(--body-text); }

.map-panel .map-frame{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); height:230px; }
.map-panel .map-frame iframe{ width:100%; height:100%; border:0; }
.map-panel .map-address{
  margin-top:14px; background:#fff; border:1px solid var(--border); border-radius:var(--radius-md);
  padding:16px 18px; font-size:13px; color:var(--ink); font-weight:600; line-height:1.5;
}

/* -------------------- FAQ -------------------- */
.faq-grid{ display:grid; grid-template-columns:1fr; gap:14px; }
@media (min-width:800px){ .faq-grid{ grid-template-columns:1fr 1fr; } }
.faq-item{ background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:18px 20px; font-size:14.5px; font-weight:700; color:var(--ink); background:none; border:0; text-align:left;
}
.faq-q svg{ width:18px; height:18px; color:var(--orange-600); flex-shrink:0; transition:transform .25s var(--ease); }
.faq-item.open .faq-q svg{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s var(--ease); }
.faq-item.open .faq-a{ max-height:200px; }
.faq-a-inner{ padding:0 20px 18px; font-size:13.5px; line-height:1.6; }
