:root {
  --ink: #101522;
  --muted: #5e6772;
  --white: #ffffff;
  --paper: #fffdf2;
  --yellow: #fff27a;
  --yellow-soft: #fffbd9;
  --green: #8df2a6;
  --green-dark: #1d7a46;
  --red: #ec1c24;
  --blue: #486675;
  --navy: #171d35;
  --line: rgba(16, 21, 34, 0.1);
  --shadow: 0 18px 50px rgba(21, 29, 49, 0.1);
  --radius: 22px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Aptos, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section--soft {
  background: var(--yellow-soft);
}

.section--yellow {
  background: linear-gradient(180deg, #fff58e 0%, #fff9bd 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.location-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(72, 102, 117, 0.28);
}

.btn--primary:hover {
  background: #344f5d;
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 114px;
  gap: 40px;
}

.brand {
  flex: 0 1 378px;
}

.brand img {
  width: min(100%, 378px);
  height: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  padding: 12px 0;
  font-size: 0.96rem;
  font-weight: 650;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  color: var(--white);
  background: #333947;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(12, 17, 30, 0.82) 0%, rgba(12, 17, 30, 0.55) 58%, rgba(12, 17, 30, 0.32) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 670px;
  align-items: center;
}

.hero-copy {
  max-width: 880px;
  padding: 70px 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero .quote-author {
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stars {
  color: var(--yellow);
  letter-spacing: 0.1em;
}

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

.service-card,
.info-card,
.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(21, 29, 49, 0.15);
}

.service-card img,
.info-card img {
  width: 100%;
  height: 258px;
  object-fit: cover;
}

.service-card-body,
.info-card-body {
  padding: 28px;
}

.service-card h3,
.info-card h2,
.info-card h3,
.feature-card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.service-card p,
.info-card p,
.feature-card p {
  margin: 0;
  color: #3c4550;
}

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

.feature-card {
  padding: 36px;
}

.feature-icon {
  display: grid;
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 24px;
  background: var(--yellow-soft);
}

.feature-icon img {
  max-width: 72px;
  max-height: 72px;
}

.feature-card h3 {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--green);
}

.feature-card strong {
  display: block;
  margin: 20px 0 10px;
  line-height: 1.45;
}

.feature-visual {
  margin-top: 34px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-visual img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.page-hero {
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--green) 0%, #bdf7c9 100%);
}

.page-hero .container {
  max-width: 950px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 1.06rem;
}

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

.info-card {
  height: 100%;
  box-shadow: 0 14px 38px rgba(21, 29, 49, 0.08);
}

.info-card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-card-body li {
  position: relative;
  padding-left: 19px;
}

.info-card-body li + li {
  margin-top: 7px;
}

.info-card-body li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--red);
}

.info-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 830px;
  margin-inline: auto;
}

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

.catalogue-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(21, 29, 49, 0.08);
}

.catalogue-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.catalogue-copy {
  padding: 26px;
}

.catalogue-copy h2 {
  margin: 0 0 16px;
  font-size: 1.28rem;
  line-height: 1.23;
}

.catalogue-copy ul,
.catalogue-copy ol {
  margin: 0;
  padding-left: 19px;
}

.catalogue-copy li + li {
  margin-top: 7px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form-wrap {
  padding: 48px;
  background: #e8f9fc;
}

.contact-form-wrap h2 {
  margin: 0 0 28px;
  font-size: 2rem;
}

.form-field + .form-field {
  margin-top: 19px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #bdc7cf;
  border-radius: 12px;
  outline: none;
  background: var(--white);
  transition: border 180ms ease, box-shadow 180ms ease;
}

.form-field input {
  height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(72, 102, 117, 0.12);
}

.form-status {
  min-height: 26px;
  margin: 16px 0 0;
  font-size: 0.92rem;
  font-weight: 650;
}

.contact-form-wrap .btn {
  margin-top: 24px;
}

.contact-form-wrap .btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status.is-success {
  color: #176d3d;
}

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

.contact-image {
  min-height: 100%;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 60px;
}

.location-copy p {
  color: #3d4650;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-details strong {
  display: block;
  margin-bottom: 2px;
}

.contact-details a:hover {
  color: var(--green-dark);
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
}

.site-footer {
  padding: 62px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: #0d1120;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.8fr;
  gap: 50px;
}

.footer-brand img {
  width: min(100%, 330px);
  padding: 12px;
  border-radius: 10px;
  background: var(--white);
}

.footer-brand p {
  max-width: 480px;
  margin: 20px 0 0;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1.05rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #069c72;
  box-shadow: 0 12px 30px rgba(7, 80, 61, 0.32);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

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

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

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .header-inner {
    min-height: 96px;
  }

  .brand {
    flex-basis: 320px;
  }

  .nav-list {
    gap: 22px;
  }

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

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

  .contact-image {
    min-height: 440px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .site-header {
    overflow: visible;
    backdrop-filter: none;
  }

  .header-inner {
    position: relative;
    min-height: 82px;
  }

  .brand {
    flex-basis: 250px;
    max-width: calc(100% - 66px);
  }

  .menu-toggle {
    position: relative;
    z-index: 10001;
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    z-index: 10000;
    top: 100%;
    left: 50%;
    right: auto;
    bottom: auto;

    width: 100vw;
    height: calc(100dvh - 82px);
    padding: 24px 30px;
    overflow-y: auto;

    visibility: hidden;
    opacity: 0;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(12, 17, 30, 0.16);

    transform: translate(-50%, -12px);
    transition:
      transform 230ms ease,
      opacity 230ms ease,
      visibility 230ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .nav-list {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-list li {
    display: block;
    width: 100%;
  }

  .nav-list li + li {
    border-top: 1px solid var(--line);
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 1.08rem;
  }

  .nav-link::after {
    bottom: 12px;
  }

  .hero,
  .hero-content {
    min-height: 600px;
  }

  .hero::after {
    background: rgba(12, 17, 30, 0.66);
  }

  .service-grid,
  .info-grid,
  .info-grid--two,
  .service-catalogue,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .info-card img,
  .catalogue-card img {
    height: 250px;
  }

  .contact-form-wrap {
    padding: 34px 24px;
  }

  .contact-image {
    min-height: 330px;
  }

  .location-grid {
    gap: 38px;
  }

  .cta-inner {
    display: block;
    text-align: center;
  }

  .cta-inner .btn {
    margin-top: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 6px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 58px 0;
  }

  .page-hero {
    padding: 56px 0;
  }

  .hero .hero-copy h1 {
    font-size: 1.85rem;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .hero-kicker {
    display: block;
  }

  .hero-kicker .stars {
    display: block;
    margin-bottom: 8px;
  }

  .service-card-body,
  .info-card-body,
  .catalogue-copy,
  .feature-card {
    padding: 23px;
  }

  .service-card img,
  .info-card img,
  .catalogue-card img {
    height: 220px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.hero .hero-copy h1 {
  font-size: clamp(1.85rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

@media (max-width: 480px) {
  .hero .hero-copy h1 {
    font-size: 1.85rem;
  }
}