:root {
  --paper: #edf5f3;
  --paper-strong: #f6f1e7;
  --panel: #f3eee3;
  --panel-soft: rgba(246, 241, 231, 0.86);
  --light: #fff7ea;
  --ink: #102a43;
  --muted: #5f6f78;
  --soft: #cfe8e3;
  --teal: #0f8f8c;
  --teal-dark: #096865;
  --navy: #12324a;
  --coral: #d9654f;
  --amber: #e6b05a;
  --line: rgba(16, 42, 67, 0.14);
  --line-strong: rgba(16, 42, 67, 0.24);
  --shadow: 0 24px 80px rgba(16, 42, 67, 0.15);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:focus-visible {
  outline: 3px solid rgba(15, 143, 140, 0.34);
  outline-offset: 3px;
}

section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 247, 234, 0.34);
  color: var(--light);
  background: rgba(9, 104, 101, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 202px;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 247, 234, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 247, 234, 0.92), rgba(207, 232, 227, 0.76)),
    var(--soft);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.brand-mark::before {
  position: absolute;
  inset: 9px 12px 8px;
  border-radius: 52% 52% 46% 46%;
  background:
    radial-gradient(circle at 50% 18%, transparent 0 4px, var(--teal-dark) 4.5px 5.5px, transparent 6px),
    linear-gradient(180deg, var(--teal), var(--teal-dark));
  clip-path: polygon(50% 0, 86% 14%, 100% 46%, 76% 100%, 51% 78%, 25% 100%, 0 46%, 14% 14%);
  content: "";
}

.brand strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  margin-top: 5px;
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.92rem;
  color: rgba(255, 247, 234, 0.82);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--light);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--light);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  min-width: 202px;
}

.button,
.header-cta,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 760;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.header-cta:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal);
  color: var(--light);
  box-shadow: 0 18px 48px rgba(15, 143, 140, 0.26);
}

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

.button-secondary {
  border-color: rgba(255, 247, 234, 0.48);
  background: rgba(255, 247, 234, 0.14);
  color: var(--light);
}

.header-cta {
  border-color: rgba(255, 247, 234, 0.52);
  background: rgba(255, 247, 234, 0.16);
  color: var(--light);
}

.text-link {
  min-height: auto;
  border-color: var(--line-strong);
  padding: 12px 14px;
  color: var(--teal-dark);
  background: var(--panel);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 42px) clamp(18px, 5vw, 72px) 54px;
  color: var(--light);
  isolation: isolate;
}

.hero picture,
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 43, 64, 0.88), rgba(9, 43, 64, 0.54) 43%, rgba(9, 43, 64, 0.12) 78%),
    linear-gradient(180deg, rgba(6, 34, 44, 0.2), rgba(6, 34, 44, 0.45));
  content: "";
}

.hero-inner {
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 860;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd4ca;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8.5vw, 7.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 247, 234, 0.86);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 247, 234, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  border: 1px solid rgba(255, 247, 234, 0.18);
  border-radius: 6px;
  padding: 14px;
  background: rgba(255, 247, 234, 0.12);
}

.hero-panel span,
.detail-card span,
.hours span,
.legal-note span {
  display: block;
  color: rgba(255, 247, 234, 0.7);
  font-size: 0.78rem;
}

.hero-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--light);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.trust-strip div {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid var(--line);
  padding: 18px clamp(16px, 3vw, 38px);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--navy);
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(24px, 7vw, 92px);
  align-items: end;
  margin-bottom: 34px;
}

.split-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card,
.detail-card,
.gallery-card,
.contact-panel,
.hours {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  box-shadow: 0 18px 58px rgba(16, 42, 67, 0.08);
}

.service-card {
  min-height: 214px;
  display: grid;
  align-content: space-between;
  padding: 22px;
}

.service-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--light);
  background: var(--teal);
  font-weight: 800;
}

.service-card:nth-child(2) .icon {
  background: var(--coral);
}

.service-card:nth-child(3) .icon {
  background: var(--navy);
}

.service-card:nth-child(4) .icon {
  background: var(--amber);
  color: #352512;
}

.service-card p,
.detail-card p,
.gallery-card p,
.contact-panel p,
.hours p,
.legal-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.calm-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  min-height: 620px;
  background: var(--navy);
  color: var(--light);
}

.calm-copy {
  display: grid;
  align-content: center;
  padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.calm-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 247, 234, 0.78);
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  max-width: 560px;
}

.step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--panel);
  font-weight: 840;
}

.step strong {
  display: block;
  margin-bottom: 2px;
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 247, 234, 0.72);
}

.calm-image {
  min-height: 420px;
}

