:root {
  --navy: #08244a;
  --navy-soft: #123765;
  --gold: #bf9046;
  --gold-soft: #ead9bd;
  --sage: #dce8df;
  --mint: #eef6f3;
  --porcelain: #fbfaf7;
  --ink: #18202b;
  --muted: #66717f;
  --line: #e4dfd7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 36, 74, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px clamp(16px, 4vw, 52px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(228, 223, 215, 0.7);
  backdrop-filter: blur(18px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(280px, 58vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav .nav-whatsapp-mobile {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mint);
  outline: none;
}

.header-whatsapp,
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  color: var(--white);
  background: #25d366;
  border: 1px solid #25d366;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.header-whatsapp:hover,
.header-whatsapp:focus-visible,
.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
  background: #1fb85a;
  border-color: #1fb85a;
  outline: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #061a35;
  padding-top: 122px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 92px;
  pointer-events: none;
  background: var(--porcelain);
  clip-path: polygon(0 58%, 100% 16%, 100% 100%, 0% 100%);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 26, 53, 0.76) 0%, rgba(6, 26, 53, 0.52) 44%, rgba(6, 26, 53, 0.16) 72%, rgba(6, 26, 53, 0.08) 100%),
    linear-gradient(180deg, rgba(6, 26, 53, 0.08) 0%, rgba(6, 26, 53, 0.26) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-left: clamp(16px, 8vw, 112px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  font-weight: 500;
}

h2 {
  max-width: 15ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.85rem;
  font-weight: 500;
}

h3 {
  font-size: 1.1rem;
  font-weight: 760;
}

.hero h1 {
  color: var(--white);
}

.hero .eyebrow {
  color: var(--gold-soft);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.24rem;
}

.hero-actions,
.hero-points {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy-soft);
}

.button-primary.button-whatsapp {
  background: #25d366;
  border-color: #25d366;
}

.button-primary.button-whatsapp:hover,
.button-primary.button-whatsapp:focus-visible {
  background: #1fb85a;
  border-color: #1fb85a;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.button-whatsapp i {
  font-size: 1.15em;
}

.hero-points {
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 7px 11px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.hero-progress button {
  width: 38px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.36);
  border: 0;
  border-radius: 4px;
}

.hero-progress button.is-active {
  background: var(--gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.two-column p,
.section-heading p,
.contact p {
  max-width: 670px;
  color: var(--muted);
}

.image-frame {
  margin: 0;
}

.image-placeholder,
.service-media,
.phone-frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(191, 144, 70, 0.62);
  background:
    linear-gradient(135deg, rgba(234, 217, 189, 0.28), rgba(238, 246, 243, 0.9)),
    var(--white);
}

.image-frame-tall .image-placeholder {
  min-height: 520px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-placeholder span,
.service-media span,
.phone-frame span {
  width: min(72%, 290px);
  padding: 12px 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.stats-band {
  padding: 34px 0;
  background: var(--navy);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stats-grid div {
  display: grid;
  gap: 4px;
  padding: 8px 0;
}

.stats-grid strong {
  color: var(--gold-soft);
  font-size: 1.15rem;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: end;
}

.section-heading-row p:last-child {
  margin: 0;
}

.service-grid,
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.difference-grid article,
.video-card,
.location-list article,
.process-list article,
.contact-form,
.contact-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(8, 36, 74, 0.06);
}

.service-media {
  aspect-ratio: 16 / 10;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: var(--line);
}

.service-media-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-body {
  padding: 22px;
}

.service-body p,
.difference-grid p,
.process-list p,
.video-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  background: linear-gradient(180deg, var(--mint), var(--porcelain));
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 16px;
  padding: 20px;
}

.process-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 6px;
  font-weight: 800;
}

.gallery {
  background: var(--navy);
  color: var(--white);
}

.gallery h2,
.gallery h3 {
  color: var(--white);
}

.gallery .section-heading p:last-child,
.gallery .video-card p {
  color: rgba(255, 255, 255, 0.72);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.phone-frame {
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(191, 144, 70, 0.3), rgba(18, 55, 101, 0.8)),
    #0c2039;
}

.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.video-card h3 {
  margin-top: 16px;
}

.video-placeholder .phone-frame span {
  color: var(--white);
  background: rgba(8, 36, 74, 0.58);
  border-color: rgba(255, 255, 255, 0.18);
}

.difference-grid article {
  padding: 26px;
  border-top: 4px solid var(--gold);
}

.locations {
  background: var(--mint);
}

.location-list {
  display: grid;
  gap: 14px;
}

.location-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.location-list strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.location-list span {
  color: var(--muted);
}

.location-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-map-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 36, 74, 0.06);
}

