:root {
  --mint: #0F8C7E;
  --mint-dark: #0C7266;
  --tint: #EAF5F2;
  --deep: #0B3D38;
  --ink: #1F2937;
  --muted: #5A6B68;
  --line: #D8E8E3;
  --white: #FFFFFF;
  --shadow: 0 8px 24px rgba(11, 61, 56, 0.08);
  --shadow-lift: 0 12px 32px rgba(11, 61, 56, 0.14);
  --radius-lg: 16px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --font-head: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', 'Segoe UI', Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: var(--mint-dark);
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--deep);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
}

.wrap {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.9rem;
}

.topbar {
  background: var(--deep);
  color: var(--white);
  font-size: 0.88rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar__hours {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 50;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--deep);
}

.site-nav {
  display: flex;
  gap: 1.75rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--mint-dark);
  border-bottom-color: var(--mint);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle__bar {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--deep);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: var(--mint);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--mint-dark);
}

.btn--soft {
  background: var(--white);
  color: var(--deep);
  box-shadow: var(--shadow);
}

.btn--soft:hover {
  background: var(--tint);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.hero {
  background: var(--tint);
  padding: 4rem 0 4.5rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero__text h1 {
  margin-bottom: 1.1rem;
}

.hero__text p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero__media {
  position: relative;
}

.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.hero__card {
  position: absolute;
  left: -1.25rem;
  bottom: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  padding: 0.9rem 1.3rem;
}

.hero__card strong {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--deep);
  display: block;
  font-size: 1rem;
}

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

.layout {
  display: block;
  padding: 3.5rem 0 1rem;
}

.layout__main > section {
  margin-bottom: 3.75rem;
}

.facts-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.facts-card h2 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.facts-card__block {
  margin-bottom: 1.25rem;
}

.facts-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.2rem;
}

.facts-card__block p {
  margin: 0;
}

.facts-card__block a {
  font-weight: 600;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--tint);
  font-size: 0.97rem;
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list span:last-child {
  color: var(--muted);
}

.mini-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.mini-service {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--mint);
  padding: 1.25rem 1.4rem;
}

.mini-service h3 {
  color: var(--deep);
  margin-bottom: 0.3rem;
}

.mini-service p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.75rem 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1.9rem 1.6rem 1.6rem;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mint);
}

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--deep);
  margin-bottom: 0.6rem;
}

.service-card p {
  margin: 0;
  font-size: 0.99rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.step {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem;
}

.step__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.4rem;
}

.step p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}

.split--rev {
  direction: rtl;
}

.split--rev > * {
  direction: ltr;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.note-card {
  background: var(--tint);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.97rem;
  margin-top: 1rem;
}

.note-card p {
  margin: 0;
}

.info-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.info-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.info-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.info-card h3 {
  margin-bottom: 0.4rem;
}

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

.notice {
  background: var(--tint);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.notice p {
  margin: 0;
}

.cta-band {
  background: var(--tint);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  text-align: center;
}

.cta-band p {
  max-width: 62ch;
  margin: 0 auto 1.5rem;
}

.page-head {
  background: var(--tint);
  padding: 3.25rem 0;
}

.page-head p {
  max-width: 62ch;
  color: var(--muted);
  margin: 0.5rem 0 0;
  font-size: 1.08rem;
}

.page-body {
  padding: 3.25rem 0 1rem;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin-top: 2.1rem;
  font-size: 1.35rem;
}

.prose ul {
  margin: 0 0 1.1rem 1.3rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.updated {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.4rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.97rem;
}

.policy-table th,
.policy-table td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  vertical-align: top;
}

.policy-table th {
  background: var(--tint);
  color: var(--deep);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.contact-details h2,
.contact-form-wrap h2,
.map-wrap h2 {
  font-size: 1.4rem;
}

.detail-block {
  margin-bottom: 1.35rem;
}

.detail-block .facts-card__label {
  margin-bottom: 0.15rem;
}

.detail-block p {
  margin: 0;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-form .field {
  margin-bottom: 1.15rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--mint);
  outline-offset: 1px;
  border-color: var(--mint);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.9rem;
  margin-bottom: 0;
}

.map-wrap {
  margin-bottom: 3rem;
}

.map-embed {
  width: 100%;
  border: 0;
  min-height: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--deep);
  color: #D9E8E5;
  margin-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.25rem 0 2.25rem;
}

.footer-brand {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.site-footer p {
  margin-bottom: 0.5rem;
  font-size: 0.97rem;
}

.site-footer a {
  color: #D9E8E5;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.4rem 0 2rem;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  color: rgba(217, 232, 229, 0.75);
  max-width: 90ch;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 -8px 24px rgba(11, 61, 56, 0.28);
}

.cookie-banner__inner {
  width: min(1140px, 92%);
  margin: 0 auto;
  padding: 1.15rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 62ch;
}

.cookie-banner a {
  color: #9FE0D6;
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.7rem;
}

.cookie-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  border: 0;
  cursor: pointer;
}

.cookie-btn--accept {
  background: var(--mint);
  color: var(--white);
}

.cookie-btn--accept:hover {
  background: var(--mint-dark);
}

.cookie-btn--decline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.cookie-btn--decline:hover {
  border-color: var(--white);
}

@media (max-width: 1020px) {
  .hero__inner {
    gap: 2rem;
  }

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

@media (min-width: 961px) {
  .layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
  }

  .layout__main {
    grid-column: 2;
    grid-row: 1;
  }

  .layout__side {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 1.5rem;
  }
}

@media (max-width: 960px) {
  .layout {
    padding-top: 2.75rem;
  }

  .layout__side {
    margin-top: 1rem;
  }

  .hero {
    padding: 3rem 0 3.5rem;
  }

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

  .hero__card {
    left: 1rem;
  }

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

  .split--rev {
    direction: ltr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 4% 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--tint);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .info-pair {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }
}
