:root {
  --brand-blue: #1f3498;
  --brand-blue-dark: #182a7a;
  --brand-wine: #9a001f;
  --brand-wine-dark: #770018;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --text: #1e2738;
  --text-muted: #53607a;
  --line: #d9e0ef;
  --shadow: 0 18px 45px rgba(0, 20, 56, 0.14);
  --card-shadow: 0 10px 24px rgba(8, 28, 76, 0.09);
  --card-shadow-hover: 0 16px 30px rgba(8, 28, 76, 0.16);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--brand-blue);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 0 0 0.5rem 0.5rem;
}

.skip-link:focus {
  left: 1rem;
}

.section {
  position: relative;
  padding: clamp(4.2rem, 7vw, 5.8rem) 0;
  overflow-x: hidden;
  background: #fff;
}

@supports (overflow: clip) {
  .section {
    overflow-x: clip;
  }
}

.section + .section {
  border-top: 0.5px solid #ccc;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-wine);
  font-weight: 700;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

.section-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 0.72rem;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-wine), var(--brand-blue));
}

.section h2,
.hero h1,
.site-footer p {
  font-family: Arial, Helvetica, sans-serif;
}

.brand-name {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: linear-gradient(170deg, var(--brand-wine-dark), var(--brand-wine));
  border-bottom: 3px solid var(--brand-blue);
  box-shadow: 0 6px 18px rgba(47, 0, 0, 0.28);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.brand-name {
  font-size: 1.6rem;
  letter-spacing: 0;
  color: #fff;
  font-weight: 800;
}

.brand-subtitle {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a {
  padding: 0.5rem 0.2rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 5.1rem;
  background: #fff;
  border-top: 0;
  border-bottom: 0;
}

.hero::before,
.hero::after {
  content: none;
}

.hero-grid {
  display: grid;
  gap: 1.35rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 2rem;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid #ced6e6;
  border-left: 6px solid var(--brand-blue-dark);
  box-shadow: 0 10px 24px rgba(16, 35, 95, 0.1);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.2;
  color: var(--brand-blue-dark);
}

.hero p {
  margin: 0;
  color: #2b3850;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--brand-wine), var(--brand-wine-dark));
  box-shadow: 0 11px 24px rgba(95, 0, 0, 0.27);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 13px 28px rgba(95, 0, 0, 0.33);
}

.btn-secondary {
  color: var(--brand-blue-dark);
  border-color: rgba(0, 59, 142, 0.35);
  background: rgba(255, 255, 255, 0.9);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  padding: 1.65rem;
  border: 1px solid rgba(24, 42, 122, 0.24);
  border-top: 5px solid #7a0019;
  box-shadow: 0 10px 24px rgba(12, 23, 66, 0.22);
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -85px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 72%);
}

.hero-panel h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.24rem;
  position: relative;
  z-index: 1;
}

.hero-panel ul,
.highlight-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.78rem;
  position: relative;
  z-index: 1;
}

.hero-panel li,
.highlight-list li {
  position: relative;
  padding-left: 1.85rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.55;
}

.hero-panel li::before,
.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  background: linear-gradient(140deg, #ffffff, #d9e4ff);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.15),
    0 0 0 5px rgba(31, 52, 152, 0.2);
}

.services {
  background: #f7f7f7;
}

.services::before,
.services::after {
  content: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  gap: 1.15rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #fbfdff 100%);
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(24, 42, 122, 0.14);
  box-shadow: var(--card-shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-wine), var(--brand-blue));
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(24, 42, 122, 0.24);
  box-shadow: var(--card-shadow-hover);
}

.service-icon {
  --icon-grad-start: var(--brand-blue);
  --icon-grad-end: var(--brand-blue-dark);
  --icon-shadow: rgba(24, 42, 122, 0.3);
  --icon-shadow-hover: rgba(14, 36, 104, 0.34);
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.95rem;
  color: #fff;
  background: linear-gradient(145deg, var(--icon-grad-start), var(--icon-grad-end));
  box-shadow: 0 10px 18px var(--icon-shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:nth-child(odd) .service-icon {
  --icon-grad-start: var(--brand-blue);
  --icon-grad-end: var(--brand-blue-dark);
  --icon-shadow: rgba(24, 42, 122, 0.3);
  --icon-shadow-hover: rgba(14, 36, 104, 0.34);
}

.service-card:nth-child(2n) .service-icon {
  --icon-grad-start: var(--brand-wine);
  --icon-grad-end: var(--brand-wine-dark);
  --icon-shadow: rgba(119, 0, 24, 0.3);
  --icon-shadow-hover: rgba(90, 0, 20, 0.36);
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px var(--icon-shadow-hover);
}

.service-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: var(--brand-blue-dark);
  font-size: 1.08rem;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.about {
  background: #fff;
}

.about::before {
  content: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.contact-grid {
  align-items: start;
}

.about-content,
.about-highlights,
.contact-card {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(24, 42, 122, 0.14);
  padding: 1.55rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-content:hover,
.about-highlights:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.about-content h2,
.contact h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--brand-blue-dark);
  line-height: 1.3;
}

.about-content p {
  margin: 0;
  color: var(--text-muted);
}

.about-content p + p {
  margin-top: 0.9rem;
}

.about-content {
  border-left: 5px solid var(--brand-wine);
  background: linear-gradient(170deg, #ffffff 10%, #f8fbff 100%);
}

.about-highlights {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--brand-blue-dark), var(--brand-blue));
  border-color: rgba(24, 42, 122, 0.24);
  color: #fff;
}

.about-highlights::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -85px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 72%);
}

