:root {
  --bg: #f4f7fd;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --surface-soft: #eef3fd;
  --surface-tint: #f7faff;
  --text: #1a2343;
  --muted: #627194;
  --line: rgba(26, 74, 149, 0.10);
  --accent: #2259a6;
  --accent-deep: #173f7c;
  --accent-soft: #e4ecfb;
  --accent-ink: #0d2d5f;
  --shadow: 0 24px 70px rgba(23, 63, 124, 0.08);
  --shadow-soft: 0 14px 34px rgba(23, 63, 124, 0.06);
  --radius-lg: 36px;
  --radius-md: 28px;
  --radius-sm: 20px;
  --header-height: 92px;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(228, 236, 252, 0.95), transparent 34%),
    radial-gradient(circle at bottom right, rgba(242, 246, 255, 0.9), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, #f2f6fd 100%);
  line-height: 1.7;
  letter-spacing: 0.005em;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent-ink);
  font-weight: 700;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(251, 253, 255, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(26, 74, 149, 0.06);
  box-shadow: 0 8px 30px rgba(17, 48, 96, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: clamp(148px, 16vw, 196px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

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

.nav-cta {
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #2f6dc2 100%);
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(34, 89, 166, 0.18);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.55rem;
  height: 2px;
  margin: 0.33rem 0;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section {
  position: relative;
  padding: 6rem 0 7.25rem;
  background:
    linear-gradient(180deg, rgba(24, 36, 71, 0.24), rgba(24, 36, 71, 0.42)),
    linear-gradient(90deg, rgba(18, 43, 92, 0.26), rgba(34, 89, 166, 0.08)),
    url("files/strand.png") center 38% / cover no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 239, 248, 0.18), rgba(219, 230, 250, 0.18)),
    radial-gradient(circle at center, rgba(255, 220, 188, 0.22), rgba(255, 220, 188, 0) 24%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.42fr);
  gap: 1.4rem;
  align-items: end;
  min-height: 60vh;
}

.hero-copy,
.hero-panel,
.team-card,
.service-card,
.info-card,
.map-card,
.booking-box {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: clamp(2rem, 4.2vw, 3.4rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.09)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(12, 25, 54, 0.16);
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.65rem 1.15rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2380d2, #2b98ea);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(35, 128, 210, 0.22);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: #ffffff;
}

.hero-subtitle {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.94);
}

.hero-lead {
  max-width: 58ch;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: #ffffff;
  color: var(--accent-ink);
  box-shadow: 0 16px 34px rgba(11, 31, 71, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-points {
  display: grid;
  gap: 0.95rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.hero-panel {
  display: grid;
  gap: 0.85rem;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background:
    none;
  backdrop-filter: none;
  border: 0;
  box-shadow: none;
}

.panel-card {
  min-width: 0;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.panel-link {
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.panel-link:hover,
.panel-link:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 30px rgba(8, 25, 56, 0.16);
}

.panel-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.panel-value {
  margin-top: 0.65rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.section {
  padding: 7rem 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(239, 244, 253, 0.94), rgba(255, 255, 255, 0.2));
}

.section-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #285898 0%, #4c83cc 100%);
  color: #ffffff;
}

.section-accent h2,
.section-accent h3,
.section-accent h4 {
  color: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 5vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading p:last-child {
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

.section-heading-light .eyebrow,
.section-heading-light p:last-child {
  color: rgba(255, 255, 255, 0.92);
}

.section-toplink {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.section-toplink a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.section-toplink a::before {
  content: "↑";
  font-size: 1rem;
}

.section-toplink a:hover,
.section-toplink a:focus-visible {
  transform: translateY(-1px);
}

.section-toplink-light a {
  color: #ffffff;
}

.about-layout,
.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.72fr);
  gap: 2rem;
  align-items: start;
}

.team-grid,
.contact-cards,
.footer-grid {
  display: grid;
  gap: 1.75rem;
}

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

.team-card,
.info-card,
.map-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.team-card:hover,
.info-card:hover,
.map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(34, 89, 166, 0.12);
  border-color: rgba(34, 89, 166, 0.18);
}

.profile-badge,
.service-link-number {
  display: inline-grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 1.2rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, var(--accent-soft), #f2f6ff);
  color: var(--accent);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(34, 89, 166, 0.08);
}

.role {
  margin: 0.65rem 0 1.05rem;
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.detail-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--muted);
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.team-card h3,
.info-card h3,
.site-footer h3 {
  font-size: 1.34rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.info-card h3 {
  color: var(--accent-ink);
}

.team-card p,
.info-card p,
.site-footer p {
  color: var(--muted);
}

.team-card p:not(.role),
.info-card p {
  font-size: 1rem;
}

.service-link-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(34, 89, 166, 0.14);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-link-button:hover,
.service-link-button:focus-visible {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(240, 246, 255, 1));
  border-color: rgba(34, 89, 166, 0.24);
  box-shadow: 0 20px 42px rgba(34, 89, 166, 0.10);
}

.service-link-text {
  display: grid;
  gap: 0.35rem;
}

.service-link-text strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent-ink);
  font-size: 1.22rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.service-link-text span {
  color: var(--muted);
  font-size: 0.96rem;
}

.about-aside,
.price-aside,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.about-aside,
.price-aside {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 253, 0.96));
}

.about-note,
.price-aside {
  padding: 2rem;
}

.about-note h3,
.price-aside h3 {
  font-size: 1.6rem;
  line-height: 1.08;
}

.about-note .detail-list,
.price-aside p {
  margin-top: 1.15rem;
}

.price-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
}

