:root {
  --primary-color: #6bb7c8;
  --secondary-color: #f2e6d0;
  --text-color: #1f3a44;
  --dark-text: #333333;
  --white: #ffffff;
  --soft-blue: #eaf7f9;
  --soft-sand: #fbf6ed;
  --muted: #61727a;
  --line: #d9e7e9;
  --footer-bg: #16343d;
  --shadow: 0 12px 34px rgba(31, 58, 68, .08);
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

.header-top {
  background: linear-gradient(135deg, var(--white) 0%, var(--soft-blue) 100%);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-color);
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 230px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.header-contact a {
  color: var(--text-color);
}

.header-contact a:hover {
  color: var(--primary-color);
}

.header-nav {
  border-top: 1px solid var(--line);
  background: var(--primary-color);
}

.header-nav-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.primary-nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 17px 0;
  display: inline-flex;
  border-bottom: 3px solid transparent;
}

.primary-nav .current-menu-item > a,
.primary-nav a:hover {
  color: var(--white);
  border-bottom-color: var(--secondary-color);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, .45);
  background: var(--white);
  color: var(--text-color);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: #1f3a44;
}

.slider-track {
  position: relative;
  min-height: 720px;
}

.slider-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  transition: opacity .7s ease, visibility .7s ease;
}

.slider-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slider-site-plan {
  background-color: #eee4d8;
  background-size: contain;
  background-repeat: no-repeat;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 58, 68, .76) 0%, rgba(31, 58, 68, .46) 46%, rgba(107, 183, 200, .12) 100%);
}

.slider-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 150px 0;
  max-width: 1120px;
}

.slider-content h1,
.slider-content h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin: 12px 0 18px;
  max-width: 720px;
}

.slider-content p {
  font-size: 20px;
  max-width: 660px;
  color: #f4fbfc;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(107, 183, 200, .62);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.slider-prev {
  left: 22px;
}

.slider-next {
  right: 22px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid var(--white);
  background: rgba(255, 255, 255, .38);
  padding: 0;
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--secondary-color);
}

.eyebrow {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-metrics span {
  min-width: 140px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  color: #f5fbfc;
  backdrop-filter: blur(8px);
}

.hero-metrics strong {
  display: block;
  color: var(--secondary-color);
  font-size: 24px;
  line-height: 1.1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(107, 183, 200, .24);
}

.btn-primary:hover,
.btn-light:hover,
.btn-ghost:hover {
  text-decoration: none;
}

.btn-primary:hover {
  background: #5aaabb;
}

.btn-ghost {
  border-color: var(--primary-color);
  color: var(--text-color);
  background: var(--white);
}

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

.hero-panel {
  display: grid;
  gap: 14px;
}

.hero-panel div,
.card,
.feature,
.management-box {
  background: var(--soft-sand);
  border: 1px solid rgba(242, 230, 208, .95);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel strong {
  font-size: 28px;
  color: var(--text-color);
}

.section {
  padding: 64px 0;
}

.home-intro {
  background: var(--white);
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: center;
}

.home-intro-copy h2 {
  margin: 8px 0 18px;
  font-size: 38px;
  line-height: 1.16;
}

.home-intro-copy p {
  color: var(--dark-text);
  font-size: 17px;
}

.home-intro-copy .btn {
  margin-top: 10px;
}

.home-photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 460px;
}

.home-photo-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-photo-mosaic .home-photo-main {
  grid-row: 1 / span 2;
}

.muted {
  background: linear-gradient(135deg, var(--soft-sand) 0%, var(--soft-blue) 100%);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.split h2,
.section-head h2,
.cta-inner h2 {
  margin: 8px 0 0;
  font-size: 32px;
  line-height: 1.2;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

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

.card time {
  color: var(--muted);
  font-size: 13px;
}

.card h2,
.card h3 {
  line-height: 1.25;
  margin: 10px 0;
  color: var(--text-color);
}

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

.feature h3 {
  margin-top: 0;
  color: var(--text-color);
}

.feature a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--text-color);
  font-weight: 800;
}

.feature h3::before,
.support-card h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

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

.image-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.image-card div {
  padding: 20px;
}

.image-card span {
  display: inline-block;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.image-card h3 {
  margin: 8px 0 8px;
  color: var(--text-color);
  line-height: 1.25;
}

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

.home-gallery-preview {
  background: var(--white);
}

.site-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.site-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--text-color);
  box-shadow: var(--shadow);
}

