:root {
  --bg: #00303F;
  --bg2: #017498;
  --text: #F5F4F4;
  --muted: rgba(245,244,244,.78);
  --card: rgba(245,244,244,.06);
  --card2: rgba(245,244,244,.09);
  --border: rgba(245,244,244,.18);
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;
}

/* Make sure HTML `hidden` wins even when we define explicit display rules. */
[hidden] { display: none !important; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Bely", "Georgia", serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

h1, h2, h3 {
  font-family: "Kepler Std", "Georgia", serif;
  font-weight: 500;
  letter-spacing: .2px;
  margin: 0 0 .6rem 0;

  text-transform: capitalize;
}
h1 {
  font-size: clamp(2.31rem, 4.4vw, 3.74rem);
  line-height: 1.08;
}
h2 { font-size: clamp(1.76rem, 2.53vw, 2.42rem); }
h3 { font-size: 1.265rem; }

p { margin: 0 0 1rem 0; color: var(--muted); }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(var(--max), calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,48,63,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,244,244,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}

.logo {
  height: 44px;
  width: auto;
  display: block;
}
.logo-sm { height: 34px; opacity: .92; }

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav a {
  font-size: .95rem;
  color: rgba(245,244,244,.88);
  padding: .45rem .55rem;
  border-radius: 999px;
}
.nav a:hover {
  background: rgba(245,244,244,.07);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  /* Wider CTAs (requested): +50% horizontal padding */
  padding: .78rem 1.575rem;
  border-radius: 999px;
  font-family: "Bely", "Georgia", serif;
  font-size: 1rem;
  line-height: 1;
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}

.contents-wrap {
  position: relative;
}

.btn-contents {
  padding: .68rem 1.35rem;
  font-size: .95rem;
}

.contents-menu {
  position: absolute;
  top: calc(100% + .55rem);
  left: 0;
  min-width: 240px;
  background: rgba(0,48,63,.92);
  border: 1px solid rgba(245,244,244,.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 48px rgba(0,0,0,.40);
  padding: .55rem;
  z-index: 80;
}

.contents-menu a {
  display: block;
  padding: .7rem .85rem;
  border-radius: 12px;
  color: rgba(245,244,244,.92);
  font-size: .98rem;
}

.contents-menu a:hover {
  background: rgba(245,244,244,.08);
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-solid {
  background: rgba(245,244,244,.12);
  border-color: rgba(245,244,244,.20);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.btn-solid:hover {
  background: rgba(245,244,244,.16);
}
.btn-outline {
  background: transparent;
  border-color: rgba(245,244,244,.30);
}
.btn-outline:hover { background: rgba(245,244,244,.08); }
.btn-link {
  background: transparent;
  border-color: transparent;
  padding-inline: .2rem;
  color: rgba(245,244,244,.86);
}
.header-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(245,244,244,.25);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(245,244,244,.9);
  border-radius: 2px;
}
.mobile-nav {
  border-top: 1px solid rgba(245,244,244,.08);
  padding: .8rem 1.1rem 1.1rem;
  display: grid;
  gap: .55rem;
}
.mobile-nav a {
  padding: .55rem .2rem;
  color: rgba(245,244,244,.88);
}
.mobile-nav .btn { justify-self: start; }

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.98) contrast(1.02);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,48,63,.55) 0%, rgba(0,48,63,.82) 52%, rgba(0,48,63,.96) 100%);
}
.hero-content {
  position: relative;
  padding: 5.2rem 0 3.0rem;
}
.eyebrow {
  color: rgba(245,244,244,.90);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: .8rem;
}
.subhead {
  max-width: 55ch;
  font-size: 1.08rem;
  color: rgba(245,244,244,.86);
}

.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.hero-facts {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  max-width: 880px;
}
.fact {
  background: rgba(245,244,244,.08);
  border: 1px solid rgba(245,244,244,.14);
  border-radius: var(--radius-sm);
  padding: .85rem .9rem;
}
.fact span {
  display: block;
  font-size: .84rem;
  color: rgba(245,244,244,.72);
  margin-bottom: .2rem;
}
.fact strong {
  font-family: "Kepler Std", "Georgia", serif;
  font-weight: 500;
}

.section {
  padding: 3.1rem 0;
}
.section-alt {
  background: linear-gradient(180deg, rgba(1,116,152,.12) 0%, rgba(1,116,152,.06) 100%);
  border-top: 1px solid rgba(245,244,244,.07);
  border-bottom: 1px solid rgba(245,244,244,.07);
}
.grid {
  display: grid;
  gap: 1.2rem;
}
.grid.two { grid-template-columns: 1.05fr .95fr; }
.grid.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: rgba(245,244,244,.07);
  border: 1px solid rgba(245,244,244,.13);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.15rem;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.card.small { padding: 1.05rem 1.05rem .95rem; }

.bullets {
  margin: .75rem 0 0;
  padding-left: 1.05rem;
  color: rgba(245,244,244,.86);
}
.bullets li { margin: .45rem 0; }
.fineprint { font-size: .94rem; color: rgba(245,244,244,.72); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.1rem;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(245,244,244,.14);
  background: rgba(0,0,0,.18);
}
.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.gallery-item figcaption {
  padding: .7rem .85rem .85rem;
  font-size: .92rem;
  color: rgba(245,244,244,.80);
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(245,244,244,.14);
  box-shadow: var(--shadow);
}
.media-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.steps {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}
.steps li {
  margin: .7rem 0;
  color: rgba(245,244,244,.84);
}
.steps strong { color: rgba(245,244,244,.95); }

.accordion details {
  border: 1px solid rgba(245,244,244,.13);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  background: rgba(245,244,244,.06);
  margin: .75rem 0;
}
.accordion summary {
  cursor: pointer;
  font-family: "Kepler Std", "Georgia", serif;
  color: rgba(245,244,244,.92);
}
.accordion p { margin: .65rem 0 0; }

.cta-band {
  background: linear-gradient(90deg, rgba(1,116,152,.18), rgba(1,116,152,.06));
  border-top: 1px solid rgba(245,244,244,.07);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.cta-inner p { margin: 0; }

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  /* Wider CTAs (requested): +50% horizontal padding */
  padding: .9rem 1.575rem;
  border-radius: 999px;
  background: rgba(245,244,244,.14);
  border: 1px solid rgba(245,244,244,.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0,0,0,.32);
  text-decoration: none !important;
}
.floating-cta:hover { background: rgba(245,244,244,.18); }

.site-footer {
  padding: 2.1rem 0;
  border-top: 1px solid rgba(245,244,244,.08);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
}
.footer-brand p { margin: .35rem 0 0; font-size: .95rem; }
.footer-links {
  display: flex;
  gap: 1rem;
}
.footer-links a {
  color: rgba(245,244,244,.80);
  font-size: .95rem;
}

@media (max-width: 980px) {
  .contents-wrap { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .grid.two { grid-template-columns: 1fr; }
  .grid.three { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

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


/* Steps: word labels */
.steps.steps-words {
  list-style: none;
  padding-left: 0;
}
.steps.steps-words li {
  padding-left: 0;
}
.step-label {
  display: inline;
  min-width: 0;
  margin-right: .45rem;
  color: rgba(245,244,244,.92);
  font-family: "Kepler Std", "Georgia", serif;
  font-weight: 700;
}