:root {
  --banner-height: 46px;
  --page-bg: #f4f9ff;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --surface-warm: #e4f0ff;
  --surface-muted: #dbe9ff;
  --ink: #222222;
  --muted: #556274;
  --line: #d2def0;
  --accent: #5170ff;
  --accent-dark: #004aad;
  --accent-bright: #38b6ff;
  --accent-soft: rgba(81, 112, 255, 0.10);
  --shadow-card: 0 8px 24px rgba(0, 74, 173, 0.10);
  --shadow-header: 0 0 14px rgba(0, 74, 173, 0.08);
  --radius-card: 4px;
  --radius-pill: 999px;
  --header-height: 82px;
}

html {
  scroll-behavior: smooth;
}

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

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--page-bg) 0%, #ffffff 16%, #eef5ff 100%);
  line-height: 1.55;
}

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

h1,
h2 {
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  font-weight: 900;
  letter-spacing: 0;
}

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

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

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

button {
  font: inherit;
}

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

.site-banner {
  background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 58%, var(--accent-bright) 100%);
  color: #ffffff;
}

.site-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--banner-height);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-banner a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.site-banner a:hover,
.site-banner a:focus-visible {
  opacity: 0.86;
  border-color: rgba(255, 255, 255, 0.78);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-header);
}

.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;
}

.brand-logo {
  width: clamp(190px, 17vw, 272px);
  height: auto;
}

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

.site-nav a {
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 0.68;
}

.nav-cta {
  align-items: center;
  background-color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  color: #ffffff !important;
  display: inline-flex;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.6rem;
}

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

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

.hero-section {
  padding: 0;
}

