:root {
  --pearl: #f2f6f8;
  --pearl-deep: #e4ebf0;
  --silver: #c5ced6;
  --cyan: #7ec8c4;
  --cyan-deep: #4a9e99;
  --lavender: #c8bdd8;
  --navy: #1a2a4a;
  --ink: #152238;
  --muted: #4d5d72;
  --line: rgba(26, 42, 74, 0.14);
  --glass: rgba(242, 246, 248, 0.78);
  --shadow: 0 20px 48px rgba(26, 42, 74, 0.12);
  --display: "Fraunces", "Palatino Linotype", serif;
  --text: "Nunito", "Segoe UI", sans-serif;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  background:
    radial-gradient(900px 520px at 8% -8%, rgba(126, 200, 196, 0.35), transparent 55%),
    radial-gradient(760px 420px at 96% 12%, rgba(200, 189, 216, 0.28), transparent 50%),
    linear-gradient(168deg, var(--pearl) 0%, var(--pearl-deep) 46%, #d5e0e6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(122deg, transparent 42%, rgba(255, 255, 255, 0.5) 50%, transparent 58%),
    radial-gradient(circle at 70% 78%, rgba(126, 200, 196, 0.12), transparent 40%);
  animation: tide-sheen 26s ease-in-out infinite alternate;
}

@keyframes tide-sheen {
  from {
    transform: translateX(-2%) translateY(0);
  }
  to {
    transform: translateX(2%) translateY(-1%);
  }
}

main,
.site-header,
.site-footer,
.cookie {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--cyan-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

h1,
h2,
h3,
.brand {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.55rem);
  margin: 0.1em 0 0.4em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 0.55em;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1rem;
}

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

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--pearl);
  padding: 0.5rem 0.85rem;
  z-index: 40;
  border-radius: var(--radius);
}

.skip:focus {
  top: 0.65rem;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(242, 246, 248, 0.96), rgba(242, 246, 248, 0.82));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand {
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.45rem;
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.nav ul {
  display: flex;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--cyan-deep);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--navy), #243a62);
  color: var(--pearl);
  font-family: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(26, 42, 74, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  color: var(--pearl);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(26, 42, 74, 0.28);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.45);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: none;
}

.btn--ghost:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
}

.moon-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(126, 200, 196, 0.55) 0%, rgba(200, 189, 216, 0.2) 42%, transparent 70%);
  animation: moon-expand 0.7s ease-out forwards;
}

@keyframes moon-expand {
  from {
    transform: scale(0.2);
    opacity: 0.9;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--pearl);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-drift 28s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-1.5%);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 42, 74, 0.35) 0%, rgba(26, 42, 74, 0.55) 42%, rgba(21, 34, 56, 0.88) 100%),
    linear-gradient(90deg, rgba(26, 42, 74, 0.45), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.5rem;
  max-width: 38rem;
}

.hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #f7fbfc;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
}

.hero h1 {
  color: #e8f4f3;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  max-width: 22ch;
}

.hero p {
  color: rgba(242, 246, 248, 0.9);
  max-width: 36ch;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.section {
  padding: 4.25rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.section__head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.kicker {
  display: inline-block;
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.surface {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(232, 240, 242, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.primary-offer {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
}

.primary-offer__copy {
  padding: 2.25rem 2rem;
}

.primary-offer__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.stack {
  display: grid;
  gap: 1.25rem;
}

.offer-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

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

.offer-row img {
  width: 140px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
}

.offer-row h3 {
  margin-bottom: 0.25rem;
}

.offer-row .btn {
  white-space: nowrap;
}

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

.voice {
  padding: 1.4rem 1.35rem;
}

.voice blockquote {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--navy);
}

.voice cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero--media {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--pearl);
}

.page-hero--media .page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero--media .page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--media .page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 42, 74, 0.25), rgba(21, 34, 56, 0.82));
}

.page-hero--media .page-hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2.5rem;
  max-width: 40rem;
}

.page-hero--media h1,
.page-hero--media p {
  color: #eef5f6;
}

.prose {
  max-width: 42rem;
}

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

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

.service-tile {
  overflow: hidden;
}

.service-tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-tile__body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0.65rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-list {
  display: grid;
  gap: 1.5rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.35rem;
  overflow: hidden;
}

.blog-item img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.blog-item__body {
  padding: 1.25rem 1.35rem 1.35rem 0;
}

.blog-item time {
  color: var(--muted);
  font-size: 0.88rem;
}

.schedule-list {
  display: grid;
  gap: 1rem;
}

.schedule-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  align-items: start;
}

.schedule-row h3 {
  margin: 0 0 0.35rem;
}

.form {
  max-width: 34rem;
  padding: 1.75rem;
}

.form label {
  display: block;
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.form .field {
  margin-bottom: 1.1rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  color: var(--ink);
}

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(126, 200, 196, 0.65);
  outline-offset: 1px;
}

.field-error {
  margin: 0.35rem 0 0;
  color: #8a3048;
  font-size: 0.88rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  background: rgba(138, 48, 72, 0.1);
  color: #6d2438;
}

.form-status.is-ok {
  background: rgba(74, 158, 153, 0.14);
  color: #1f5a56;
}

.legal h2 {
  margin-top: 2rem;
}

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

.not-found {
  padding: 5rem 0 4rem;
  text-align: center;
}

.not-found h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(232, 239, 243, 0.5), rgba(213, 224, 230, 0.65));
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 1.75rem;
}

.footer-brand {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.footer-label {
  margin: 0 0 0.55rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink);
}

.footer-links a:hover {
  color: var(--cyan-deep);
}

.site-footer__base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(242, 246, 248, 0.92), rgba(232, 239, 243, 0.98));
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(26, 42, 74, 0.12);
  backdrop-filter: blur(12px);
}

.cookie__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.5rem;
  align-items: center;
}

.cookie__inner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie__actions {
  display: flex;
  gap: 0.55rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .primary-offer,
  .blog-item,
  .voices,
  .service-grid,
  .site-footer__grid,
  .schedule-row,
  .offer-row,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .offer-row .btn {
    justify-self: start;
  }

  .blog-item__body {
    padding: 0 1.25rem 1.25rem;
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(242, 246, 248, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
  }

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

  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.35rem 1rem;
  }

  .nav li {
    border-top: 1px solid var(--line);
  }

  .nav a {
    display: block;
    padding: 0.85rem 0;
  }

  .hero {
    min-height: min(88vh, 700px);
  }
}
