:root {
  --navy-950: #021f2b;
  --navy-900: #05384b;
  --navy-800: #07506a;
  --teal-700: #087f80;
  --teal-600: #0b9998;
  --teal-500: #11a7a5;
  --teal-200: #a8ebe6;
  --teal-100: #dff8f5;
  --sand-100: #f7f3e9;
  --sand-200: #eee5d1;
  --gold-500: #f2ae43;
  --ink: #142d36;
  --muted: #597078;
  --white: #ffffff;
  --surface: #f7faf9;
  --line: #d8e4e4;
  --danger: #a62d2d;
  --success: #176b52;
  --shadow-sm: 0 8px 28px rgba(2, 31, 43, 0.08);
  --shadow-lg: 0 24px 70px rgba(2, 31, 43, 0.18);
  --radius-sm: 0.55rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --container: 75rem;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a:hover {
  color: var(--navy-900);
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.65rem, 8vw, 5.6rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.45rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

.narrow {
  width: min(48rem, 100%);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
}

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

.topbar {
  background: var(--navy-950);
  color: #dff7f6;
  font-size: 0.86rem;
}

.topbar-inner {
  display: flex;
  min-height: 2.6rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.topbar a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--white);
  text-decoration: underline;
}

.topbar .topbar-secondary {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(216, 228, 228, 0.8);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 22px rgba(2, 31, 43, 0.05);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  position: relative;
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-950);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy-950);
}

.brand-emblem {
  display: grid;
  width: 2.65rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.2);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 3vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand-subtitle {
  margin-top: 0.25rem;
  color: var(--teal-700);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  display: inline-grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 1.25rem;
  height: 2px;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-lines::before {
  top: -0.4rem;
}

.nav-toggle-lines::after {
  top: 0.4rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(0.4rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  z-index: 90;
  inset: 7.4rem 0 0;
  display: none;
  overflow-y: auto;
  padding: 1.25rem 1rem 7rem;
  background: var(--white);
}

.primary-nav.is-open {
  display: block;
}

.nav-list {
  display: grid;
  width: min(100%, 36rem);
  margin: 0 auto;
  padding: 0;
  gap: 0.2rem;
  list-style: none;
}

.nav-list > li > a,
.nav-dropdown summary {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--navy-950);
  font-weight: 750;
  text-decoration: none;
}

.nav-list > li > a:hover,
.nav-list > li > a[aria-current="page"],
.nav-dropdown summary:hover {
  background: var(--teal-100);
  color: var(--teal-700);
}

.nav-dropdown summary {
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

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

.nav-dropdown summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 500;
}

.nav-dropdown[open] summary::after {
  content: "−";
}

.nav-dropdown-menu {
  display: grid;
  margin: 0;
  padding: 0.25rem 0 0.55rem 1rem;
  gap: 0.1rem;
  list-style: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: var(--sand-100);
  color: var(--teal-700);
}

.button,
button.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--teal-600);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(11, 153, 152, 0.23);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--teal-700);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(11, 153, 152, 0.3);
}

.button:active {
  transform: translateY(0);
}

.button-light {
  background: var(--white);
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}

.button-light:hover {
  background: var(--teal-100);
  color: var(--navy-950);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(2, 31, 43, 0.2);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(2, 31, 43, 0.2);
}

.button-dark:hover {
  background: var(--navy-800);
}

.button-small {
  min-height: 2.7rem;
  padding: 0.6rem 1rem;
  font-size: 0.92rem;
}

.nav-cta {
  margin-top: 0.7rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(39rem, 82vh, 49rem);
  align-items: end;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-media,
.page-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  object-position: 72% center;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 31, 43, 0.92) 0%, rgba(2, 31, 43, 0.74) 45%, rgba(2, 31, 43, 0.16) 78%), linear-gradient(0deg, rgba(2, 31, 43, 0.55) 0%, transparent 48%);
  content: "";
}

.hero-content {
  max-width: 50rem;
  padding-block: clamp(5.5rem, 12vw, 9rem) clamp(3.5rem, 8vw, 6rem);
  color: var(--white);
}

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

