:root {
  --ink: #13212b;
  --muted: #4a5568;
  --line: #e2e8f0;
  --paper: #f8fafc;
  --white: #ffffff;
  --navy: #15384d;
  --teal: #0f766e;
  --gold: #b98225;
  --shadow: 0 10px 30px rgba(19, 33, 43, 0.05);
  --radius: 8px;
  --max: 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.55;
  position: relative;
  overflow-x: hidden;
}

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

.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;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(19, 33, 43, 0.08);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.site-header.is-scrolled {
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 290px;
  height: auto;
  display: block;
  background-color: var(--white);
  padding: 4px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(19, 33, 43, 0.08);
  transition: width 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: 230px;
  padding: 3px 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  font-size: 0.93rem;
}

.site-nav a {
  position: relative;
  padding-block: 6px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 7px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 5vw, 72px) 76px;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 31, 43, 0.86) 0%, rgba(12, 31, 43, 0.7) 45%, rgba(12, 31, 43, 0.24) 100%),
    linear-gradient(0deg, rgba(12, 31, 43, 0.58), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

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

.hero h1,
.section h2,
.renta h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 6vw, 5.25rem);
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(185, 130, 37, 0.2);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.hero-badge:hover,
.hero-badge:focus-visible {
  background-color: #9d6c1c;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(185, 130, 37, 0.3);
}

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

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.15);
}

.button-primary:hover {
  background: #0d635c;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.25);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.09);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-renta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #128c7e;
  color: var(--white);
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(18, 140, 126, 0.15);
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  text-decoration: none;
}

.button-renta:hover {
  background-color: #0f7569;
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.25);
  transform: translateY(-1px);
}

.button-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-actions {
  margin-top: 34px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-band a {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-band a:last-child {
  border-right: 0;
}

.trust-band span,
.contact-row span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-band strong,
.contact-row strong {
  display: block;
  margin-top: 5px;
  overflow-wrap: anywhere;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.split,
.contact,
.location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.section h2,
.renta h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.intro-copy p,
.contact p,
.location p,
.renta p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

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

.inline-link {
  display: inline-flex;
  width: fit-content;
  color: var(--teal);
  border-bottom: 2px solid currentColor;
  font-weight: 800;
}

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

.service-card {
  min-height: 242px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(19, 33, 43, 0.08);
}

.service-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.renta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(var(--max), calc(100% - 40px));
  margin: 10px auto 0;
  padding: clamp(32px, 5vw, 54px);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fcfaf7;
  border-left: 8px solid var(--gold);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.renta-content {
  max-width: 760px;
}

.promo-note {
  display: inline-flex;
  width: fit-content;
  margin: 20px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(185, 130, 37, 0.12);
  font-weight: 800;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-row {
  display: block;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.full {
  width: 100%;
}

.location {
  align-items: stretch;
}

.location-info {
  align-self: center;
}

.map-frame {
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer strong {
  color: var(--white);
}

.footer-links {
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 34px rgba(19, 33, 43, 0.08);
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

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

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

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

  .hero {
    min-height: 820px;
    padding-top: 120px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 31, 43, 0.78), rgba(12, 31, 43, 0.72));
  }

  .trust-band,
  .split,
  .contact,
  .location,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-band a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band a:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .renta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 210px;
    padding: 3px 10px;
  }

  .hero {
    min-height: 760px;
    padding-inline: 20px;
    padding-bottom: 56px;
  }

  .hero-actions .button,
  .renta .button {
    width: 100%;
  }

  .section {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  .trust-band,
  .renta {
    width: calc(100% - 32px);
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }
}
