:root {
  color-scheme: light;
  --ink: #173033;
  --muted: #5c6d70;
  --line: #dce8e4;
  --paper: #f7fbf9;
  --white: #ffffff;
  --teal: #0b706b;
  --teal-dark: #074f4d;
  --sage: #d9ebe1;
  --coral: #d46b55;
  --shadow: 0 18px 50px rgba(18, 55, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(247, 251, 249, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

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

.brand strong {
  font-size: 1rem;
}

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

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: var(--teal-dark);
  font-weight: 700;
}

.nav a {
  padding-block: 8px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  overflow: hidden;
  place-items: center start;
  padding: 130px clamp(20px, 6vw, 80px) 70px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 251, 249, 0.98) 0%, rgba(247, 251, 249, 0.86) 36%, rgba(247, 251, 249, 0.18) 74%),
    linear-gradient(0deg, rgba(247, 251, 249, 0.86) 0%, rgba(247, 251, 249, 0) 30%);
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 64px;
}

.content-hero img {
  display: block;
  width: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 8vw, 6.9rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.hero-text {
  max-width: 640px;
  color: #38575a;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--teal);
  box-shadow: var(--shadow);
  color: var(--white);
}

.button.primary + .button.primary {
  background: var(--coral);
}

.button.primary + .button.primary:hover {
  background: #b94f3c;
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: rgba(11, 112, 107, 0.24);
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal-dark);
}

.quick-contact {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 40px));
  margin: -46px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-contact a {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 24px;
  background: var(--white);
}

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

.quick-contact strong {
  overflow-wrap: anywhere;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: end;
}

.intro p:last-child {
  color: var(--muted);
  font-size: 1.14rem;
}

.gallery-section {
  padding-top: 24px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.photo-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-card.large {
  min-height: 520px;
}

.photo-card.wide {
  grid-column: 1 / -1;
  min-height: 430px;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--teal-dark);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

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

.service-card,
.info-card {
  min-height: 214px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card:nth-child(2),
.service-card:nth-child(5),
.info-card:nth-child(2) {
  background: var(--sage);
}

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

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

.specialty-section {
  padding-top: 28px;
}

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

.specialty-links a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.specialty-links span {
  color: var(--teal-dark);
  font-size: 1.2rem;
  font-weight: 800;
}

.specialty-links strong {
  color: var(--muted);
  font-size: 0.98rem;
}

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

.info-card {
  min-height: 230px;
}

.info-card.image-card {
  min-height: 230px;
  padding: 0;
  overflow: hidden;
}

.info-card.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.info-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.rates-section {
  padding-top: 28px;
}

.faq-section {
  padding-top: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

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

.faq-list h3 {
  margin-bottom: 8px;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-section {
  display: grid;
  gap: 16px;
  max-width: 880px;
}

.article-section h2 {
  margin: 18px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.article-section p,
.article-section li {
  color: var(--muted);
  font-size: 1.06rem;
}

.article-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.rates-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rates-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.rates-list div:last-child {
  border-bottom: 0;
}

.rates-list span {
  color: var(--muted);
}

.rates-list strong {
  color: var(--teal-dark);
  font-size: 1.08rem;
  white-space: nowrap;
}

.rates-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 20px;
  align-items: stretch;
}

.contact-panel,
.address-panel {
  border-radius: 8px;
}

.contact-panel {
  padding: clamp(30px, 5vw, 54px);
  background: var(--teal-dark);
  color: var(--white);
}

.contact-panel .section-kicker {
  color: #ffb19e;
}

.contact-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.address-panel {
  display: grid;
  gap: 7px;
  align-content: center;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-style: normal;
}

.address-panel strong {
  color: var(--ink);
  font-size: 1.5rem;
}

.address-panel a {
  width: fit-content;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 16px;
  }

  .nav {
    gap: 12px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 88svh;
    padding-top: 120px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 251, 249, 0.97) 0%, rgba(247, 251, 249, 0.86) 44%, rgba(247, 251, 249, 0.5) 100%);
  }

  h1 {
    max-width: 9ch;
  }

  .quick-contact,
  .intro,
  .content-hero,
  .photo-grid,
  .service-grid,
  .specialty-links,
  .info-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .content-hero {
    padding-top: 112px;
  }

  .photo-card,
  .photo-card.large {
    min-height: 340px;
  }

  .photo-card.wide {
    min-height: 300px;
  }

  .section {
    padding: 68px 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
    padding: 14px 18px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 86svh;
    padding: 128px 20px 44px;
  }

  h1 {
    font-size: 2.78rem;
  }

  h2 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 11px 16px;
  }

  .quick-contact,
  .section {
    width: calc(100% - 28px);
  }

  .quick-contact {
    margin-top: -28px;
  }

  .photo-card,
  .photo-card.large {
    min-height: 260px;
  }

  .photo-card.wide {
    min-height: 220px;
  }

  .photo-card figcaption {
    left: 12px;
    bottom: 12px;
  }

  .quick-contact a,
  .service-card,
  .info-card {
    padding: 22px;
  }

  .rates-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px;
  }
}