.hero-shell {
  padding-top: 1.25rem;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100svh - var(--header-height) - var(--banner-height));
  padding: clamp(1.7rem, 3vw, 3rem);
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 34, 66, 0.24), rgba(16, 34, 66, 0.12)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(81, 112, 255, 0.06)),
    url("files/strand_4k.jpg") center center / cover no-repeat;
  box-shadow: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 36%),
    radial-gradient(circle at bottom right, rgba(81, 112, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-center {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  width: min(900px, 100%);
  text-align: center;
}

.hero-actions,
.service-modal-actions,
.appointment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 1.9rem;
}

.button {
  align-items: center;
  border-radius: var(--radius-pill);
  display: inline-flex;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

.button-light {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.96);
  color: var(--accent-dark);
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.button-outline {
  background: transparent;
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  cursor: pointer;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-brand-logo {
  width: min(920px, 92vw);
  height: auto;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.2rem, 2.6vw, 2rem);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: clamp(20px, 3vw, 30px);
  backdrop-filter: blur(4px);
  filter:
    drop-shadow(0 12px 28px rgba(0, 45, 108, 0.12));
}

.detail-list,
.service-modal-list {
  list-style: none;
  padding: 0;
}

.hero-button {
  min-width: 190px;
}

.hero-bar,
.contact-card {
  display: block;
  padding: 1.05rem 1.35rem;
  border-radius: var(--radius-pill);
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 74, 173, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-bar:hover,
.hero-bar:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 74, 173, 0.14);
}

.info-bar-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-bar strong,
.contact-card p {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.38;
}

.hero-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.shortcut-card,
.feature-story,
.team-card,
.about-note,
.price-card,
.price-aside,
.contact-highlight,
.map-card,
.service-link-button,
.price-group,
.appointment-banner,
.service-modal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.shortcut-card {
  display: grid;
  gap: 0.7rem;
  min-height: 168px;
  padding: 1.45rem 1.35rem;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shortcut-card:hover,
.shortcut-card:focus-visible,
.service-link-button:hover,
.service-link-button:focus-visible,
.team-card:hover,
.team-card:focus-within,
.map-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
}

.shortcut-label,
.story-label {
  color: var(--accent);
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shortcut-card strong {
  max-width: 12ch;
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.shortcut-copy {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.55;
}

.section {
  padding: 6.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.section-warm {
  background: linear-gradient(180deg, var(--surface-soft) 0%, #f8fbff 100%);
}

.section-campaign {
  background: linear-gradient(180deg, #f8fbff 0%, var(--surface-muted) 100%);
}

.section-gallery {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-heading {
  max-width: 1040px;
  margin-bottom: 2.8rem;
}

.section-heading-compact {
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  line-height: 1.03;
}

.section-heading p:last-child {
  max-width: 62ch;
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.62;
}

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

.section-toplink a {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

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

.service-layout,
.about-layout,
.price-layout,
.contact-layout,
.footer-grid,
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

.gallery-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  grid-template-areas:
    "wide portrait"
    "wide detail";
  align-items: stretch;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card-wide {
  grid-area: wide;
  min-height: 650px;
}

.gallery-card-wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 74, 173, 0.05), rgba(0, 74, 173, 0.22));
  pointer-events: none;
}

.gallery-copy {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  max-width: 490px;
  padding: 1.4rem 1.45rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.gallery-copy h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.03;
}

.gallery-copy p:last-child {
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.gallery-card-portrait {
  grid-area: portrait;
  background: var(--surface-muted);
}

.gallery-card-detail {
  grid-area: detail;
}

.gallery-card-portrait img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.gallery-card-detail img {
  aspect-ratio: 3 / 2;
}

.gallery-note {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1.15rem 1.2rem;
}

.gallery-note strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.gallery-note span {
  color: var(--muted);
  line-height: 1.55;
}

.service-layout {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
}

.feature-story,
.price-aside,
.contact-highlight {
  padding: 2rem;
}

.feature-story {
  background: var(--surface-warm);
}

.feature-story h3,
.about-note h3,
.price-aside h3 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.feature-story p,
.about-note p,
.price-aside p,
.team-card p,
.site-footer p {
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.detail-list li {
  border-top: 1px solid rgba(0, 74, 173, 0.12);
  padding-top: 0.95rem;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  margin-top: 1.5rem;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
  padding-bottom: 0.1rem;
}

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

.service-link-button {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
  width: 100%;
  padding: 1.4rem 1.3rem;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-link-button:hover,
.service-link-button:focus-visible {
  border-color: rgba(81, 112, 255, 0.28);
  box-shadow: 0 10px 28px rgba(0, 74, 173, 0.12);
}

.service-link-number,
.profile-badge {
  display: inline-grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 900;
}

.service-link-number {
  background: var(--accent-soft);
  color: var(--accent);
}

.profile-badge {
  margin-bottom: 1rem;
  background: var(--accent);
  color: #ffffff;
}

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

.service-link-text strong {
  max-width: 13ch;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.service-link-text span {
  color: var(--muted);
  line-height: 1.58;
}

.about-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.76fr);
  align-items: start;
}

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

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

.team-card,
.price-card {
  padding: 2rem;
  background: #ffffff;
}

.team-card h3 {
  font-size: 1.65rem;
  line-height: 1.08;
}

.team-card[data-profile] {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-card[data-profile]:hover,
.team-card[data-profile]:focus-visible {
  border-color: rgba(81, 112, 255, 0.28);
  box-shadow: 0 10px 28px rgba(0, 74, 173, 0.12);
  outline: none;
}

.role {
  margin: 0.8rem 0 1rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.team-card p + p {
  margin-top: 0.95rem;
}

.about-aside {
  position: sticky;
  top: calc(var(--header-height) + 1.4rem);
  display: grid;
  gap: 1.5rem;
}

.about-note {
  padding: 2rem;
  background: var(--surface-soft);
}

.about-note-secondary {
  background: var(--surface-muted);
}

.price-layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.72fr);
  align-items: start;
}

.price-aside {
  position: sticky;
  top: calc(var(--header-height) + 1.4rem);
  background: var(--surface-warm);
}

.price-aside .button {
  margin-top: 1.5rem;
}

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

.price-group {
  overflow: hidden;
  background: #ffffff;
}

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

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

.price-group summary::after {
  content: "+";
  margin-left: auto;
  color: var(--accent);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

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

.price-group h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.price-toggle-label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.price-table {
  border-top: 1px solid rgba(0, 74, 173, 0.08);
  background: #ffffff;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(0, 74, 173, 0.08);
}

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

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

.price-row strong {
  color: var(--accent-dark);
  text-align: right;
}

.price-note-row {
  justify-content: flex-start;
  background: var(--surface-soft);
}

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

.contact-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.contact-highlight {
  background: var(--surface-warm);
}

.contact-cards {
  margin-top: 1rem;
}

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

.contact-card p + p {
  margin-top: 0.4rem;
}

.contact-card a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

.map-card {
  overflow: hidden;
  background: #ffffff;
}

.map-embed,
.map-frame {
  height: 100%;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 100%;
  height: 100%;
  min-height: 640px;
  border: 0;
  filter: saturate(0.86) contrast(1.02);
}

.appointment-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #ffffff;
}

.appointment-banner h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.02;
}

.appointment-banner p:last-child {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.site-disclaimer {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-footer {
  padding: 3.4rem 0;
  background: linear-gradient(180deg, #f8fbff 0%, var(--surface-soft) 100%);
}

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

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

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

.footer-brand-copy {
  max-width: 30ch;
  margin-top: 1rem;
}

.site-footer h3 {
  margin-bottom: 0.85rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

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

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}


body.modal-open,
body.menu-open {
  overflow: hidden;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: 1rem;
  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(0, 45, 108, 0.56);
  backdrop-filter: blur(4px);
}

.service-modal-panel {
  position: relative;
  width: min(780px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  background: #ffffff;
}

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

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.service-modal-intro,
.service-modal-footer {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

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

.service-modal-list {
  display: grid;
  gap: 0.95rem;
  margin: 1.5rem 0;
}

.service-modal-list li {
  border-top: 1px solid rgba(0, 74, 173, 0.12);
  padding-top: 0.95rem;
  color: var(--ink);
}

.service-modal-actions {
  margin-top: 1.8rem;
}

.service-modal-button {
  cursor: pointer;
}

@media (max-width: 1180px) {
  .hero-stage,
  .gallery-grid,
  .service-layout,
  .about-layout,
  .price-layout,
  .contact-layout,
  .appointment-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "wide wide"
      "portrait detail";
  }

  .hero-shortcuts,
  .team-grid,
  .service-button-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-shortcuts {
    display: grid;
  }

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

  .map-embed iframe {
    min-height: 460px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

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

  .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.7rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    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.85rem 0.9rem;
    border-radius: var(--radius-card);
  }

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

  .hero-shortcuts,
  .gallery-grid,
  .team-grid,
  .contact-cards,
  .service-button-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-areas:
      "wide"
      "portrait"
      "detail";
  }

  .hero-stage {
    min-height: calc(100svh - var(--header-height) - var(--banner-height));
  }
}

@media (max-width: 640px) {
  :root {
    --banner-height: 72px;
  }

  .container {
    width: min(1400px, calc(100% - 1rem));
  }

  .site-banner-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 0.7rem 0;
  }

  .hero-stage,
  .gallery-copy,
  .feature-story,
  .team-card,
  .about-note,
  .price-card,
  .price-aside,
  .contact-highlight,
  .appointment-banner,
  .service-modal-inner {
    padding: 1.35rem;
  }

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

  .hero-center {
    width: 100%;
  }

  .hero-brand-logo {
    width: min(700px, 94vw);
  }

  .gallery-copy {
    position: static;
    max-width: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-actions,
  .service-modal-actions,
  .appointment-actions {
    display: grid;
  }

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

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

  .map-embed iframe {
    min-height: 340px;
  }

  .gallery-card-wide {
    min-height: 0;
  }
}
