﻿:root {
  --bg: #08060a;
  --bg-soft: #120d16;
  --surface: rgba(17, 12, 23, 0.94);
  --surface-strong: rgba(12, 9, 17, 0.98);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f6f1ed;
  --muted: #bfb6c6;
  --accent: #f3df2e;
  --accent-strong: #ffeb58;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  --content: min(1320px, calc(100vw - 32px));
  --content-wide: min(1520px, calc(100vw - 32px));
  --font: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(243, 223, 46, 0.08), transparent 28%),
    linear-gradient(180deg, #08060a 0%, #110c16 46%, #08060a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 6, 10, 0.4), rgba(8, 6, 10, 0.72)),
    url("/Resources/Background.jpg") center top / cover no-repeat;
  opacity: 0.16;
}

body.nav-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(243, 223, 46, 0.28);
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  background: var(--accent);
  color: #111;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

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

.container {
  width: var(--content);
  margin: 0 auto;
}

.container--wide {
  width: var(--content-wide);
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.inline-link {
  color: var(--accent);
  font-weight: 700;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--accent-strong);
}

.panel {
  background: linear-gradient(180deg, rgba(19, 14, 25, 0.94), rgba(12, 9, 17, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-heading,
.hero-grid,
.page-hero-grid,
.split,
.booking-layout,
.contact-layout,
.footer-grid,
.service-grid,
.featured-grid,
.process-grid,
.detail-grid,
.stat-row,
.form-grid,
.checkbox-grid {
  display: grid;
  gap: 20px;
}

.section-heading {
  align-items: end;
  justify-content: space-between;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  margin-bottom: 28px;
}

.section-heading h2,
.content-card h2,
.form-panel h2,
.cta-band h2,
.quote-card h2,
.page-hero h1,
.hero-copy h1,
.page-note h2 {
  margin: 0;
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.section-heading h2,
.content-card h2,
.form-panel h2,
.cta-band h2,
.page-note h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

.section-heading p,
.content-card p,
.hero-lead,
.page-hero p,
.quote-card p,
.service-note,
.form-note,
.footer-copy,
.page-note p,
.detail-card p,
.process-step p,
.featured-copy p,
.service-card p,
.form-status,
.stat-pill span {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.button--secondary,
.button--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.button--secondary:hover,
.button--secondary:focus-visible,
.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(243, 223, 46, 0.5);
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    backdrop-filter 0.24s ease;
}

.site-header.scrolled {
  background: rgba(10, 7, 13, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  position: relative;
  width: var(--content-wide);
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(112px, 13vw, 150px);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta {
  min-height: 46px;
  padding: 0 16px;
  font-size: 0.72rem;
}

.hero {
  padding: clamp(56px, 7vw, 92px) 0 clamp(56px, 7vw, 96px);
}

.hero-grid,
.page-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  max-width: 11ch;
}

.hero-lead,
.page-hero p {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1rem;
}

.media-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.4fr) minmax(0, 0.6fr);
  gap: 28px;
  align-items: start;
}

.media-hero__intro {
  max-width: 520px;
}

.media-hero__intro h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4.4vw, 4.3rem);
  max-width: 9.5ch;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.media-hero__intro p {
  max-width: 48ch;
}

.media-hero__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 18px;
  min-height: 650px;
}

.media-hero__grid-main,
.media-hero__grid-stack {
  display: grid;
  gap: 18px;
}

.media-hero__grid-main {
  grid-template-rows: minmax(460px, 1fr) auto;
}

.media-hero__grid-stack {
  grid-template-rows: repeat(2, minmax(220px, 1fr));
}

.media-hero__grid img,
.featured-card img,
.detail-image img,
.gallery-card img,
.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-hero__caption {
  padding: 18px 20px;
}

.media-hero__caption p {
  margin: 10px 0 0;
  color: var(--muted);
}

.stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.stat-pill {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.stat-pill strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.media-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 20px;
  align-items: start;
}

.media-feature__video,
.media-feature__card,
.floorplan-card {
  border: 1px solid var(--line);
}

.media-feature__video {
  align-self: start;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.media-feature__card,
.floorplan-card,
.quote-card,
.content-card,
.form-panel,
.sidebar-card,
.detail-card,
.cta-band,
.page-note,
.process-step,
.service-card {
  padding: clamp(22px, 4vw, 34px);
}

.media-feature__card h3,
.floorplan-card h3,
.featured-copy h3,
.detail-card h3,
.process-step h3,
.sidebar-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.08;
}

.media-feature__card p,
.floorplan-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.floorplan-card img {
  width: 100%;
  height: auto;
  margin-top: 18px;
  background: #fff;
}

.quote-card h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  max-width: 18ch;
}