.calm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(207, 232, 227, 0.54), rgba(237, 245, 243, 0.96)),
    var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.88fr 0.88fr;
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
  background: var(--panel);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card:first-child img {
  aspect-ratio: 4 / 3;
}

.gallery-card div {
  padding: 18px;
}

.detail-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.detail-card {
  padding: 18px;
}

.detail-card span {
  color: var(--teal-dark);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-panel,
.hours {
  padding: clamp(24px, 4vw, 34px);
}

.contact-panel {
  display: grid;
  align-content: space-between;
  gap: 30px;
  color: var(--light);
  background:
    linear-gradient(145deg, rgba(15, 143, 140, 0.92), rgba(18, 50, 74, 0.96)),
    var(--navy);
}

.contact-panel .eyebrow,
.legal-band .eyebrow {
  color: #ffd4ca;
}

.contact-panel p {
  color: rgba(255, 247, 234, 0.78);
}

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

.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 247, 234, 0.2);
  border-radius: 6px;
  padding: 14px 16px;
  background: rgba(255, 247, 234, 0.12);
}

.contact-list a span {
  color: rgba(255, 247, 234, 0.7);
  font-size: 0.82rem;
}

.map-block {
  min-height: 250px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(45deg, transparent 0 46%, rgba(15, 143, 140, 0.22) 46% 54%, transparent 54%),
    linear-gradient(135deg, transparent 0 42%, rgba(217, 101, 79, 0.18) 42% 49%, transparent 49%),
    linear-gradient(90deg, rgba(16, 42, 67, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 42, 67, 0.08) 1px, transparent 1px),
    #e7f0ed;
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px, auto;
}

.map-pin {
  width: max-content;
  max-width: 100%;
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.map-pin strong,
.map-pin span {
  display: block;
}

.map-pin span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hours {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.hours-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.hours strong {
  text-align: right;
}

.legal-band {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
  color: var(--light);
  background: #0e2233;
}

.legal-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(24px, 7vw, 90px);
  margin: 0 auto;
}

.legal-note {
  display: grid;
  gap: 16px;
}

.legal-note div {
  border-top: 1px solid rgba(255, 247, 234, 0.16);
  padding-top: 16px;
}

.legal-note span {
  color: rgba(255, 247, 234, 0.58);
}

.legal-note p {
  color: rgba(255, 247, 234, 0.78);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 247, 234, 0.76);
  background: #081722;
}

.site-footer strong {
  color: var(--light);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.reviews-section {
  background: var(--paper);
}

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

.review-card {
  min-height: 292px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel-soft);
  box-shadow: 0 18px 58px rgba(16, 42, 67, 0.08);
}

.review-rating {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.4vw, 1.75rem);
  line-height: 1.18;
}

.review-card footer {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 16px;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.solid-header {
  background: rgba(8, 23, 34, 0.96);
  border-bottom-color: rgba(255, 247, 234, 0.14);
  box-shadow: 0 16px 48px rgba(8, 23, 34, 0.2);
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  padding: calc(var(--header-height) + 66px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 82px);
  color: var(--light);
  background:
    linear-gradient(135deg, rgba(18, 50, 74, 0.96), rgba(9, 104, 101, 0.9)),
    var(--navy);
}

.legal-hero-inner,
.legal-content-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.95;
}

.legal-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 247, 234, 0.82);
  font-size: 1.08rem;
}

.legal-content {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel-soft);
  box-shadow: 0 18px 58px rgba(16, 42, 67, 0.08);
}

.legal-card + .legal-card {
  margin-top: 16px;
}

.legal-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

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

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  padding-left: 1.2rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    min-height: auto;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand,
  .header-actions {
    min-width: 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 138px;
  }

  .hero-inner,
  .split-heading,
  .calm-band,
  .contact-layout,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .trust-strip,
  .service-grid,
  .detail-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .calm-image {
    order: -1;
  }

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

  .gallery-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 116px;
  }

  .site-header {
    position: absolute;
  }

        .solid-header {
          position: fixed;
        }

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

  .brand small {
    font-size: 0.62rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 82svh;
    padding: 136px 18px 44px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(9, 43, 64, 0.88), rgba(9, 43, 64, 0.66) 55%, rgba(9, 43, 64, 0.38)),
      linear-gradient(90deg, rgba(9, 43, 64, 0.42), transparent);
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .button,
  .header-cta,
  .text-link {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .trust-strip,
  .service-grid,
  .detail-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 18px;
  }

  .section {
    padding: 62px 18px;
  }

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

  .calm-copy,
  .legal-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .calm-band {
    min-height: auto;
  }

  .calm-image {
    min-height: 320px;
  }

  .contact-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hours strong {
    text-align: left;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