.site-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .24s ease, opacity .24s ease;
}

.site-gallery-item:hover img {
  opacity: .86;
  transform: scale(1.04);
}

.site-colorbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  background: rgba(13, 29, 35, .86);
}

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

.site-colorbox-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  max-width: 90vw;
  max-height: 90vh;
}

.site-colorbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

.site-colorbox button {
  position: absolute;
  border: 0;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  color: var(--text-color);
  background: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  box-shadow: var(--shadow);
}

.site-colorbox-close {
  top: -18px;
  right: -18px;
}

.site-colorbox-prev,
.site-colorbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.site-colorbox-prev {
  left: -56px;
}

.site-colorbox-next {
  right: -56px;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary-color) 0%, #7fc4d1 100%);
  color: var(--white);
  padding: 42px 0;
}

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

.cta-inner p {
  margin: 8px 0 0;
  color: #f5fbfc;
}

.home-scenic-cta {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.home-scenic-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(31, 58, 68, .74) 0%, rgba(31, 58, 68, .44) 48%, rgba(31, 58, 68, .1) 100%);
}

.home-scenic-inner {
  color: var(--white);
  padding: 86px 0;
}

.home-scenic-inner .eyebrow {
  color: var(--secondary-color);
}

.home-scenic-inner h2 {
  max-width: 680px;
  margin: 10px 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}

.home-scenic-inner p {
  max-width: 640px;
  margin: 0;
  color: #f4fbfc;
  font-size: 19px;
}

.contact-strip {
  padding: 32px 0;
  background: var(--soft-sand);
}

.contact-strip span {
  margin-left: 18px;
}

.page-title {
  background: linear-gradient(135deg, var(--soft-blue) 0%, var(--secondary-color) 100%);
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  margin: 0;
  font-size: 40px;
  color: var(--text-color);
}

.content-wrap {
  max-width: 860px;
}

.content-wrap p {
  font-size: 18px;
}

.site-footer {
  background: var(--footer-bg);
  color: #e6f1f3;
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}

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

.footer-credit {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  text-align: center;
  font-size: 13px;
}

.footer-credit a {
  opacity: .78;
}

.footer-credit a:hover {
  opacity: 1;
}

.management-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.management-form input,
.management-form select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text-color);
}

.management-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.management-table th,
.management-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.management-table th {
  background: var(--secondary-color);
  color: var(--text-color);
}

.status-paid {
  color: #157347;
  font-weight: 700;
}

.status-due {
  color: #b42318;
  font-weight: 700;
}

.about-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 58, 68, .74) 0%, rgba(31, 58, 68, .46) 48%, rgba(107, 183, 200, .14) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 92px 0;
}

.about-hero-content .eyebrow {
  color: var(--secondary-color);
}

.about-hero-content h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  margin: 12px 0 18px;
}

.about-hero-content p {
  max-width: 720px;
  font-size: 20px;
  color: #f4fbfc;
}

.about-stats-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.about-stats div {
  background: var(--soft-sand);
  padding: 24px;
  text-align: center;
}

.about-stats strong {
  display: block;
  color: var(--primary-color);
  font-size: 30px;
  line-height: 1;
}

.about-stats span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-top: 8px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.about-intro-grid h2 {
  font-size: 34px;
  line-height: 1.18;
  margin: 8px 0 16px;
}

.about-intro-grid p {
  font-size: 18px;
  color: var(--dark-text);
}

.about-intro-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(31, 58, 68, .16);
}

.about-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.about-side-card,
.about-content-card {
  background: var(--soft-sand);
  border: 1px solid rgba(242, 230, 208, .95);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-side-card {
  position: sticky;
  top: 158px;
  padding: 24px;
}

.about-side-card h2 {
  margin: 8px 0 16px;
}

.about-side-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--dark-text);
}

.about-side-card li {
  margin: 10px 0;
}

.about-content-card {
  padding: 34px;
  background: var(--white);
}

.about-content-card h2 {
  font-size: 34px;
  margin-top: 0;
}

.about-content-card h3 {
  font-size: 24px;
  margin-top: 34px;
  color: var(--text-color);
}

.about-content-card p,
.about-content-card li {
  font-size: 17px;
  color: var(--dark-text);
}