.hero-lede {
  max-width: 43rem;
  margin-bottom: 1.8rem;
  color: #e5f5f4;
  font-size: clamp(1.08rem, 2.5vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: var(--teal-200);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  padding: 0;
  gap: 0.6rem;
  list-style: none;
}

.hero-facts li {
  padding: 0.48rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(2, 31, 43, 0.24);
  color: #edfafa;
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(5px);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  padding-block: 1.25rem;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-item {
  display: grid;
  min-height: 5rem;
  align-content: center;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.trust-item strong {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.8rem;
}

.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

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

.section-sand {
  background: var(--sand-100);
}

.section-navy {
  background: var(--navy-950);
  color: #dbecee;
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-heading {
  max-width: 49rem;
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.section-heading p {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-navy .section-heading p {
  color: #b9d2d5;
}

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

.card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal-700);
  font-weight: 850;
  text-decoration: none;
}

.card-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.card-link:hover::after {
  transform: translateX(0.25rem);
}

.card-number {
  display: inline-grid;
  width: 2.7rem;
  aspect-ratio: 1;
  margin-bottom: 1.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  font-weight: 900;
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.split-media {
  position: relative;
}

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

.floating-note {
  position: absolute;
  right: -0.25rem;
  bottom: -1.25rem;
  max-width: 14rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.floating-note strong {
  display: block;
  color: var(--teal-200);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.feature-list,
.check-list,
.plain-list {
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.75rem;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.62rem;
  left: 0;
  color: var(--teal-600);
  font-weight: 900;
  content: "✓";
}

.plain-list li {
  padding-block: 0.3rem;
}

.quote {
  margin: 0;
  padding: clamp(1.6rem, 5vw, 3rem);
  border-left: 5px solid var(--teal-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--white);
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.45;
  box-shadow: var(--shadow-sm);
}

.quote cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 750;
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.3rem, 8vw, 5.5rem);
  background: var(--navy-900);
  color: var(--white);
}

.cta-band::after {
  position: absolute;
  z-index: -1;
  top: -13rem;
  right: -8rem;
  width: 28rem;
  aspect-ratio: 1;
  border: 5rem solid rgba(17, 167, 165, 0.18);
  border-radius: 50%;
  content: "";
}

.cta-band-inner {
  display: grid;
  align-items: center;
  gap: 1.5rem;
}

.cta-band h2 {
  margin-bottom: 0.7rem;
  color: var(--white);
}

.cta-band p {
  max-width: 43rem;
  margin-bottom: 0;
  color: #cce2e4;
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(22rem, 48vw, 32rem);
  align-items: end;
  overflow: hidden;
  background: var(--navy-950);
}

.page-hero-media {
  object-position: center;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 31, 43, 0.91) 0%, rgba(2, 31, 43, 0.62) 58%, rgba(2, 31, 43, 0.22) 100%), linear-gradient(0deg, rgba(2, 31, 43, 0.55), transparent 55%);
  content: "";
}

.page-hero-content {
  max-width: 56rem;
  padding-block: 5rem 3.5rem;
  color: #e4f4f4;
}

.page-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 7vw, 4.9rem);
}

.page-hero p {
  max-width: 45rem;
  margin-bottom: 0;
  font-size: clamp(1.03rem, 2.4vw, 1.22rem);
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: #cce6e7;
  font-size: 0.85rem;
}

.breadcrumbs a {
  color: var(--white);
}

.content-layout {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.prose {
  max-width: 50rem;
}

.prose > * + * {
  margin-top: 1.25rem;
}

.prose h2 {
  margin-top: 2.6rem;
  font-size: clamp(1.85rem, 4vw, 2.7rem);
}

.prose h3 {
  margin-top: 2rem;
}

.prose p,
.prose li {
  color: #334e57;
}

.prose img {
  margin-block: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.sidebar-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--navy-950);
  color: #d7ebec;
  box-shadow: var(--shadow-lg);
}

.sidebar-card h2,
.sidebar-card h3 {
  color: var(--white);
  font-size: 1.65rem;
}

.sidebar-card a:not(.button) {
  color: var(--teal-200);
}

.sidebar-card .button {
  width: 100%;
  margin-top: 1rem;
}

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

.info-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.info-card h3 {
  font-size: 1.35rem;
}

.notice {
  margin-block: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--teal-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--teal-100);
  color: var(--navy-950);
}

.notice-warning {
  border-left-color: var(--gold-500);
  background: #fff7e7;
}

.table-wrap {
  overflow-x: auto;
  margin-block: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  display: flex;
  min-height: 3.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: var(--navy-950);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--teal-700);
  font-size: 1.4rem;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--muted);
}

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