.about-highlights h3,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--brand-blue-dark);
}

.about-highlights h3 {
  position: relative;
  z-index: 1;
  color: #fff;
}

.contact {
  background: #f7f7f7;
}

.contact::before {
  content: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-wine));
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.4rem;
  padding: 0.82rem 0.86rem;
  border-radius: 10px;
  background: #f5f8ff;
  border: 1px solid rgba(24, 42, 122, 0.12);
}

.contact-list span {
  font-weight: 700;
  color: var(--brand-blue-dark);
  font-size: 0.95rem;
}

.contact-list a {
  color: var(--brand-wine);
  font-weight: 700;
  width: fit-content;
}

.phone-choice-trigger {
  cursor: pointer;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  text-decoration: underline;
}

address {
  font-style: normal;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 42, 122, 0.2);
  background: #eaf0ff;
  color: var(--brand-blue-dark);
  font-weight: 700;
  width: fit-content;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.map-link::after {
  content: ">";
  font-weight: 800;
}

.map-link:hover,
.map-link:focus-visible {
  background: #dce7ff;
  border-color: rgba(24, 42, 122, 0.35);
  transform: translateY(-1px);
}

.work-hours {
  display: block;
  margin: 0;
  color: var(--brand-blue-dark);
  font-weight: 700;
  line-height: 1.6;
}

.contact-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-choice-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-choice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 21, 52, 0.62);
  backdrop-filter: blur(3px);
}

.contact-choice-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  background: linear-gradient(165deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid rgba(24, 42, 122, 0.2);
  border-radius: 16px;
  box-shadow: 0 22px 45px rgba(8, 18, 52, 0.32);
  padding: 1.25rem 1.2rem 1.2rem;
}

.contact-choice-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(24, 42, 122, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-blue-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.contact-choice-close:hover,
.contact-choice-close:focus-visible {
  background: #eef2ff;
}

.contact-choice-dialog h3 {
  margin: 0 0 0.6rem;
  padding-right: 2.2rem;
  color: var(--brand-blue-dark);
  line-height: 1.3;
}

.contact-choice-dialog p {
  margin: 0;
  color: var(--text-muted);
}

.contact-choice-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.contact-choice-actions .btn {
  width: 100%;
}

.site-footer {
  background: linear-gradient(170deg, var(--brand-blue-dark), var(--brand-blue));
  color: #e9eef9;
  padding: 1.3rem 0;
  border-top: 3px solid var(--brand-wine);
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 130;
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #119c4f, #25d366);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15, 94, 50, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(15, 94, 50, 0.45);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

html.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(15, 94, 50, 0.35);
  }
  50% {
    box-shadow: 0 15px 32px rgba(15, 94, 50, 0.48);
  }
}

:focus-visible {
  outline: 3px solid rgba(0, 59, 142, 0.32);
  outline-offset: 3px;
}

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

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

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

  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

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

@media (min-width: 1024px) {
  .section {
    padding: clamp(5.2rem, 7vw, 6.2rem) 0;
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  html.js-enabled .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(250px, 84vw);
    background: linear-gradient(165deg, var(--brand-wine-dark), var(--brand-wine));
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    padding: 0.8rem;
    box-shadow: 0 14px 28px rgba(63, 5, 14, 0.36);
    display: none;
  }

  html.js-enabled .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .site-nav a {
    width: 100%;
    display: block;
    padding: 0.65rem;
    border-radius: 8px;
    border-bottom: 0;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .service-card,
  .service-icon,
  .about-content,
  .about-highlights,
  .contact-card,
  .whatsapp-float,
  .nav-toggle span {
    transition: none;
    animation: none;
    transform: none;
  }
}