.about-content-card ul {
  padding-left: 22px;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.about-timeline div {
  border: 1px solid rgba(242, 230, 208, .95);
  border-radius: 8px;
  padding: 20px;
  background: var(--soft-sand);
}

.about-timeline time {
  display: block;
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 10px;
}

.about-timeline strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.about-timeline p {
  margin: 0;
  color: var(--muted);
}

.contact-hero {
  background: linear-gradient(135deg, var(--soft-blue) 0%, var(--white) 54%, var(--secondary-color) 100%);
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
}

.contact-hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  margin: 12px 0 18px;
}

.contact-hero p {
  font-size: 20px;
  color: var(--dark-text);
  max-width: 680px;
}

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

.contact-quick-card strong,
.contact-quick-card a {
  display: block;
}

.contact-quick-card a {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-color);
  margin: 8px 0;
}

.contact-quick-card span {
  color: var(--muted);
  font-weight: 700;
}

.contact-page-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.contact-info-panel,
.contact-map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info-panel {
  padding: 30px;
}

.contact-info-panel h2 {
  font-size: 34px;
  line-height: 1.2;
  margin: 8px 0 22px;
}

.contact-card-list {
  display: grid;
  gap: 12px;
}

.contact-card-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  color: var(--text-color);
  background: var(--soft-sand);
}

.contact-card-item:hover {
  text-decoration: none;
  border-color: var(--primary-color);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--primary-color);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.contact-card-item small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .06em;
}

.contact-card-item strong {
  display: block;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.35;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-map-panel {
  overflow: hidden;
  min-height: 100%;
}

.map-frame {
  height: 100%;
  min-height: 520px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

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

.support-card {
  background: var(--soft-sand);
  border: 1px solid rgba(242, 230, 208, .95);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.support-card h3 {
  margin-top: 0;
  color: var(--text-color);
}

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

@media (max-width: 920px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-side-card {
    position: static;
  }

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

@media (max-width: 900px) {
  .contact-hero-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 420px;
  }

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

@media (max-width: 820px) {
  .hero-slider,
  .slider-track {
    min-height: 620px;
  }

  .slider-content {
    padding: 96px 0 120px;
  }

  .slider-content h1,
  .slider-content h2 {
    font-size: 38px;
  }

  .slider-content p {
    font-size: 17px;
  }

  .slider-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .slider-prev {
    left: 16px;
  }

  .slider-next {
    right: 16px;
  }

  .slider-dots {
    bottom: 30px;
  }

  .header-top-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
    gap: 10px;
  }

  .brand-logo {
    width: 190px;
    max-height: 58px;
  }

  .header-contact {
    display: grid;
    gap: 4px;
    font-size: 13px;
  }

  .header-nav-inner {
    min-height: 54px;
    justify-content: flex-end;
  }

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

  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 0;
    padding: 16px;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 12px;
    justify-content: start;
  }

  .primary-nav a {
    color: var(--text-color);
    padding: 0;
    border-bottom: 0;
  }

  .primary-nav .current-menu-item > a,
  .primary-nav a:hover {
    color: var(--primary-color);
  }

  .split,
  .home-intro-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .feature-grid,
  .image-card-grid,
  .site-gallery-grid {
    grid-template-columns: 1fr;
  }

  .home-photo-mosaic {
    min-height: auto;
  }

  .section-head,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-colorbox {
    padding: 18px;
  }

  .site-colorbox-prev {
    left: 8px;
  }

  .site-colorbox-next {
    right: 8px;
  }

  .site-colorbox-close {
    top: 8px;
    right: 8px;
  }

  .contact-strip span {
    display: block;
    margin-left: 0;
  }

  .page-title h1 {
    font-size: 32px;
  }
}

@media (max-width: 620px) {
  .about-hero {
    min-height: 380px;
  }

  .about-hero-content {
    padding: 66px 0;
  }

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

  .about-content-card {
    padding: 24px;
  }

  .about-content-card h2,
  .about-intro-grid h2 {
    font-size: 28px;
  }

  .contact-hero {
    padding: 54px 0;
  }

  .contact-info-panel {
    padding: 22px;
  }

  .contact-card-item strong {
    font-size: 15px;
  }

  .contact-quick-card a {
    font-size: 22px;
  }

  .map-frame {
    min-height: 340px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-metrics span {
    min-width: 0;
  }

  .home-intro-copy h2 {
    font-size: 30px;
  }

  .home-photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .home-photo-mosaic .home-photo-main {
    grid-row: auto;
  }

  .home-photo-mosaic img {
    aspect-ratio: 4 / 3;
  }

  .home-scenic-cta {
    min-height: 460px;
  }

  .home-scenic-inner {
    padding: 64px 0;
  }
}
