:root {
  --teal: #1fa7a0;
  --teal-dark: #0d6b6a;
  --coral: #c57e74;
  --gold: #e0ab68;
  --ink: #111318;
  --muted: #5f6d70;
  --paper: #fffaf6;
  --mist: #fdf0ea;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(17, 19, 24, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(34, 181, 172, 0.12), transparent 38%),
    linear-gradient(300deg, rgba(255, 124, 104, 0.12), transparent 42%),
    var(--paper);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.15rem clamp(1rem, 4vw, 3rem) 0;
}

.logo-float {
  position: absolute;
  left: 50%;
  top: 0.65rem;
  z-index: 2;
  width: clamp(132px, 16vw, 188px);
  transform: translate(-50%, 0);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
}

.logo-float img {
  width: 100%;
  border-radius: var(--radius);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  max-width: 1120px;
  margin: 3.35rem auto 0;
  padding: 0.72rem;
  background: rgba(17, 19, 24, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(5, 9, 12, 0.23);
}

.nav-links {
  display: flex;
  gap: 0.2rem;
  padding-left: 0.65rem;
}

.nav-links a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  min-height: 48px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn {
  padding: 0.88rem 1.15rem;
}

.btn svg,
.icon-btn svg,
.mobile-cta svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  flex: 0 0 auto;
}

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

.btn:focus-visible,
.icon-btn:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 124, 104, 0.55);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 12px 30px rgba(12, 123, 122, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 16px 40px rgba(12, 123, 122, 0.36);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
}

.btn-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-small {
  min-height: 42px;
  padding: 0.66rem 0.95rem;
  font-size: 0.9rem;
}

.icon-btn {
  width: 44px;
  height: 44px;
}

.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  margin-top: 30px;
  min-height: clamp(430px, 58vh, 590px);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 5vw, 4rem) 1rem;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero-bg,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.84) 0%, rgba(5, 8, 10, 0.65) 45%, rgba(5, 8, 10, 0.28) 100%),
    url("../images/hero-banner.jpg") center / cover no-repeat;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(34, 181, 172, 0.24) 39% 46%, transparent 47%),
    linear-gradient(295deg, transparent 0 52%, rgba(255, 124, 104, 0.22) 53% 58%, transparent 59%);
  animation: sweep 12s linear infinite;
}

.motion-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.motion-lines span {
  position: absolute;
  width: 46vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(-18deg);
  animation: glide 9s ease-in-out infinite;
}

.motion-lines span:nth-child(1) {
  left: -10vw;
  top: 28%;
}

.motion-lines span:nth-child(2) {
  right: -12vw;
  top: 52%;
  animation-delay: 1.8s;
}

.motion-lines span:nth-child(3) {
  left: 20vw;
  bottom: 18%;
  animation-delay: 3.2s;
}

.hero-content {
  width: min(820px, 100%);
  margin-top: clamp(0rem, 3vw, 2rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9df4ee;
}

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

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  line-height: 1.15;
}

.hero-lede {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2.6vw, 1.35rem);
}

.special-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  max-width: 720px;
}

.special-strip span,
.special-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.special-strip span {
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.special-strip strong {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.scroll-indicator {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: 1.4rem;
  display: grid;
  place-items: center;
  width: 34px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
}

.scroll-indicator span {
  width: 6px;
  height: 10px;
  border-radius: 999px;
  background: var(--white);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.copy-block p,
.section-heading p,
.contact-info p,
.offer-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.copy-block p {
  max-width: 660px;
}

.quick-card,
.service-card,
.trust-card,
.contact-form,
.offer-card {
  border: 1px solid rgba(12, 123, 122, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.quick-card {
  padding: clamp(1.3rem, 4vw, 2rem);
}

.card-kicker {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-card strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--teal-dark);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1;
}

.quick-card p {
  margin: 1rem 0 1.4rem;
  color: var(--muted);
}

.services-section,
.contact-section {
  background: linear-gradient(180deg, rgba(239, 251, 249, 0.78), rgba(255, 250, 244, 0.95));
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.service-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.trust-card {
  position: relative;
  min-height: 270px;
  padding: 1.2rem;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card::before,
.trust-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--gold));
}

.service-card:hover,
.trust-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 24px 58px rgba(17, 19, 24, 0.22);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 900;
}

.service-card p,
.trust-card p {
  color: var(--muted);
}

.service-card strong {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  color: var(--coral);
  font-size: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1rem;
}

.gallery-item {
  display: block;
  min-height: 260px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: zoom-in;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
}

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

.trust-card {
  min-height: 210px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.85fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.contact-list div {
  padding: 1rem;
  border-left: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.7);
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0.2rem 0 0;
  font-weight: 800;
}

.map-frame {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1.2rem, 4vw, 2rem);
}

.contact-form h3 {
  margin-bottom: 0.3rem;
}

.contact-form label {
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(12, 123, 122, 0.2);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.offer-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.offer-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(1.4rem, 5vw, 3rem);
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(34, 181, 172, 0.16), transparent 42%),
    linear-gradient(300deg, rgba(255, 124, 104, 0.18), transparent 42%);
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

.offer-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1rem;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  list-style: none;
}

.offer-card li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--muted);
  font-weight: 700;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--teal);
}

.btn-offer {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 16px 36px rgba(232, 177, 92, 0.28);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 8, 10, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86vh;
  width: min(960px, 100%);
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.mobile-cta {
  display: none;
}

.site-footer {
  padding: 2.2rem clamp(1rem, 5vw, 4rem) calc(1.4rem + env(safe-area-inset-bottom));
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.2rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

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

.minipage-credit {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.minipage-credit a {
  color: var(--white);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes slowZoom {
  from { transform: scale(1.04) translateX(0); }
  to { transform: scale(1.09) translateX(1.5%); }
}

@keyframes sweep {
  0% { transform: translateX(-4%); opacity: 0.7; }
  50% { transform: translateX(3%); opacity: 1; }
  100% { transform: translateX(-4%); opacity: 0.7; }
}

@keyframes glide {
  0%, 100% { opacity: 0.2; transform: translateX(-8%) rotate(-18deg); }
  50% { opacity: 0.75; transform: translateX(8%) rotate(-18deg); }
}

@keyframes scrollDot {
  0% { transform: translateY(-10px); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(11px); opacity: 0; }
}

@media (max-width: 980px) {
  .service-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    padding-inline: 0.8rem;
  }

  .logo-float {
    width: min(36vw, 136px);
    top: 0.15rem;
  }

  .nav-shell {
    min-height: 64px;
    margin-top: 2.2rem;
    padding: 0.52rem;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 0.35rem;
  }

  .header-actions .btn-small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn-secondary,
  .hero-actions .btn-light {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .special-strip {
    gap: 0.42rem;
  }

  .special-strip span,
  .special-strip strong {
    min-height: 36px;
    font-size: 0.78rem;
  }

  .service-grid,
  .trust-grid,
  .gallery-grid,
  .offer-card ul {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  .section {
    padding-block: 3.7rem;
  }

  .service-card,
  .trust-card {
    min-height: 220px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.45rem max(0.6rem, env(safe-area-inset-left)) calc(0.45rem + env(safe-area-inset-bottom)) max(0.6rem, env(safe-area-inset-right));
    background: rgba(17, 19, 24, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 -16px 42px rgba(0, 0, 0, 0.2);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    gap: 0.2rem;
    min-height: 58px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 800;
  }

  .mobile-cta svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .site-footer {
    padding-bottom: calc(6rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .nav-links a {
    font-size: 0.72rem;
    padding-inline: 0.34rem;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
