:root {
  --red: #cf1418;
  --red-dark: #9e0c10;
  --navy: #062846;
  --navy-2: #0a3153;
  --gold: #e3a72c;
  --gold-dark: #b87d13;
  --cream: #f7f4ef;
  --white: #ffffff;
  --ink: #11151a;
  --muted: #5e646b;
  --line: #dedede;
  --shadow: 0 18px 48px rgba(3, 29, 51, 0.12);
  --radius: 26px;
  --body-font: "Inter", Arial, sans-serif;
  --display-font: "Barlow Condensed", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #dfe3e7;
  color: var(--ink);
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { border: 0; }
img { display: block; width: 100%; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.site-shell {
  position: relative;
  width: min(100%, 480px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 0 55px rgba(0,0,0,.13);
}

/* Shared */
.section { padding: 9px 10px; }
.section-card {
  padding: 25px 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(6,40,70,.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(3,29,51,.07);
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.section-kicker::after { content: ""; width: 45px; height: 1px; background: var(--gold); opacity: .75; }
.section-kicker b {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 15px;
}
.section-kicker.light { color: #fff; }
.section-kicker.light b { color: var(--navy); background: #fff; }
.section-kicker.light::after { background: rgba(255,255,255,.5); }
.section-title {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 38px;
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: -.015em;
}
.section-copy { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:active { transform: scale(.98); }
.button svg { width: 20px; height: 20px; }
.button-red { color: #fff; background: linear-gradient(180deg, #dd1b20, #bc0c10); box-shadow: 0 10px 24px rgba(207,20,24,.25); }
.button-gold { color: #1a2430; background: linear-gradient(135deg, #f4c55c, var(--gold)); box-shadow: 0 10px 24px rgba(227,167,44,.22); }
.button-outline-light { color: #fff; border: 2px solid rgba(255,255,255,.88); background: rgba(0,0,0,.22); backdrop-filter: blur(7px); }
.button-navy-outline { color: var(--navy); border: 1.5px solid var(--navy); background: #fff; }
.button-white { color: var(--navy); background: #fff; }
.button-whatsapp { color: #177e37; background: #fff; border: 1px solid #d2d8dc; }
.full-width { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 745px;
  overflow: hidden;
  background: #edf7ff;
  border-radius: 0 0 50% 50% / 0 0 8% 8%;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.18) 36%, transparent 54%);
}
.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 22px 8px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 225px; height: auto; }
.menu-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #111;
  background: transparent;
  cursor: pointer;
}
.menu-button svg { width: 35px; height: 35px; stroke-width: 2; }
.location-chip {
  position: relative;
  z-index: 4;
  width: max-content;
  max-width: 205px;
  margin: 14px 16px 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 11px;
  color: #161a20;
  background: rgba(255,255,255,.83);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
}
.location-chip svg { color: var(--red); width: 26px; height: 26px; fill: var(--red); stroke: var(--red); }
.hero-content {
  position: relative;
  z-index: 3;
  width: 69%;
  padding: 3px 24px 0;
}
.hero h1 {
  margin: 0;
  color: #070707;
  font-family: var(--display-font);
  font-size: clamp(51px, 13vw, 62px);
  line-height: .84;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  text-shadow: 0 2px 8px rgba(255,255,255,.85);
}
.hero h1 span { color: var(--red); }
.hero-content > p {
  width: 83%;
  margin: 22px 0 16px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
  text-shadow: 0 2px 3px rgba(0,0,0,.95), 0 4px 12px rgba(0,0,0,.65);
}
.hero-content > p strong { color: #ff443d; }
.hero-actions { width: min(235px, 100%); display: grid; gap: 8px; }
.hero-actions .button { min-height: 48px; font-size: 15px; }
.hero-actions .button { justify-content: flex-start; padding-left: 19px; }
.hero-proof {
  position: absolute;
  z-index: 4;
  left: 16px;
  right: 16px;
  bottom: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 15px 7px;
  color: #fff;
  background: rgba(8,8,9,.76);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  backdrop-filter: blur(12px);
}
.hero-proof div { display: grid; justify-items: center; gap: 7px; padding: 0 4px; text-align: center; border-right: 1px solid rgba(255,255,255,.28); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof svg { color: var(--red); width: 27px; height: 27px; }
.hero-proof span { font-family: var(--display-font); font-size: 12px; line-height: 1.12; font-weight: 700; text-transform: uppercase; }
.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
.scroll-cue svg { width: 36px; height: 36px; }

/* About */
.about-section { padding-top: 15px; }
.about-card { padding: 28px 17px 18px; }
.about-heading-row { position: relative; min-height: 250px; }
.about-heading-row > div:first-child { padding-right: 116px; }
.about-card h2 {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-family: var(--display-font);
  font-size: 55px;
  line-height: .92;
  text-transform: uppercase;
}
.about-card h2 span { color: var(--navy); }
.about-heading-row > div:first-child > p { margin: 0; color: #33383e; font-size: 14px; line-height: 1.55; }
.about-stats {
  position: absolute;
  top: -4px;
  right: 0;
  width: 108px;
  padding: 10px 9px;
  color: #fff;
  background: var(--navy);
  border-radius: 18px;
}
.about-stats > div { display: grid; grid-template-columns: 27px 1fr; align-items: center; gap: 6px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.about-stats > div:last-child { border-bottom: 0; }
.about-stats svg { color: var(--gold); width: 25px; height: 25px; }
.about-stats strong { display: inline-flex; gap: 1px; font-size: 22px; line-height: 1; }
.about-stats small { grid-column: 2; font-size: 10px; line-height: 1.25; }
.about-photo-wrap { margin: 15px -17px 0; overflow: hidden; }
.about-photo-wrap img { height: 330px; object-fit: cover; object-position: center; }
.trust-panel {
  position: relative;
  margin: -15px 0 0;
  padding: 25px 18px;
  display: grid;
  gap: 25px;
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -12px 32px rgba(0,0,0,.08);
}
.eyebrow { margin: 0 0 7px; color: var(--gold-dark); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.trust-panel h3 { margin: 0 0 20px; color: var(--navy); font-family: var(--display-font); font-size: 35px; line-height: .94; text-transform: uppercase; }
.trust-item { display: grid; grid-template-columns: 49px 1fr; gap: 11px; margin-top: 13px; }
.trust-icon { display: grid; place-items: center; width: 49px; height: 49px; color: var(--gold); background: var(--navy); border-radius: 13px; }
.trust-icon svg { width: 25px; height: 25px; }
.trust-item strong { color: var(--navy); font-size: 14px; }
.trust-item p { margin: 3px 0 0; color: #4f555c; font-size: 12px; line-height: 1.45; }
.trust-quote { padding-top: 8px; border-top: 1px solid #d8d8d8; }
.quote-mark { display: block; height: 35px; color: var(--gold); font-family: Georgia, serif; font-size: 70px; line-height: 1; }
.trust-quote blockquote { margin: 8px 0 18px; color: var(--navy); font-size: 23px; line-height: 1.38; font-style: italic; font-weight: 700; }
.trust-quote em { color: var(--gold-dark); }
.trust-quote p { margin: 0; color: #4e545a; font-size: 12px; line-height: 1.5; }
.about-actions { display: grid; gap: 9px; padding: 15px 0 0; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 22px; }
.service-grid article { min-height: 127px; padding: 13px 5px; display: grid; place-items: center; align-content: center; gap: 10px; text-align: center; border-right: 1px solid #e3e3e3; border-bottom: 1px solid #e3e3e3; }
.service-grid article:nth-child(3n) { border-right: 0; }
.service-grid article:nth-last-child(-n+3) { border-bottom: 0; }
.service-grid span { display: grid; place-items: center; width: 47px; height: 47px; color: var(--navy); background: #f9f5ea; border-radius: 14px; }
.service-grid svg { width: 29px; height: 29px; }
.service-grid h3 { margin: 0; color: var(--navy); font-size: 11px; line-height: 1.35; }
.text-link { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 22px; color: var(--navy); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.text-link span { font-size: 24px; color: var(--gold); }

/* Why */
.why-list { display: grid; gap: 12px; margin: 22px 0; }
.why-list div { display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 9px; color: #33383e; font-size: 13px; line-height: 1.4; }
.why-list span { display: grid; place-items: center; width: 22px; height: 22px; color: #fff; background: var(--gold); border-radius: 50%; }
.why-list svg { width: 14px; height: 14px; stroke-width: 2.4; }
.wide-image { height: 205px; object-fit: cover; border-radius: 16px; }

/* Projects */
.project-list { display: grid; gap: 13px; margin: 22px 0; }
.project-card { position: relative; height: 202px; overflow: hidden; border-radius: 16px; box-shadow: 0 11px 26px rgba(6,40,70,.13); }
.project-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(3,25,43,.92)); }
.project-card img { width: 100%; height: 100%; object-fit: cover; image-rendering: auto; }
.project-card div { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 14px; color: #fff; }
.project-card h3 { margin: 0 0 3px; font-family: var(--display-font); font-size: 25px; }
.project-card p { margin: 0; font-size: 12px; opacity: .9; }

/* Process */
.timeline { position: relative; display: grid; gap: 0; margin-top: 22px; }
.timeline::before { content: ""; position: absolute; top: 26px; bottom: 30px; left: 25px; width: 2px; background: linear-gradient(var(--gold), var(--navy)); opacity: .35; }
.timeline article { position: relative; display: grid; grid-template-columns: 51px 1fr; gap: 14px; padding-bottom: 21px; }
.timeline article:last-child { padding-bottom: 0; }
.timeline span { z-index: 1; display: grid; place-items: center; width: 51px; height: 51px; color: var(--navy); background: #fff8e8; border: 2px solid var(--gold); border-radius: 50%; font-family: var(--display-font); font-size: 18px; font-weight: 800; }
.timeline h3 { margin: 3px 0 5px; color: var(--navy); font-size: 14px; }
.timeline p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

/* Materials */
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.brand-grid div { min-height: 82px; display: grid; place-items: center; align-content: center; padding: 12px; background: #f7f7f7; border: 1px solid #ececec; border-radius: 13px; }
.brand-grid strong { color: var(--navy); font-size: 21px; font-style: italic; }
.brand-grid small { margin-top: 3px; color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.dark-cta { margin-top: -2px; padding: 34px 28px 31px; color: #fff; text-align: center; background: var(--navy); }
.cta-icon { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 13px; color: var(--gold); border: 1px solid rgba(227,167,44,.55); border-radius: 50%; }
.cta-icon svg { width: 30px; height: 30px; }
.dark-cta h2 { margin: 0; font-family: var(--display-font); font-size: 40px; line-height: .95; text-transform: uppercase; }
.dark-cta p { margin: 10px 0 22px; color: rgba(255,255,255,.8); font-size: 13px; }
.dark-cta .button + .button { margin-top: 9px; }

/* Testimonials */
.testimonial-viewport { overflow: hidden; margin-top: 8px; }
.testimonial-track { display: flex; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.testimonial-card { min-width: 100%; padding: 24px 18px; text-align: center; background: #f7f8fa; border-radius: 18px; }
.avatar { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 14px; color: #fff; background: linear-gradient(135deg, var(--navy), #376485); border-radius: 50%; font-size: 24px; font-weight: 800; }
.testimonial-card blockquote { margin: 0; color: #24282d; font-size: 15px; line-height: 1.65; }
.testimonial-card p { margin: 15px 0 0; color: var(--navy); font-size: 12px; font-weight: 800; }
.slider-controls { display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; gap: 10px; margin-top: 17px; }
.slider-arrow { display: grid; place-items: center; width: 38px; height: 38px; color: var(--navy); background: #eef1f4; border-radius: 50%; cursor: pointer; }
.slider-arrow svg { width: 19px; height: 19px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; }
.slider-dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; background: #c7cbd0; cursor: pointer; }
.slider-dot.active { width: 23px; border-radius: 99px; background: var(--gold); }

/* CTA & Contact */
.contact-cta { padding: 31px 25px; color: #fff; background: linear-gradient(145deg, #0a3153, #041d34); border-radius: 25px; box-shadow: var(--shadow); }
.contact-cta h2 { margin: 0 0 22px; font-family: var(--display-font); font-size: 38px; line-height: .98; text-transform: uppercase; }
.contact-cta .button + .button { margin-top: 9px; }
.contact-list { display: grid; gap: 18px; margin: 22px 0; }
.contact-list a { display: grid; grid-template-columns: 29px 1fr; align-items: start; gap: 13px; color: #2b3036; font-size: 14px; line-height: 1.5; }
.contact-list svg { color: var(--navy); width: 23px; height: 23px; }
.map-card { position: relative; display: block; overflow: hidden; border-radius: 15px; border: 1px solid #e1e4e8; }
.map-card iframe { display: block; width: 100%; height: 190px; border: 0; }
.map-card span { position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; align-items: center; gap: 6px; padding: 9px 11px; color: #fff; background: rgba(6,40,70,.88); border-radius: 9px; font-size: 11px; font-weight: 700; pointer-events: none; }
.map-card svg { color: #ffcc57; }
.follow-title { margin: 27px 0 14px; color: var(--navy); font-family: var(--display-font); font-size: 22px; text-transform: uppercase; }
.socials { display: flex; gap: 13px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; background: var(--navy); border-radius: 50%; font-weight: 800; }
.socials a:nth-child(2) { background: linear-gradient(135deg, #6c42d8, #ef3c66, #f6a52b); }
.socials a:nth-child(3) { background: #e82222; }

/* Footer */
.footer { position: relative; margin-top: 8px; padding: 39px 29px 46px; color: #fff; text-align: center; background: var(--navy); }
.brand-footer { justify-content: center; }
.brand-footer .brand-logo { width: 230px; }
.footer > p { margin: 18px 0 23px; color: rgba(255,255,255,.83); font-size: 13px; line-height: 1.6; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
.footer nav a { padding: 7px 12px; font-size: 11px; border-right: 1px solid rgba(255,255,255,.32); }
.footer nav a:nth-child(3n) { border-right: 0; }
.footer-rule { height: 1px; margin: 23px 0; background: rgba(255,255,255,.25); }
.footer > small { color: rgba(255,255,255,.66); font-size: 10px; line-height: 1.55; }
.back-top { position: absolute; right: 18px; bottom: 18px; display: grid; place-items: center; width: 45px; height: 45px; color: var(--navy); background: var(--gold); border-radius: 50%; }

/* Menu */
.menu-overlay { position: fixed; z-index: 90; inset: 0; background: rgba(0,0,0,.54); backdrop-filter: blur(4px); }
.mobile-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100dvh;
  padding: 24px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: var(--navy);
  transform: translateX(105%);
  transition: transform .32s ease;
  box-shadow: -20px 0 40px rgba(0,0,0,.25);
}
.mobile-menu.open { transform: translateX(0); }
.menu-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.18); font-family: var(--display-font); font-size: 30px; text-transform: uppercase; }
.menu-close { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; background: rgba(255,255,255,.08); border-radius: 50%; }
.menu-close svg { width: 24px; height: 24px; }
.mobile-menu nav { display: grid; margin: 19px 0 auto; }
.mobile-menu nav a { padding: 15px 2px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 16px; font-weight: 700; }

/* Sticky mobile actions */
.sticky-actions {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 0;
  width: min(100%, 480px);
  height: 64px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -7px 24px rgba(0,0,0,.16);
}
.sticky-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; color: #171717; background: #f0b232; font-family: var(--display-font); font-size: 18px; font-weight: 800; text-transform: uppercase; }
.sticky-actions a:last-child { color: #fff; background: #2db24a; }
.sticky-actions svg { width: 21px; height: 21px; }

/* Motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 481px) {
  body { padding-top: 22px; padding-bottom: 86px; }
  .site-shell { border-radius: 28px; }
  .hero { border-radius: 28px 28px 50% 50% / 28px 28px 8% 8%; }
}

@media (max-width: 370px) {
  .hero { min-height: 720px; }
  .hero h1 { font-size: 51px; }
  .hero-content { width: 74%; padding-left: 17px; }
  .hero-proof { left: 9px; right: 9px; }
  .hero-proof span { font-size: 10px; }
  .about-card h2 { font-size: 48px; }
  .service-grid h3 { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
