:root {
  --gold: #f2b51d;
  --gold-dark: #d89c08;
  --black: #0a0a0a;
  --charcoal: #171717;
  --ink: #111111;
  --muted: #666666;
  --line: #e7e7e7;
  --white: #ffffff;
  --soft: #f7f7f5;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-top: 5px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,.07);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: 235px; text-decoration: none; }
.brand img { width: 100%; height: 70px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { text-decoration: none; font-size: .92rem; font-weight: 700; transition: color .2s ease; }
.main-nav a:hover { color: var(--gold-dark); }
.main-nav .nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 12px 17px;
  border-radius: 4px;
  border-bottom: 3px solid var(--gold);
}
.main-nav .nav-cta:hover { color: var(--gold); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { width: 28px; height: 3px; background: var(--black); display: block; margin: 5px 0; border-radius: 99px; }

/* Hero */
.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  background: url("assets/hero1.png") center 58% / cover no-repeat;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: var(--gold);
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.82) 42%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.54));
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 720px) 1fr; }
.hero-copy { color: var(--white); padding: 78px 0 86px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.dark-text { color: #9a6b00; }
.hero h1,
.section h2,
.cta-section h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: -.025em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 7vw, 6.7rem);
  font-style: italic;
  font-weight: 800;
  max-width: 760px;
}
.hero h1 span { color: var(--gold); }
.hero-text { max-width: 650px; margin: 25px 0 0; color: rgba(255,255,255,.84); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: #ffc938; }
.btn-outline { border-color: rgba(255,255,255,.75); color: var(--white); background: rgba(0,0,0,.18); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 34px; }
.hero-points span { position: relative; padding-left: 18px; font-size: .92rem; font-weight: 700; color: rgba(255,255,255,.9); }
.hero-points span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); position: absolute; left: 0; top: .55em; }