.location-card-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 128px;
  padding: 20px;
}

.location-card-head i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

.location-card-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.location-map-card iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  border-top: 1px solid var(--line);
}

.faq {
  background: var(--porcelain);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-list article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 36, 74, 0.05);
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 80px);
  align-items: start;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 480px;
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--gold);
}

.contact-note > i {
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: #25d366;
  border-radius: 6px;
  font-size: 1.5rem;
}

.contact-note > span {
  display: grid;
  gap: 3px;
}

.contact-note strong {
  color: var(--navy);
}

.contact-note span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 6px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(191, 144, 70, 0.18);
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.form-status.is-success {
  color: #167a3b;
}

.form-status.is-error {
  color: #a33b2f;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 42;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(8, 36, 74, 0.22);
  font-size: 1.78rem;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #1fb85a;
  outline: none;
  transform: translateY(-1px);
}

.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 41;
  width: min(360px, calc(100vw - 28px));
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 36, 74, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(8, 36, 74, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-widget.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-widget-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: var(--white);
  background: #075e54;
}

.whatsapp-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #25d366;
  border-radius: 50%;
  font-size: 1.35rem;
}

.whatsapp-widget h2 {
  color: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.whatsapp-widget-head p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.3;
}

.whatsapp-widget-head button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 6px;
}

.whatsapp-widget-body {
  display: grid;
  gap: 12px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(220, 232, 223, 0.68), rgba(251, 250, 247, 0.95)),
    var(--porcelain);
}

.whatsapp-bubble {
  max-width: 90%;
  margin: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px 8px 8px 2px;
  box-shadow: 0 8px 18px rgba(8, 36, 74, 0.08);
  font-size: 0.92rem;
  line-height: 1.45;
}

.whatsapp-widget label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.whatsapp-widget textarea {
  width: 100%;
  min-height: 94px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  resize: vertical;
}

.whatsapp-widget textarea:focus {
  border-color: #25d366;
  outline: 3px solid rgba(37, 211, 102, 0.18);
}

.whatsapp-widget-cta {
  width: 100%;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #061a35;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-content img {
  width: min(250px, 60vw);
  padding: 8px;
  background: var(--white);
  border-radius: 6px;
}

.footer-content p {
  max-width: 510px;
  margin: 0;
}

.footer-text {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-credit a {
  color: var(--gold-soft);
  font-weight: 800;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--white);
  outline: none;
}

@media (max-width: 980px) {
  .section-pad {
    padding: 76px 0;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .two-column,
  .contact-layout,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-map-grid {
    grid-template-columns: 1fr;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .location-card-head {
    min-height: auto;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    margin-left: auto;
  }
}

@media (max-width: 900px) {
  .header-whatsapp {
    width: 42px;
    padding: 0;
  }

  .header-whatsapp span {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-right {
    gap: 8px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav .nav-whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    background: #25d366;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
  }

  .hero::after {
    height: 68px;
    clip-path: polygon(0 48%, 100% 18%, 100% 100%, 0% 100%);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 26, 53, 0.74), rgba(6, 26, 53, 0.3)),
      linear-gradient(180deg, rgba(6, 26, 53, 0.08), rgba(6, 26, 53, 0.42));
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .stats-grid,
  .service-grid,
  .difference-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .image-frame-tall .image-placeholder {
    min-height: 390px;
  }

  .process-list article {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 18px;
  }

  .phone-frame {
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-content,
  .location-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-map-card iframe {
    height: 230px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    gap: 10px;
    padding-inline: 12px;
  }

  .brand {
    width: min(196px, 54vw);
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-form {
    padding: 18px;
  }

  .whatsapp-widget {
    right: 12px;
    bottom: 86px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}