.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.split--reverse > :first-child {
  order: 2;
}

.split--reverse > :last-child {
  order: 1;
}

.feature-list,
.mini-list,
.pill-list,
.price-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list,
.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-list li,
.mini-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.1;
}

.card-meta {
  margin: 0 0 18px;
  font-size: 0.95rem;
}

.price-list {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-list span:last-child {
  white-space: nowrap;
  color: var(--accent);
  font-weight: 700;
}

.service-note {
  margin-top: 18px;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 18px;
}

.gallery-grid--wide {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.05fr;
  gap: 18px;
}

.gallery-grid--wide figure {
  margin: 0;
}

.gallery-card {
  position: relative;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  break-inside: avoid;
  cursor: zoom-in;
}

.gallery-grid--wide .gallery-card {
  margin: 0;
}

.gallery-card--tall img {
  aspect-ratio: 4 / 5.2;
}

.gallery-card--wide img {
  aspect-ratio: 16 / 10;
}

.gallery-card--square img {
  aspect-ratio: 1 / 1;
}

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

.featured-card {
  display: flex;
  flex-direction: column;
}

.featured-card img {
  aspect-ratio: 4 / 3;
}

.featured-copy {
  padding: 22px 22px 24px;
}

.featured-copy p,
.featured-copy h3,
.detail-card p,
.detail-card h3,
.process-step p,
.process-step h3,
.sidebar-card p,
.sidebar-card h3 {
  margin-top: 0;
}

.page-hero {
  padding: clamp(50px, 7vw, 82px) 0 36px;
}

.page-note p,
.page-note h2 {
  max-width: 26ch;
}

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

.process-step strong {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
}

.booking-shell {
  max-width: 920px;
  margin: 0 auto;
}

.booking-layout {
  grid-template-columns: 1fr;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: start;
}

.mail-form {
  display: grid;
  gap: 18px;
}

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

.full-width {
  grid-column: 1 / -1;
}

.mail-form label,
.mail-form legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mail-form input,
.mail-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

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

.mail-form input::placeholder,
.mail-form textarea::placeholder {
  color: rgba(191, 182, 198, 0.55);
}

.mail-form fieldset {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.custom-select {
  position: relative;
}

.custom-select__button {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.custom-select__button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg) translateY(-2px);
  flex: 0 0 auto;
}

.custom-select.is-open .custom-select__button {
  border-color: rgba(243, 223, 46, 0.45);
}

.custom-select__list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  max-height: 260px;
  overflow: auto;
}

.custom-select.is-open .custom-select__list {
  display: block;
}

.custom-select__option {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--text);
  text-align: left;
}

.custom-select__option:first-child {
  border-top: 0;
}

.custom-select__option:hover,
.custom-select__option:focus-visible,
.custom-select__option.is-selected {
  background: rgba(243, 223, 46, 0.12);
}

.checkbox-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.checkbox-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: normal;
  text-transform: none;
}

.checkbox-chip input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.field-helper {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
}

