:root {
  --ink: #303136;
  --ink-2: #494a50;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --line: #dfe1e5;
  --magenta: #e9007f;
  --yellow: #ffe500;
  --cyan: #07a8d8;
  --green: #25d366;
  --shadow: 0 18px 50px rgba(28, 30, 35, .12);
  --radius: 22px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 20px; padding: 10px 14px; background: var(--ink); color: white; z-index: 1000; }
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223,225,229,.8);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 240px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .96rem; font-weight: 700; }
.main-nav a { text-decoration: none; }
.main-nav a:not(.nav-cta):hover { color: var(--magenta); }
.nav-cta { padding: 11px 18px; color: white; background: var(--ink); border-radius: 999px; }
.nav-cta:hover { background: var(--magenta); }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; background: none; border: 0; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { position: relative; overflow: hidden; padding: 76px 0 72px; background: linear-gradient(135deg, #fff 0%, #f6f7f8 56%, #eef8fb 100%); }
.hero::before { content: ""; position: absolute; width: 330px; height: 330px; left: -150px; top: 40px; background: var(--magenta); opacity: .06; border-radius: 50%; }
.hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -170px; bottom: -180px; background: var(--yellow); opacity: .2; border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 58px; }
.eyebrow { margin: 0 0 12px; color: var(--magenta); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 720px; margin: 0; font-size: clamp(2.7rem, 6vw, 5.2rem); }
h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { margin: 0 0 10px; font-size: 1.3rem; }
.hero-lead { max-width: 630px; margin: 24px 0 30px; color: var(--ink-2); font-size: clamp(1.08rem, 2vw, 1.27rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 850; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(31,31,35,.14); }
.button-primary { color: white; background: var(--magenta); }
.button-primary:hover { background: #c9006d; }
.button-secondary { color: var(--ink); background: white; border-color: var(--line); }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px; margin: 29px 0 0; padding: 0; list-style: none; color: var(--ink-2); font-weight: 750; font-size: .94rem; }
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--cyan); font-weight: 950; }
.hero-visual { position: relative; }
.hero-visual > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); }
.hero-badge { position: absolute; left: -24px; bottom: 24px; min-width: 190px; padding: 15px 18px; color: white; background: var(--ink); border-radius: 16px; box-shadow: var(--shadow); }
.hero-badge strong, .hero-badge span { display: block; }
.hero-badge span { color: #d7d8dc; font-size: .82rem; }

.audience-strip { padding: 18px 0; color: white; background: var(--ink); }
.audience-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; font-size: .9rem; font-weight: 800; }
.audience-list span { position: relative; }
.audience-list span:not(:last-child)::after { content: "•"; position: absolute; right: -17px; color: var(--yellow); }

