:root {
  --brand-blue: #0737b8;
  --brand-blue-dark: #041b5d;
  --brand-blue-soft: #eef3ff;
  --ink: #17191f;
  --graphite: #2b3038;
  --muted: #667085;
  --paper: #f6f7fa;
  --surface: #ffffff;
  --line: #dce2ec;
  --focus: #48d6ff;
  --success: #2f8f6b;
  --shadow: 0 22px 60px rgba(18, 25, 38, 0.14);
  --hero-image: url("../images/Instagram_files/467286907_17984863847775310_3830655378870648695_n.jpg");
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(7, 55, 184, 0.05) 1px, transparent 1px);
  background-size: 100% 9px;
  opacity: 0.35;
  z-index: -1;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(220, 226, 236, 0.78);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(7, 55, 184, 0.22);
}

.brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--brand-blue);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links a,
.site-footer a,
.text-link,
.social-row a {
  text-decoration: none;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(7, 55, 184, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--brand-blue-dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-cta,
.button-primary {
  border: 1px solid var(--brand-blue);
  background: var(--brand-blue);
  color: white;
  box-shadow: 0 15px 32px rgba(7, 55, 184, 0.22);
}

.button-secondary {
  border: 1px solid rgba(7, 55, 184, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 76px) 30px;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 25, 0.94) 0%, rgba(3, 9, 25, 0.74) 46%, rgba(3, 9, 25, 0.28) 100%),
    linear-gradient(0deg, rgba(3, 9, 25, 0.72) 0%, rgba(3, 9, 25, 0) 36%),
    var(--hero-image) center 33% / cover;
  transform: scale(1.02);
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 132px),
    linear-gradient(120deg, rgba(7, 55, 184, 0.28), transparent 48%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b9cbff;
}

.hero h1 {
  margin: 0;
  font-size: 7.2rem;
  line-height: 0.86;
  text-transform: uppercase;
}