.review-card {
  display: grid;
  min-height: 100%;
  align-content: start;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.stars {
  margin-bottom: 0.75rem;
  color: #b96f00;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.review-card h2,
.review-card h3 {
  font-size: 1.45rem;
}

.review-card p {
  color: var(--muted);
}

.review-author {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--navy-950);
  font-size: 0.88rem;
  font-weight: 850;
}

.gallery-grid {
  display: grid;
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 17rem;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(2, 31, 43, 0.8);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 750;
  text-align: left;
  backdrop-filter: blur(5px);
}

.lightbox {
  width: min(68rem, calc(100% - 1.5rem));
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.lightbox::backdrop {
  background: rgba(2, 20, 29, 0.84);
  backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
}

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
}

.lightbox-close {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.form-shell {
  padding: clamp(1.35rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  display: grid;
  gap: 0.35rem;
}

.form-group label,
.fieldset-legend {
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 850;
}

.required {
  color: var(--danger);
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid #b8c9cc;
  border-radius: var(--radius-sm);
  background: var(--white);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--teal-600);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-700);
  outline: 3px solid rgba(17, 167, 165, 0.2);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.choice input {
  width: 1.1rem;
  min-height: auto;
  height: 1.1rem;
  accent-color: var(--teal-700);
}

.form-help {
  color: var(--muted);
  font-size: 0.8rem;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--success);
  font-weight: 750;
}

.form-status.error {
  color: var(--danger);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.contact-card span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  color: var(--navy-950);
  font-size: 1.05rem;
  font-weight: 850;
}

.site-footer {
  padding-block: 4rem 1.4rem;
  background: var(--navy-950);
  color: #bcd2d5;
}

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

.footer-brand .brand {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand .brand-subtitle {
  color: var(--teal-200);
}

.footer-brand p {
  max-width: 25rem;
}

.footer-heading {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: #cfdee0;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  gap: 0.5rem;
  color: #91afb3;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-action-bar {
  position: fixed;
  z-index: 120;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(2, 31, 43, 0.95);
  box-shadow: var(--shadow-lg);
  gap: 0.45rem;
  backdrop-filter: blur(12px);
}

.mobile-action-bar a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.mobile-action-bar a:last-child {
  background: var(--teal-500);
}

.center {
  text-align: center;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 38rem) {
  .topbar-inner {
    justify-content: space-between;
    text-align: left;
  }

  .topbar .topbar-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
  }

  .trust-grid,
  .card-grid,
  .info-grid,
  .review-grid,
  .contact-cards,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-group-full,
  .form-grid > fieldset,
  .form-grid > .form-actions {
    grid-column: 1 / -1;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 60rem) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: block;
    overflow: visible;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    display: flex;
    width: auto;
    align-items: center;
    gap: 0.15rem;
  }

  .nav-list > li > a,
  .nav-dropdown summary {
    min-height: 2.75rem;
    padding-inline: 0.58rem;
    font-size: 0.88rem;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown summary::after {
    margin-left: 0.35rem;
    font-size: 0.9rem;
    content: "⌄";
  }

  .nav-dropdown[open] summary::after {
    content: "⌃";
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    width: 15rem;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .nav-cta {
    margin: 0 0 0 0.45rem;
  }

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

  .trust-item + .trust-item {
    border-left: 1px solid var(--line);
  }

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

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

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

  .split-reverse .split-media {
    order: 2;
  }

  .cta-band-inner {
    grid-template-columns: minmax(0, 1.4fr) auto;
  }

  .cta-actions {
    justify-content: flex-end;
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 21rem);
  }

  .sidebar-card {
    position: sticky;
    top: 6.25rem;
  }

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

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

  .gallery-grid {
    grid-auto-rows: 20rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item img {
    min-height: 100%;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .mobile-action-bar {
    display: none;
  }
}

@media (min-width: 76rem) {
  .nav-list > li > a,
  .nav-dropdown summary {
    padding-inline: 0.75rem;
    font-size: 0.93rem;
  }
}

@media (max-width: 59.99rem) {
  body {
    padding-bottom: 4.6rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .mobile-action-bar,
  .cta-band,
  .site-footer,
  .button {
    display: none !important;
  }

  body {
    padding: 0;
    background: var(--white);
    color: #000;
  }

  a {
    color: #000;
  }
}
