:root {
  --ink: #15232b;
  --muted: #62717a;
  --teal: #167b7f;
  --teal-dark: #0f5558;
  --coral: #df775c;
  --gold: #e7b85f;
  --mint: #e9f7f3;
  --cream: #fbf8f2;
  --white: #ffffff;
  --line: #dce7e6;
  --shadow: 0 24px 60px rgba(24, 48, 55, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.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: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, 0.9);
  border-bottom: 1px solid rgba(220, 231, 230, 0.8);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--coral));
  font-weight: 800;
  font-size: 1.25rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.77rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
  color: #34454d;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

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

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(22, 123, 127, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

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

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #dcefed;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 35, 42, 0.78), rgba(13, 35, 42, 0.38) 50%, rgba(13, 35, 42, 0.06)),
    url("https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 145px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: #ffd394;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-panel {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  width: min(1160px, calc(100% - 40px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  pointer-events: none;
}

.hero-panel div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.intro {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.intro-card {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: var(--shadow);
}

.stat {
  font-size: 4.3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}

.intro-text p:last-child,
.about-copy p,
.contact-info p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

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

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 123, 127, 0.3);
  box-shadow: 0 18px 38px rgba(35, 58, 65, 0.1);
}

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

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 900;
  font-size: 1.3rem;
}

.about-section {
  width: 100%;
  padding: 96px max(20px, calc((100% - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 54px;
  align-items: center;
  background: var(--mint);
}

.check-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.stat::after {
  content: " deg";
  font-size: 1.05rem;
  vertical-align: top;
  color: rgba(255, 255, 255, 0.78);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 7px var(--teal), inset 0 0 0 9px var(--white);
}

.about-visual {
  min-height: 430px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 47, 52, 0.1), rgba(16, 47, 52, 0.45)),
    url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1100&q=82") center/cover;
  display: flex;
  align-items: end;
  padding: 22px;
  box-shadow: var(--shadow);
}

.quote-card {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.quote-card p {
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 1.08rem;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.timeline article {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.timeline span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--coral);
  font-weight: 900;
  font-size: 0.9rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  padding: 16px 18px;
  border-left: 4px solid var(--coral);
  background: var(--white);
  border-radius: 0 8px 8px 0;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(35, 58, 65, 0.06);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: #32434a;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfdcda;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfefd;
}

.contact-form textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(22, 123, 127, 0.18);
  border-color: var(--teal);
}

.form-button {
  width: 100%;
  border: 0;
  margin-top: 6px;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.map{
  width: 100%;
}

.map iframe{
  width: 100%;
  height: 400px;
  border: 0;
}

.footer {
  width: min(1160px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer a {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav {
    width: min(100% - 28px, 760px);
  }

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

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    padding: 86px 0 210px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(13, 35, 42, 0.75), rgba(13, 35, 42, 0.34)),
      url("https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=1200&q=82") center/cover;
  }

  .hero-panel {
    width: min(100% - 28px, 760px);
    grid-template-columns: 1fr;
  }

  .section,
  .footer {
    width: min(100% - 28px, 760px);
  }

  .intro,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

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

@media (max-width: 620px) {
  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-panel {
    bottom: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .services-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .about-visual {
    min-height: 360px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
