:root {
  --color-primary: #059669;
  --color-primary-dark: #065f46;
  --color-primary-deep: #064e3b;
  --color-primary-light: #d1fae5;
  --color-primary-soft: #ecfdf5;
  --color-accent: #d69e2e;
  --color-accent-soft: #fff7e6;
  --color-text: #12332b;
  --color-muted: #5f766f;
  --color-border: #cfe7dd;
  --color-bg: #f4fbf8;
  --color-white: #ffffff;
  --bg: var(--color-bg);
  --surface: var(--color-white);
  --surface-alt: var(--color-primary-soft);
  --text: var(--color-text);
  --muted: var(--color-muted);
  --line: var(--color-border);
  --primary-dark: var(--color-primary-dark);
  --accent: var(--color-accent);
  --accent-soft: var(--color-accent-soft);
  --shadow: 0 16px 34px rgba(4, 78, 53, 0.08);
  --radius: 18px;
  --container: 1200px;
  --gradient-soft: linear-gradient(145deg, rgba(236, 253, 245, 0.96), rgba(255, 255, 255, 0.98) 58%, rgba(209, 250, 229, 0.8));
  --gradient-card: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(236, 253, 245, 0.95));
  --gradient-cta: linear-gradient(135deg, #064e3b 0%, #065f46 52%, #059669 100%);
  --gradient-hero-overlay: linear-gradient(90deg, rgba(4, 78, 53, 0.34), rgba(4, 78, 53, 0.1) 42%, rgba(4, 78, 53, 0.24));
  --gradient-footer-line: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 251, 248, 0.95) 48%, rgba(236, 253, 245, 0.9) 100%),
    radial-gradient(circle at top, rgba(5, 150, 105, 0.06), transparent 34%),
    var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  width: 100%;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 248, 0.92));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.site-logo {
  width: clamp(140px, 18vw, 240px);
  height: auto;
  object-fit: contain;
}

.footer-logo-link {
  display: inline-flex;
}

.footer-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 18vw, 220px);
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  background: var(--color-primary-soft);
  box-shadow: 0 8px 18px rgba(4, 78, 53, 0.12);
}

.footer-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-header__contact {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 14px 18px;
  align-items: center;
}

.site-header__phone,
.site-header__hours {
  display: grid;
  gap: 2px;
}

.site-header__phone span,
.site-header__hours span,
.site-footer__contact span {
  font-size: 0.78rem;
  color: var(--muted);
}

.site-header__phone a {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.site-header__phone-value {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.site-header__hours p {
  margin: 0;
}

.site-nav {
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.92), rgba(255, 255, 255, 0.84));
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.site-nav__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  white-space: nowrap;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible,
.site-nav__list a.is-current {
  color: var(--primary-dark);
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.1), rgba(236, 253, 245, 0.94));
}

.hero,
.section,
.page-hero {
  padding: 72px 0;
}

.page-hero {
  padding-bottom: 36px;
}

.page-hero__inner {
  display: grid;
  gap: 10px;
}

.page-hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 1.15;
  color: var(--primary-dark);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
}

.page-hero__lead {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero--fullbleed {
  padding: 0;
}

.hero-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: linear-gradient(135deg, #074f3d, #0a6148 48%, #0d7456);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--gradient-hero-overlay);
  pointer-events: none;
}

.hero-slider__track {
  position: relative;
  height: clamp(320px, 72vh, 680px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-slide__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, opacity 160ms ease;
}

.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}

.slider-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.slider-control--prev .slider-arrow::before {
  transform: rotate(-135deg) translate(1px, -1px);
}

.slider-control--next .slider-arrow::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.slider-control--prev {
  left: 16px;
}

.slider-control--next {
  right: 16px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  pointer-events: auto;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: width 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.slider-dot.is-active {
  width: 22px;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.64);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible,
.info-card:hover,
.media-frame:hover,
.contact-card:hover {
  transform: translateY(-2px);
}

.split-layout__media .media-frame,
.split-layout__media .media-frame:hover,
.split-layout__media .media-frame:focus-visible,
.split-layout__media .media-frame__image,
.split-layout__media .media-frame__image:hover,
.split-layout__media .media-frame__image:focus-visible {
  transform: none;
}

.split-layout__media .media-frame:hover {
  box-shadow: none;
}

.slider-control:hover,
.slider-control:focus-visible {
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.slider-dot:hover,
.slider-dot:focus-visible {
  transform: none;
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.button--accent {
  color: #fff;
  background: var(--gradient-cta);
  box-shadow: 0 12px 22px rgba(5, 150, 105, 0.18);
}

.button--light {
  color: var(--primary-dark);
  border-color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 253, 245, 0.96));
}

.button--small {
  min-height: 40px;
  padding: 0 16px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.section-heading--compact {
  max-width: 640px;
}

.section-heading--left {
  justify-items: start;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.section--alt {
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.9), rgba(255, 255, 255, 0.98));
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.info-card {
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid rgba(207, 231, 221, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(4, 78, 53, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover {
  border-color: rgba(5, 150, 105, 0.18);
  box-shadow: 0 18px 30px rgba(4, 78, 53, 0.09);
}

.info-card__body {
  padding: 20px 20px 22px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: var(--primary-dark);
}

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

.media-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(236, 253, 245, 0.9), rgba(255, 255, 255, 0.98));
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 78, 53, 0.04), transparent 38%, rgba(5, 150, 105, 0.06));
  pointer-events: none;
}

.media-frame--card {
  height: 220px;
}

.media-frame--stacked {
  height: 360px;
}

.media-frame__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(207, 231, 221, 0.72);
  border-radius: calc(var(--radius) + 2px);
  background: var(--gradient-soft);
  box-shadow: 0 14px 30px rgba(4, 78, 53, 0.04);
}

.split-layout__content {
  display: grid;
  gap: 14px;
}

.check-list {
  margin: 8px 0 0;
  padding-left: 1.15em;
  display: grid;
  gap: 8px;
}

.check-list li::marker {
  color: var(--accent);
}

.cta-band {
  padding-top: 16px;
}

.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 6px);
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 18px 34px rgba(4, 78, 53, 0.18);
  position: relative;
  overflow: hidden;
}

