@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --warmwhite: #f4fbfb;
  --white: #ffffff;
  --beige: #d6f0f2;
  --blue: #e7f8f9;
  --petrol: #007886;
  --petrol-dark: #073d46;
  --sage: #63d1d7;
  --sage-dark: #0a8a96;
  --wood: #80cbd0;
  --text: #1f2d2f;
  --muted: #637173;
  --line: rgba(7, 61, 70, 0.14);
  --shadow: 0 22px 54px rgba(7, 61, 70, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--warmwhite);
  line-height: 1.65;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 5.35rem);
  max-width: 900px;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3.2rem);
}

h3 {
  font-size: 1.34rem;
}

ul {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(31, 45, 47, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.topbar {
  background: var(--petrol-dark);
  color: var(--white);
  font-size: 0.9rem;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--petrol);
  font-family: "Lora", Georgia, serif;
  font-size: 1.15rem;
}

.brand span:last-child {
  display: block;
  max-width: 180px;
  line-height: 1.15;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  font-size: 0.91rem;
  font-weight: 700;
}

.nav-links a {
  border-radius: var(--radius);
  padding: 0.58rem 0.65rem;
  color: #314043;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(221, 236, 243, 0.86);
  color: var(--petrol-dark);
}

.nav-links .nav-cta {
  background: var(--petrol);
  color: var(--white);
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(7, 61, 70, 0.88), rgba(0, 120, 134, 0.46) 54%, rgba(99, 209, 215, 0.13)),
    var(--hero-image) center / cover no-repeat;
  color: var(--white);
}

.hero-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 7rem 0 4.8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--petrol);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero.image .eyebrow {
  color: var(--white);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero p {
  max-width: 650px;
  margin-top: 1.2rem;
  color: rgba(255, 253, 249, 0.92);
  font-size: 1.15rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1.08rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31, 45, 47, 0.13);
}

.button.primary {
  background: linear-gradient(135deg, var(--petrol), var(--sage-dark));
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 253, 249, 0.62);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.button.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--petrol-dark);
}

.section {
  padding: 5.4rem 0;
}

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

.section.blue {
  background: var(--blue);
}

.section.beige {
  background: var(--beige);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.58fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-header p,
.lead,
.text-muted {
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.grid.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(31, 45, 47, 0.06);
  overflow: hidden;
}

.card-body {
  padding: 1.35rem;
}

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

.tag {
  display: inline-block;
  margin-bottom: 1rem;
  border-radius: 999px;
  padding: 0.28rem 0.68rem;
  background: rgba(99, 209, 215, 0.2);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.image-card img,
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 1.05fr) minmax(0, 0.95fr);
}

.rounded-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--white);
}

.rounded-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.info-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  border-left: 3px solid var(--sage);
  padding-left: 0.9rem;
}

.hours {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.45rem;
}

.notice {
  border-left: 5px solid var(--petrol);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  background: rgba(99, 209, 215, 0.14);
}

.notice strong {
  color: var(--petrol-dark);
}

.page-hero {
  padding: 5rem 0 3.9rem;
  background: linear-gradient(135deg, #ffffff, #e9f9fa);
}

.page-hero.image {
  min-height: 420px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 61, 70, 0.9), rgba(0, 120, 134, 0.38)),
    var(--page-image) center / cover no-repeat;
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 2rem;
  align-items: end;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero.image p {
  color: rgba(255, 253, 249, 0.9);
}

.breadcrumb {
  margin-bottom: 1rem;
  color: var(--sage-dark);
  font-weight: 800;
}

.page-hero.image .breadcrumb {
  color: rgba(255, 253, 249, 0.84);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-grid + .notice,
.form-grid + .text-muted,
.notice + .button,
.text-muted + .button {
  margin-top: 1.15rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 45, 47, 0.23);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  background: #fffdf9;
  color: var(--text);
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(99, 209, 215, 0.35);
  border-color: var(--sage-dark);
}

.success-message {
  display: none;
  margin-top: 1rem;
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(99, 209, 215, 0.2);
  color: var(--petrol-dark);
  font-weight: 800;
}

.success-message.visible {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(31, 45, 47, 0.06);
}

.gallery-item figcaption {
  padding: 1rem;
  font-weight: 800;
}

.map-tile {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(53, 91, 100, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(53, 91, 100, 0.09) 1px, transparent 1px),
    #eef8f9;
  background-size: 54px 54px;
  border: 1px solid var(--line);
}

.map-tile::before,
.map-tile::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.map-tile::before {
  inset: 43% -18% auto -12%;
  height: 42px;
  background: rgba(143, 168, 154, 0.38);
  transform: rotate(-10deg);
}

.map-tile::after {
  width: 68px;
  height: 68px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background: var(--petrol);
  box-shadow: 0 0 0 14px rgba(53, 91, 100, 0.18);
}

.map-label {
  position: absolute;
  left: 50%;
  top: calc(48% + 55px);
  transform: translateX(-50%);
  width: min(280px, calc(100% - 32px));
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 800;
}

.team-note {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-footer {
  background: var(--petrol-dark);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.85fr 0.75fr;
  gap: 2rem;
  padding: 3.5rem 0 2rem;
}

.site-footer p,
.site-footer a,
.site-footer dd {
  color: rgba(255, 253, 249, 0.78);
}

.site-footer h2,
.site-footer h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-note {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 253, 249, 0.14);
  padding: 1rem 0;
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.14);
  padding: 1rem 0;
  color: rgba(255, 253, 249, 0.66);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 18px 1rem;
    background: var(--warmwhite);
  }

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

@media (max-width: 980px) {
  .topbar-inner {
    flex-direction: column;
    gap: 0.2rem;
  }

  .hero {
    min-height: 640px;
    background:
      linear-gradient(0deg, rgba(7, 61, 70, 0.86), rgba(0, 120, 134, 0.3)),
      var(--hero-image) center / cover no-repeat;
  }

  .section-header,
  .page-hero .section-inner,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .grid.cards-4,
  .grid.cards-3,
  .gallery-grid,
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .topbar {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-inner {
    padding: 5.5rem 0 3rem;
  }

  h1 {
    font-size: 1.62rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero h1,
  .hero p {
    max-width: 315px;
  }

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

  .grid.cards-4,
  .grid.cards-3,
  .grid.two,
  .gallery-grid,
  .footer-inner,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .rounded-image img,
  .image-card img,
  .gallery-item img {
    height: 260px;
  }

  .hours div {
    flex-direction: column;
    gap: 0.1rem;
  }
}