.section { padding: 100px 0; }
.section-heading { max-width: 740px; margin-bottom: 42px; }
.section-heading > p:last-child { margin: 0; color: var(--ink-2); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 28px; background: var(--soft); border: 1px solid #eceef1; border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card p { margin: 0; color: var(--ink-2); }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 28px; color: white; border-radius: 13px; font-size: .82rem; font-weight: 950; }
.service-icon.magenta { background: var(--magenta); }
.service-icon.cyan { background: var(--cyan); }
.service-icon.yellow { color: var(--ink); background: var(--yellow); }
.service-icon.dark { background: var(--ink); }

.section-dark { color: white; background: #232428; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 68px; align-items: center; }
.about-image img { width: 100%; max-height: 650px; object-fit: cover; object-position: center; border-radius: 26px; }
.about-copy > p:not(.eyebrow):not(.appointment-note) { color: #cfd1d6; font-size: 1.08rem; }
.about-points { display: grid; gap: 18px; margin-top: 28px; }
.about-points div { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding-top: 18px; border-top: 1px solid #424349; }
.about-points strong { color: var(--yellow); }
.about-points span { color: #cfd1d6; }
.appointment-note { margin-top: 28px; padding: 16px 18px; color: #f8f8f8; background: rgba(7,168,216,.13); border-left: 4px solid var(--cyan); border-radius: 8px; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 215px; gap: 14px; }
.gallery-item { grid-column: span 4; padding: 0; overflow: hidden; background: #eee; border: 0; border-radius: 18px; }
.gallery-item.gallery-wide { grid-column: span 8; }
.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.045); }

.quote-section { background: #f5f6f8; }
.quote-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: start; }
.quote-copy > p:not(.eyebrow) { color: var(--ink-2); font-size: 1.06rem; }
.contact-card { margin-top: 30px; padding: 25px; background: white; border-radius: 18px; box-shadow: 0 10px 30px rgba(30,31,35,.07); }
.contact-card p { display: grid; grid-template-columns: 105px 1fr; gap: 18px; margin: 0; padding: 11px 0; border-bottom: 1px solid var(--line); }
.contact-card p:last-child { border-bottom: 0; }
.contact-card a { color: #007c9f; font-weight: 750; }
.quote-form { display: grid; gap: 18px; padding: 30px; background: white; border-radius: 24px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 7px; font-size: .9rem; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fafafa; border: 1px solid #d8dbe0; border-radius: 11px; outline: none; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(7,168,216,.15); }
.form-submit { width: 100%; border: 0; }
.form-note { margin: -6px 0 0; color: #6a6c72; text-align: center; font-size: .82rem; }

.location-section { padding: 78px 0; }
.location-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; align-items: center; }
.location-grid p:not(.eyebrow) { color: var(--ink-2); }
.location-grid iframe { width: 100%; height: 390px; border: 0; border-radius: 22px; box-shadow: var(--shadow); }
.text-link { color: #007c9f; font-weight: 850; text-decoration: none; }

.site-footer { padding: 55px 0 20px; color: #d9dade; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-grid img { width: 260px; padding: 10px; background: white; border-radius: 10px; }
.footer-grid p { max-width: 460px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid strong { color: white; margin-bottom: 8px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 35px; padding-top: 18px; color: #a9abb1; border-top: 1px solid #4b4c52; font-size: .86rem; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 40; display: grid; place-items: center; width: 58px; height: 58px; background: var(--green); border-radius: 50%; box-shadow: 0 12px 28px rgba(0,0,0,.22); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp svg { width: 31px; fill: white; }
.lightbox { max-width: min(92vw, 1050px); padding: 0; background: transparent; border: 0; overflow: visible; }
.lightbox::backdrop { background: rgba(0,0,0,.84); }
.lightbox img { max-width: 92vw; max-height: 85vh; border-radius: 14px; }
.lightbox-close { position: absolute; top: -43px; right: 0; width: 38px; height: 38px; color: white; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: 1.6rem; line-height: 1; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: 68px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .nav-cta { margin-top: 5px; text-align: center; }
  .hero { padding-top: 52px; }
  .hero-grid, .about-grid, .quote-grid, .location-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero-copy { text-align: left; }
  .hero-badge { left: 18px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-image img { max-height: 480px; }
  .about-grid { gap: 40px; }
  .gallery-item { grid-column: span 6; }
  .gallery-item.gallery-wide { grid-column: span 12; }
  .quote-grid { gap: 38px; }
  .location-grid { gap: 30px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand img { width: 190px; }
  .nav-wrap { min-height: 68px; }
  .hero { padding: 42px 0 50px; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-badge { position: static; margin: -14px 14px 0; }
  .audience-list { justify-content: flex-start; }
  .audience-list span:not(:last-child)::after { display: none; }
  .section { padding: 72px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .about-points div { grid-template-columns: 1fr; gap: 5px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 235px; }
  .gallery-item, .gallery-item.gallery-wide { grid-column: auto; }
  .gallery-item.gallery-tall { grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 21px; }
  .contact-card p { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 15px; bottom: 15px; }
}

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