.calendar-status {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-calendar,
.time-picker,
.service-picker {
  display: grid;
  gap: 18px;
}

.calendar-input-proxy {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.calendar-input-proxy::placeholder {
  color: rgba(191, 182, 198, 0.55);
}

.calendar-picker {
  display: grid;
  gap: 12px;
}

.calendar-picker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.calendar-picker__title {
  display: grid;
  gap: 4px;
  text-align: center;
}

.calendar-picker__title span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.calendar-picker__title strong {
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.calendar-picker__nav {
  min-height: 46px;
  min-width: 88px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.calendar-picker__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar-picker__weekdays,
.calendar-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.calendar-picker__weekdays span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-picker__day {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 74px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.calendar-picker__day-number {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.calendar-picker__day:hover,
.calendar-picker__day:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.calendar-picker__day.is-outside {
  opacity: 0.45;
}

.calendar-picker__day.is-disabled {
  opacity: 0.22;
  pointer-events: none;
}

.calendar-picker__day.is-booked {
  opacity: 0.32;
  pointer-events: none;
}

.calendar-picker__day.is-selected {
  border-color: rgba(243, 223, 46, 0.56);
  background: rgba(243, 223, 46, 0.08);
  color: var(--accent);
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.time-slot,
.service-option {
  display: block;
}

.time-slot input,
.service-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-slot span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.time-slot input:checked + span {
  border-color: rgba(243, 223, 46, 0.56);
  background: rgba(243, 223, 46, 0.09);
  color: var(--accent);
}

.time-slot input:disabled + span {
  opacity: 0.28;
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.01);
  cursor: not-allowed;
  transform: none;
}

.time-slot input:focus-visible + span,
.service-option input:focus-visible + .service-option__card,
.calendar-picker__day:focus-visible {
  outline: 2px solid rgba(243, 223, 46, 0.6);
  outline-offset: 2px;
}

.time-slot:hover span,
.time-slot:focus-within span,
.service-option:hover .service-option__card,
.service-option:focus-within .service-option__card {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.service-picker-groups {
  display: grid;
  gap: 28px;
}

.service-picker-group {
  display: grid;
  gap: 14px;
}

.service-picker-group__heading {
  display: grid;
  gap: 6px;
}

.service-picker-group h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-picker-group__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-option__card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-option__card::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
}

.service-option input:checked + .service-option__card {
  border-color: rgba(243, 223, 46, 0.56);
  background: rgba(243, 223, 46, 0.08);
  box-shadow: inset 0 0 0 1px rgba(243, 223, 46, 0.18);
}

.service-option input:checked + .service-option__card::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 4px #120d16;
}

.service-option__eyebrow {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-option__name {
  max-width: 11ch;
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.service-option__meta {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-option__price {
  margin-top: auto;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.95rem;
}

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

.detail-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.detail-card-header img {
  width: 22px;
  height: 22px;
}

.cta-band {
  padding: clamp(28px, 5vw, 40px);
}

.site-footer {
  padding: 24px 0 40px;
}

.footer-grid {
  grid-template-columns: 1.15fr 0.85fr 0.95fr;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  width: 140px;
  margin-bottom: 16px;
}

.footer-copy {
  max-width: 40ch;
  margin: 0;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column a,
.footer-column p {
  margin: 0;
}

.footer-note {
  margin-top: 28px;
  color: rgba(191, 182, 198, 0.72);
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 24px;
}

.lightbox.is-open {
  display: grid;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 10, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: rgba(8, 6, 10, 0.9);
  color: var(--text);
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .media-hero,
  .media-feature,
  .section-heading,
  .contact-layout,
  .hero-grid,
  .page-hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .media-hero__intro {
    max-width: 100%;
  }
}

@media (max-width: 1080px) {
  .service-grid,
  .featured-grid,
  .detail-grid,
  .stat-row,
  .gallery-grid--wide,
  .service-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .hero-grid,
  .page-hero-grid,
  .split,
  .contact-layout,
  .footer-grid,
  .gallery-grid--wide {
    grid-template-columns: 1fr;
  }

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

  .split--reverse > :first-child,
  .split--reverse > :last-child {
    order: initial;
  }

  .media-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .media-hero__grid-main,
  .media-hero__grid-stack {
    grid-template-rows: none;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(12, 9, 16, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero-copy h1,
  .page-hero h1,
  .media-hero__intro h1 {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .hero-copy h1,
  .page-hero h1,
  .media-hero__intro h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .service-grid,
  .featured-grid,
  .process-grid,
  .detail-grid,
  .stat-row,
  .form-grid,
  .checkbox-grid,
  .gallery-grid--wide,
  .service-option-grid {
    grid-template-columns: 1fr;
  }

  .calendar-picker__header {
    flex-wrap: wrap;
  }

  .calendar-picker__title {
    order: -1;
    width: 100%;
  }

  .calendar-picker__weekdays,
  .calendar-picker__grid {
    gap: 8px;
  }

  .calendar-picker__day {
    min-height: 62px;
    padding: 10px;
  }

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

  .gallery-grid {
    columns: 2 180px;
  }

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

  .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 76px;
  }

  .container,
  .container--wide {
    width: min(100vw - 20px, 1520px);
  }

  .section,
  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .calendar-picker__nav {
    min-width: 0;
    flex: 1 1 calc(50% - 6px);
  }

  .calendar-picker__weekdays span {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .calendar-picker__day-number {
    font-size: 0.9rem;
  }

  .gallery-grid {
    columns: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