/* Promise strip */
.service-strip { background: var(--black); color: var(--white); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.strip-grid > div { display: flex; align-items: center; justify-content: center; gap: 13px; min-height: 96px; border-right: 1px solid #2f2f2f; }
.strip-grid > div:last-child { border-right: 0; }
.strip-grid strong { font-family: "Barlow Condensed", sans-serif; color: var(--gold); font-size: 1.6rem; }
.strip-grid span { font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; }

/* Generic sections */
.section { padding: 105px 0; }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section h2, .cta-section h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 800; }
.section-heading > p:last-child { color: var(--muted); margin: 18px auto 0; max-width: 650px; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--line); overflow: hidden; box-shadow: 0 15px 45px rgba(0,0,0,.07); }
.service-card.featured { border-top: 5px solid var(--gold); }
.service-image { height: 245px; overflow: hidden; background: #ddd; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-image img { transform: scale(1.045); }
.service-body { position: relative; padding: 28px 28px 31px; }
.service-number { position: absolute; right: 23px; top: 23px; font-family: "Barlow Condensed", sans-serif; font-size: 2.5rem; font-weight: 800; color: #efefef; }
.service-card h3 { position: relative; margin: 0 0 12px; padding-right: 54px; font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; font-size: 1.9rem; line-height: 1; }
.service-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* About */
.about-section { background: var(--soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.about-image-wrap { position: relative; min-height: 560px; }
.about-image-wrap > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); }
.about-image-wrap::before { content: ""; position: absolute; inset: -18px auto auto -18px; width: 120px; height: 120px; border-top: 7px solid var(--gold); border-left: 7px solid var(--gold); z-index: 2; }
.about-badge { position: absolute; right: -26px; bottom: 34px; z-index: 3; background: var(--black); color: var(--white); padding: 23px 34px; border-left: 7px solid var(--gold); box-shadow: 0 18px 45px rgba(0,0,0,.25); }
.about-badge span, .about-badge strong { display: block; font-family: "Barlow Condensed", sans-serif; line-height: .9; }
.about-badge span { font-size: 1.45rem; }
.about-badge strong { color: var(--gold); font-size: 2.8rem; font-style: italic; }
.about-copy h2 { margin-bottom: 20px; }
.about-copy > p:not(.eyebrow) { color: var(--muted); }
.about-list { display: grid; gap: 20px; margin-top: 30px; }
.about-list > div { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; }
.about-list > div > span { width: 32px; height: 32px; display: grid; place-items: center; background: var(--gold); border-radius: 50%; font-weight: 900; }
.about-list p { margin: 0; color: var(--muted); }
.about-list strong { color: var(--ink); }
.registration-card { margin-top: 32px; padding: 22px; display: grid; gap: 2px; border-left: 5px solid var(--gold); background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,.05); }
.registration-card small { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.registration-card strong { font-size: 1.25rem; }
.registration-card span { font-size: .9rem; color: var(--muted); }

/* Gallery */
.gallery-section { background: var(--black); color: var(--white); }
.section-heading-light > p:last-child { color: #a9a9a9; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 235px; gap: 13px; }
.gallery-item { margin: 0; overflow: hidden; position: relative; background: #222; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.08); pointer-events: none; }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(1.06); }
.gallery-wide { grid-column: span 2; }

/* CTA */
.cta-section { background: var(--gold); padding: 54px 0; }
.cta-card { display: flex; justify-content: space-between; align-items: center; gap: 35px; }
.cta-card h2 { max-width: 700px; font-size: clamp(2.5rem, 4vw, 3.6rem); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { color: var(--gold); }
.btn-white { background: var(--white); color: var(--black); }

/* Contact */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-copy h2 { margin-bottom: 18px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); max-width: 530px; }
.contact-details { display: grid; gap: 12px; margin-top: 30px; }
.contact-details > a, .contact-details > div { display: grid; grid-template-columns: 48px 1fr; gap: 13px; text-decoration: none; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--black); color: var(--gold); border-radius: 50%; font-weight: 800; }
.contact-details small, .contact-details strong { display: block; }
.contact-details small { color: var(--muted); text-transform: uppercase; font-size: .72rem; letter-spacing: .08em; font-weight: 700; }
.contact-details strong { margin-top: 2px; font-size: .98rem; overflow-wrap: anywhere; }
.contact-form { background: var(--soft); padding: 36px; border-top: 6px solid var(--gold); box-shadow: 0 17px 50px rgba(0,0,0,.08); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 17px; }
.contact-form label > span { font-size: .85rem; font-weight: 800; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #d7d7d7; background: var(--white); color: var(--ink); padding: 13px 14px; border-radius: 2px; outline: none; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(242,181,29,.16); }
.form-submit { width: 100%; border: 0; margin-top: 3px; }
.form-note { margin: 10px 0 0; text-align: center; color: var(--muted); font-size: .78rem; }

/* Footer */
footer { background: #050505; color: var(--white); border-top: 1px solid #222; padding: 55px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px 45px; align-items: center; }
.footer-brand img { width: 210px; height: 100px; object-fit: contain; object-position: left center; background: #fff; padding: 5px; }
.footer-brand p { margin: 12px 0 0; color: #a9a9a9; font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: #d4d4d4; text-decoration: none; font-size: .88rem; font-weight: 600; }
.footer-links a:hover { color: var(--gold); }
.copyright { grid-column: 1 / -1; border-top: 1px solid #202020; padding-top: 24px; margin: 5px 0 0; color: #777; font-size: .8rem; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  border: 3px solid #fff;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 91px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(0,0,0,.12);
    padding: 10px 20px 20px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 5px; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 12px; text-align: center; border-bottom: 3px solid var(--gold); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 12px); margin-inline: auto; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 52px; }
  .about-image-wrap { min-height: 500px; }
  .about-badge { right: 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand { width: 190px; }
  .brand img { height: 62px; }
  .nav-wrap { min-height: 78px; }
  .main-nav { top: 83px; }
  .hero { min-height: 620px; background-position: 64% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.7)); }
  .hero-copy { padding: 70px 0 75px; }
  .hero h1 { font-size: clamp(3.4rem, 16vw, 5rem); }
  .hero-text { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; gap: 8px; }
  .strip-grid { grid-template-columns: 1fr; padding: 10px 0; }
  .strip-grid > div { min-height: 65px; border-right: 0; border-bottom: 1px solid #2f2f2f; justify-content: flex-start; padding-inline: 12px; }
  .strip-grid > div:last-child { border-bottom: 0; }
  .section { padding: 80px 0; }
  .section-heading { margin-bottom: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; max-width: none; }
  .service-image { height: 225px; }
  .about-image-wrap { min-height: 390px; }
  .about-image-wrap::before { inset: -10px auto auto -10px; width: 82px; height: 82px; border-width: 5px; }
  .about-badge { right: 12px; bottom: 18px; padding: 17px 22px; }
  .about-badge strong { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 235px; }
  .gallery-wide { grid-column: auto; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 15px 20px; }
  .copyright { grid-column: auto; }
}
