:root {
  --ink: #153936;
  --ink-strong: #0b2b29;
  --teal: #0f5a54;
  --teal-soft: #dcece7;
  --coral: #e56f5c;
  --coral-dark: #b9493c;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --line: #d8e3df;
  --muted: #5f716e;
  --shadow: 0 18px 44px rgba(11, 43, 41, 0.09);
  --radius: 1.1rem;
  --shell: 72rem;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.pt-button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--coral-dark);
  border: 0;
  border-radius: 0.7rem;
  font: inherit;
  font-weight: 780;
  text-decoration: none;
}

.pt-button:hover {
  color: #fff;
  background: var(--ink-strong);
}

.pt-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 7px 22px rgba(11, 43, 41, 0.055);
}

.pt-preview-badge {
  position: relative;
  z-index: 30;
  margin: 0;
  padding: 0.55rem 1rem;
  color: #fff;
  background: var(--coral-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-dark);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--ink-strong);
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 20ch;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 9vw, 4.65rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.55rem, 5vw, 2.65rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.08rem;
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 0.95rem;
  color: #fff;
  background: var(--ink-strong);
  border-radius: 0.55rem;
  transform: translateY(-180%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  color: #fff;
  background: var(--ink-strong);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-row {
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  min-width: 0;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.brand:hover {
  color: #fff;
}

.brand img {
  width: 7.6rem;
  height: auto;
}

.brand span {
  overflow: hidden;
  max-width: 7rem;
  padding-left: 0.7rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
}

.mobile-nav {
  position: relative;
  flex: 0 0 auto;
}

.mobile-nav summary {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0.6rem;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  min-width: min(17rem, calc(100vw - 2rem));
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
}

.mobile-nav nav a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--ink-strong);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 10vw, 6.5rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(229, 111, 92, 0.36), transparent 28rem),
    linear-gradient(135deg, var(--ink-strong), var(--teal));
}

.hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -9rem;
  width: 20rem;
  height: 20rem;
  border: 2rem solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero h1,
.hero h2 {
  color: #fff;
}

.hero-lead {
  max-width: 47rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 3.6vw, 1.35rem);
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb4a8;
}

.benefit-grid {
  display: grid;
  gap: 0.75rem;
}

.benefit-grid article {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  backdrop-filter: blur(5px);
}

.benefit-grid h2 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.benefit-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.section {
  padding: clamp(3.2rem, 8vw, 5.6rem) 0;
}

.section-tint {
  background: var(--teal-soft);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.65rem;
}

.section-heading h2 {
  margin-bottom: 0.65rem;
}

.section-heading p:last-child,
.lead {
  color: var(--muted);
}

.lead {
  max-width: 54rem;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
}

.page-intro {
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(1rem, 3vw, 2rem);
}

.breadcrumbs {
  padding-top: 0.8rem;
  font-size: 0.88rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.35rem;
  color: #93a29f;
}

.breadcrumbs a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.link-grid,
.service-grid {
  display: grid;
  gap: 0.8rem;
}

.link-card,
.service-card {
  min-height: 4.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.18rem;
  padding: 1rem;
  color: var(--ink-strong);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.link-card:hover,
.service-card:hover {
  background: #fff;
  border-color: var(--coral);
  box-shadow: 0 8px 24px rgba(11, 43, 41, 0.08);
}

.link-card strong,
.service-card strong {
  line-height: 1.3;
}

.link-card span,
.service-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.prose {
  max-width: 58rem;
  padding: clamp(1.25rem, 5vw, 2.4rem);
}

.prose h2 {
  margin-bottom: 1.3rem;
}

.prose p,
.prose li {
  overflow-wrap: anywhere;
}

.prose p:last-child {
  margin-bottom: 0;
}

.legacy-points {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legacy-points li {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.legacy-points li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.image-gallery {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.image-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #f1f4f1;
  border-radius: 0.8rem;
}

.image-gallery img {
  width: 100%;
  height: auto;
}

.image-gallery figcaption {
  padding: 0.55rem 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.split-section {
  display: grid;
  gap: 3rem;
}

.compact-content {
  padding-top: 0;
}

.site-footer {
  padding: 3rem 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink-strong);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand img {
  width: 8rem;
  margin-bottom: 0.9rem;
}

.footer-brand p,
.footer-legal p {
  margin-bottom: 0;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.3rem;
}

.site-footer a {
  color: #fff;
}

.site-footer nav a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
}

.content-state {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  color: #422f13;
  background: #fff3d6;
  border: 1px solid #e6c77c;
  border-left: 0.35rem solid #b66a19;
  border-radius: 0.75rem;
}

.content-state strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.content-state p {
  margin: 0;
}

.content-state-service_without_service {
  color: var(--ink);
  background: var(--teal-soft);
  border-color: var(--line);
  border-left-color: var(--teal);
}

.publication-facts {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.publication-facts div {
  padding: 0.8rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
}

.publication-facts dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.publication-facts dd {
  margin: 0.25rem 0 0;
  font-weight: 800;
}

@media (min-width: 34rem) {
  .benefit-grid,
  .service-grid,
  .link-grid,
  .image-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 48rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    align-items: center;
  }

  .destination-grid,
  .link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr 0.9fr 1fr;
  }
}

@media (min-width: 68rem) {
  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem;
  }

  .desktop-nav a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.62rem;
    color: rgba(255, 255, 255, 0.84);
    border-radius: 0.55rem;
    font-size: 0.88rem;
    font-weight: 720;
    text-decoration: none;
  }

  .desktop-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-nav {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