.price-groups {
  display: grid;
  gap: 1.75rem;
}

.price-group {
  overflow: hidden;
  border: 1px solid rgba(34, 89, 166, 0.10);
  border-radius: calc(var(--radius-md) - 4px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.price-group summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  list-style: none;
}

.price-group summary::-webkit-details-marker {
  display: none;
}

.price-group summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent-deep);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin-left: 0.75rem;
}

.price-group[open] summary::after {
  content: "−";
}

.price-group h3 {
  margin: 0;
  font-size: 1.55rem;
  flex: 1 1 auto;
}

.price-toggle-label {
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}

.price-group[open] .price-toggle-label {
  opacity: 0.8;
}

.price-table {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(34, 89, 166, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid rgba(34, 89, 166, 0.08);
}

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

.price-row span {
  color: var(--text);
  font-weight: 600;
}

.price-row strong {
  color: var(--accent-deep);
  font-size: 0.95rem;
  text-align: right;
}

.price-note-row {
  justify-content: flex-start;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background: rgba(244, 248, 255, 0.82);
}

.price-note-row span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.4rem;
  align-items: stretch;
}

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

.info-card {
  background: rgba(255, 255, 255, 0.98);
}

.map-card {
  display: flex;
  align-items: stretch;
  align-self: start;
  margin-top: 24.5rem;
  padding: 0;
  min-height: 0;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  border-radius: var(--radius-md);
}

.map-embed {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  background: transparent;
}

.map-frame {
  width: 100%;
  border-radius: inherit;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.map-embed iframe {
  display: block;
  width: calc(100% + 2px);
  height: 382px;
  margin: -1px;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

.booking-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem 2.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(232, 239, 252, 0.96));
  box-shadow: var(--shadow);
}

.booking-box p:last-child {
  max-width: 55ch;
  margin-top: 1rem;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0 3.4rem;
  border-top: 1px solid rgba(34, 89, 166, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(246, 249, 255, 0.86));
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-brand {
  align-items: flex-start;
}

.brand-logo-footer {
  width: clamp(150px, 18vw, 196px);
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1.08rem;
}

.site-footer p + p {
  margin-top: 0.45rem;
}

.site-disclaimer {
  padding: 1rem 0;
  border-top: 1px solid rgba(34, 89, 166, 0.08);
  border-bottom: 1px solid rgba(34, 89, 166, 0.08);
  background: rgba(240, 245, 253, 0.8);
  color: var(--muted);
  font-size: 0.95rem;
}

body.modal-open {
  overflow: hidden;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 29, 63, 0.56);
  backdrop-filter: blur(6px);
}

.service-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.98));
  box-shadow: 0 32px 90px rgba(10, 24, 56, 0.24);
}

.service-modal-inner {
  padding: 2rem;
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 89, 166, 0.08);
  color: var(--accent-deep);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.service-modal-intro,
.service-modal-footer {
  color: var(--muted);
  font-size: 1rem;
}

.service-modal-intro {
  margin-top: 1rem;
}

.service-modal-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.service-modal-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text);
}

.service-modal-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.service-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.service-modal-button {
  cursor: pointer;
  color: var(--accent-ink);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .hero-grid,
  .about-layout,
  .price-layout,
  .contact-layout,
  .service-button-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .booking-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-aside,
  .price-aside {
    position: static;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 64vh;
    align-items: start;
  }

  .map-card {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 84px;
  }

  .menu-toggle {
    display: inline-block;
    z-index: 1001;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) - 0.2rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid rgba(26, 74, 149, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(26, 74, 149, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--surface-soft);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-section {
    padding-top: 2.6rem;
  }

  .hero-copy,
  .hero-panel,
  .price-card,
  .price-aside,
  .about-aside,
  .booking-box,
  .team-card,
  .info-card,
  .map-card {
    border-radius: 1.5rem;
  }

  .team-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1180px, calc(100% - 1.2rem));
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-row strong {
    text-align: left;
  }

  .map-embed iframe {
    height: 320px;
  }

  .site-footer {
    padding-bottom: 2.2rem;
  }
}