.slogan {
  margin: 18px 0 0;
  color: white;
  font-size: 2rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-phrase {
  max-width: 650px;
  margin: 24px 0 0;
  color: #dbe5ff;
  font-size: 1.45rem;
  font-weight: 950;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.hero-brand-strip {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 76px);
  bottom: 148px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-brand-strip img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  object-fit: cover;
}

.hero-bottom {
  z-index: 2;
  right: clamp(18px, 5vw, 76px);
  bottom: 30px;
  left: clamp(18px, 5vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.stat {
  min-height: 98px;
  padding: 18px;
  background: rgba(5, 11, 28, 0.78);
  backdrop-filter: blur(14px);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 0.5rem;
  border-radius: 999px;
  background: rgba(185, 203, 255, 0.2);
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
}

.stat strong {
  display: block;
  color: #f8fbff;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section,
.photos {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  max-width: 900px;
  font-size: 3.8rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 46px;
  align-items: end;
  background: var(--ink);
  color: white;
}

.intro .eyebrow,
.booking .eyebrow {
  color: #b9cbff;
}

.intro p:last-child,
.split p,
.booking p,
.location p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.intro p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.service-grid,
.pricing-grid,
.announcement-grid,
.team-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.pricing-card,
.announcement-card,
.team-card,
.review-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(18, 25, 38, 0.04);
}

.service-card {
  position: relative;
  display: grid;
  align-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  min-height: 280px;
  padding: 2rem;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.74);
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.pricing-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 55, 184, 0.32);
  box-shadow: var(--shadow);
}

.service-card .number {
  color: var(--brand-blue);
  font-weight: 950;
}

.service-card h3,
.pricing-card h3,
.announcement-card h3,
.team-card h3 {
  margin: 22px 0 12px;
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-card p,
.pricing-card p,
.announcement-card p,
.team-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing {
  background: white;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pricing-card h3 {
  margin-top: 18px;
}

.pricing-card .tag {
  background: var(--brand-blue);
  color: white;
}

.pricing-value {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-blue-dark);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.schedule-panel {
  overflow: hidden;
  border: 1px solid rgba(7, 55, 184, 0.18);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.schedule-table-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  vertical-align: top;
}

.day-label {
  display: inline;
}

.day-initial {
  display: none;
}

.schedule-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #0d224f;
  color: #dbe5ff;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.schedule-table tbody th {
  width: 96px;
  min-width: 96px;
  background: #0b1838;
  color: #dbe5ff;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-table td {
  min-width: 108px;
}

.schedule-slot {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(185, 203, 255, 0.25);
  border-radius: 6px;
  background: rgba(185, 203, 255, 0.08);
}

.schedule-slot + .schedule-slot {
  margin-top: 8px;
}

.schedule-slot small {
  color: #b9cbff;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* Mobile responsive schedule */
@media (max-width: 768px) {
  .schedule-table {
    min-width: 100%;
    font-size: 0.85rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.5rem 0.25rem;
  }

  .day-label {
    display: none;
  }

  .day-initial {
    display: inline;
    font-weight: bold;
  }

  .schedule-slot strong {
    font-size: 0.75rem;
  }
}

.schedule-slot strong {
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.schedule-empty {
  color: rgba(255, 255, 255, 0.36);
  text-align: center;
  font-weight: 900;
}

.announcements {
  background: #edf1f7;
}

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

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

.announcement-card,
.review-card {
  border-color: rgba(7, 55, 184, 0.12);
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.team-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 420px;
  padding: 0;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.team-card img,
.team-card-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.team-card-media.is-placeholder {
  object-fit: cover;
  background: linear-gradient(135deg, rgba(7, 55, 184, 0.12), rgba(72, 214, 255, 0.1));
}

.team-card-copy {
  display: grid;
  align-content: start;
  padding: 22px;
}

.team-card-copy span {
  color: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.team-card h3 {
  margin-top: 12px;
}

.photos {
  background: var(--ink);
  color: white;
}

.photos .eyebrow {
  color: #b9cbff;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 240px;
  gap: 12px;
}

.photo-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0d1220;
}

.photo-card.is-featured {
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
  transition: transform 260ms ease;
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 11, 28, 0.66);
  color: white;
  backdrop-filter: blur(12px);
}

.photo-card figcaption span,
.photo-card figcaption strong {
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.photo-card figcaption strong {
  color: #b9cbff;
}

.reviews {
  background: white;
}

.reviews-widget {
  width: 100%;
  min-height: 110px;
}

.reviews-widget iframe {
  max-width: 100%;
}

.review-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.reviews-google-attribution {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reviews-google-attribution img {
  display: inline;
  vertical-align: middle;
}

.review-card {
  min-height: 190px;
}

.review-card strong {
  display: block;
  margin-top: 18px;
}

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

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--brand-blue);
  font-weight: 950;
  text-transform: uppercase;
}

.text-link:hover,
.social-row a:hover {
  color: var(--brand-blue-dark);
}

.booking {
  background:
    linear-gradient(135deg, rgba(7, 55, 184, 0.94), rgba(23, 25, 31, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 36px);
  color: white;
}

.booking p {
  color: rgba(255, 255, 255, 0.78);
}

.booking-embed {
  min-height: 420px;
  display: grid;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.embed-placeholder {
  padding: 28px;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.embed-placeholder h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

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

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  font-weight: 950;
  text-transform: uppercase;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: stretch;
  background: white;
}

.address {
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 900;
}

.map-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(7, 55, 184, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 55, 184, 0.12), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(0deg, rgba(7, 55, 184, 0.11) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(23, 25, 31, 0.08) 0 1px, transparent 1px 28px);
  color: var(--brand-blue);
  font-size: 1.2rem;
  font-weight: 950;
  text-transform: uppercase;
}

.map-embed {
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(7, 55, 184, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(18, 25, 38, 0.04);
}

.map-embed iframe {
  width: 100%;
  min-height: 320px;
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: white;
  font-weight: 850;
}

.admin-body {
  background: #f5f5f5;
}

.admin-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 18px;
}

.admin-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.admin-top h1 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
}

textarea {
  width: 100%;
  min-height: 68vh;
  padding: 18px;
  border: 1px solid #d7d7d7;
  border-radius: var(--radius);
  font: 0.92rem/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.admin-panel {
  padding: 18px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.admin-panel h2 {
  font-size: 1.4rem;
  line-height: 1.1;
}

.admin-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.admin-actions {
  display: grid;
  gap: 10px;
}

.admin-actions button,
.admin-actions a {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-actions button.secondary,
.admin-actions a.secondary {
  display: grid;
  place-items: center;
  background: var(--brand-blue);
}

.status {
  min-height: 24px;
  color: var(--success);
  font-weight: 850;
}

@media (max-width: 1120px) {
  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(7, 55, 184, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 10px 8px;
    border-radius: 6px;
    background: var(--surface);
  }

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

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .announcement-grid,
  .pricing-grid,
  .team-grid,
  .review-grid,
  .intro,
  .split,
  .location,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3rem;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .nav-links {
    top: 68px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.65rem;
  }

  .hero {
    min-height: 100vh;
    padding: 110px 16px 26px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(3, 9, 25, 0.96) 0%, rgba(3, 9, 25, 0.78) 100%),
      linear-gradient(0deg, rgba(3, 9, 25, 0.72) 0%, rgba(3, 9, 25, 0) 36%),
      var(--hero-image) 52% 28% / cover;
  }

  .hero-content {
    padding-bottom: 270px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .slogan {
    font-size: 1.35rem;
  }

  .hero-phrase {
    font-size: 1.08rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-brand-strip {
    display: none;
  }

  .hero-bottom {
    right: 16px;
    bottom: 26px;
    left: 16px;
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 72px;
    padding: 14px;
  }

  .hero-actions {
    display: grid;
  }

  h2 {
    font-size: 2.15rem;
  }

  .service-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-auto-rows: 230px;
  }

  .photo-card.is-featured {
    grid-row: span 1;
  }

  .schedule-table {
    min-width: 680px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 10px;
  }

  .schedule-slot strong {
    font-size: 0.76rem;
  }

  .site-footer,
  .admin-top {
    display: grid;
  }

  .admin-top h1 {
    font-size: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