.cta-band__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

@media (min-width: 1025px) {
  .cta-band__copy h2 {
    white-space: nowrap;
  }
}

.site-footer {
  background: linear-gradient(135deg, #053c2e 0%, #064e3b 42%, #073b2d 100%);
  color: rgba(255, 255, 255, 0.88);
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 24px 32px;
  align-items: start;
  padding: 34px 0 30px;
}

.site-footer::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--gradient-footer-line);
}

.site-footer__brand,
.site-footer__contact,
.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer__name {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.site-footer__name-en {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer__address {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__brand p,
.site-footer__contact p {
  margin: 0;
}

.site-footer__linklist {
  display: grid;
  gap: 8px;
}

.site-footer__linklist a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.site-footer__linklist a:hover,
.site-footer__linklist a:focus-visible {
  text-decoration-color: rgba(255, 255, 255, 0.75);
}

.site-footer__contact p span {
  display: inline-block;
  min-width: 72px;
  color: #efd39d;
}

.site-footer__contact a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  text-decoration-color: rgba(255, 255, 255, 0.75);
}

.contact-card__value--email {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__masked {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.contact-card__utility {
  display: grid;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(207, 231, 221, 0.9);
}

.contact-card__utility p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.contact-card__utility span {
  font-size: 0.78rem;
  color: var(--muted);
}

.contact-card__utility a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.76);
}

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

.contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--gradient-card);
  border: 1px solid rgba(207, 231, 221, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(4, 78, 53, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card--highlight {
  background: linear-gradient(145deg, rgba(5, 150, 105, 0.08), rgba(255, 255, 255, 0.98));
}

.contact-card--note {
  grid-column: 1 / -1;
  background: linear-gradient(160deg, rgba(236, 253, 245, 0.94), rgba(255, 255, 255, 0.98));
}

.contact-card__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 0;
  color: var(--primary-dark);
  line-height: 1.2;
}

.contact-card__stack {
  display: grid;
  gap: 14px;
}

.contact-link-block {
  display: grid;
  gap: 4px;
}

.contact-card__label {
  font-size: 0.78rem;
  color: var(--muted);
}

.contact-card__value {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-card__value--phone {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  letter-spacing: 0.01em;
}

.contact-card__note,
.contact-card__text {
  margin: 0;
  color: var(--muted);
}

.button:focus-visible,
.slider-control:focus-visible,
.slider-dot:focus-visible,
.site-nav__list a:focus-visible {
  outline: 3px solid rgba(214, 158, 46, 0.34);
  outline-offset: 2px;
}

.hero-slider__track,
.media-frame,
.info-card,
.contact-card,
.cta-band__inner,
.split-layout {
  position: relative;
}

@media (max-width: 1024px) {
  .site-header__inner,
  .site-footer__grid,
  .cta-band__inner,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .site-header__inner,
  .site-footer__grid,
  .cta-band__inner {
    display: grid;
  }

  .site-header__contact {
    justify-self: start;
    grid-template-columns: repeat(2, auto);
  }

  .hero-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .hero-slider__track {
    height: clamp(380px, 48vh, 520px);
  }

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

  .contact-card--note {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .hero,
  .section,
  .page-hero {
    padding: 44px 0;
  }

  .site-header__inner {
    align-items: start;
    gap: 12px;
    padding: 12px 0;
  }

  .site-header__contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
  }

  .site-nav__list a {
    padding: 0 12px;
    min-height: 42px;
    font-size: 0.94rem;
  }

  .site-logo {
    width: clamp(150px, 44vw, 180px);
  }

  .footer-logo-frame {
    width: min(180px, 100%);
  }

  .hero-slider__track {
    height: clamp(260px, 36vh, 360px);
  }

  .slider-control {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
  }

  .slider-control--prev {
    left: 10px;
  }

  .slider-control--next {
    right: 10px;
  }

  .media-frame--card {
    height: 180px;
  }

  .media-frame--stacked {
    height: 240px;
  }

  .contact-card {
    padding: 18px;
  }

  .site-header__phone,
  .site-header__hours {
    gap: 1px;
  }

  .site-header__phone span,
  .site-header__hours span,
  .site-footer__contact span {
    font-size: 0.72rem;
  }

  .site-header__phone-value,
  .site-header__hours p,
  .site-header__contact .button {
    font-size: 0.92rem;
  }

  .site-header__contact .button {
    min-height: 36px;
    padding: 0 12px;
  }

  .site-header__phone,
  .site-header__hours {
    flex: 1 1 132px;
  }

  .site-header__contact .button {
    flex: 0 0 auto;
  }
}

@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;
    scroll-behavior: auto !important;
  }
}
