:root {
  color-scheme: light;
  --ink: #101515;
  --muted: #65716d;
  --paper: #f6f3ec;
  --cream: #fffcf4;
  --line: rgba(16, 21, 21, 0.13);
  --deep: #111918;
  --forest: #17352f;
  --steel: #536467;
  --gold: #c7903d;
  --gold-soft: #e8c884;
  --stone: #d7d0c4;
  --white: #fff;
  --shadow: 0 28px 90px rgba(16, 21, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(246, 243, 236, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--gold-soft);
  font-weight: 900;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 14px;
}

.brand-copy span,
.nav {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 26px;
  justify-content: center;
}

.nav a {
  padding: 12px 0;
}

.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  justify-self: end;
  padding: 0 22px;
  color: var(--white);
  background: var(--deep);
}

.primary-btn {
  border: 0;
  padding: 0 24px;
  color: #17110a;
  background: linear-gradient(135deg, #e8c884, #c7903d);
  cursor: pointer;
}

.secondary-btn {
  padding: 0 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.secondary-btn.dark {
  color: var(--ink);
  border-color: rgba(16, 21, 21, 0.18);
  background: rgba(255, 255, 255, 0.64);
}

.mobile-booking-bar {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  min-height: min(820px, calc(100vh - 72px));
  margin-right: 0;
  margin-left: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.car-hero {
  min-height: auto;
  background:
    linear-gradient(135deg, rgba(17, 25, 24, 0.98), rgba(23, 53, 47, 0.96) 62%, rgba(16, 21, 21, 0.98)),
    radial-gradient(circle at 82% 16%, rgba(232, 200, 132, 0.18), transparent 34%);
}

.hero-bg,
.hero-bg img,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 13, 12, 0.9) 0%, rgba(8, 13, 12, 0.68) 38%, rgba(8, 13, 12, 0.22) 72%),
    linear-gradient(0deg, rgba(8, 13, 12, 0.72) 0%, rgba(8, 13, 12, 0.05) 52%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: min(1180px, calc(100% - 36px));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0 clamp(42px, 6vw, 72px);
}

.car-hero .hero-inner {
  min-height: auto;
  padding: clamp(46px, 6vw, 72px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slogan {
  color: #f4dfb1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero h2,
.overview-section h1,
.section-copy h2,
.section-heading h2,
.quote h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h2 {
  max-width: 720px;
  font-size: clamp(44px, 6vw, 76px);
  text-wrap: balance;
}

.hero-lede {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
}

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

.hero-booking-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.card-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-booking-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.hero-booking-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-booking-card dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-booking-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: var(--white);
}

.hero-booking-card dt,
.hero-booking-card dd {
  margin: 0;
}

.hero-booking-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-booking-card dd {
  text-align: right;
  font-weight: 900;
}

.booking-section,
.shade-section,
.packages,
.gallery-preview,
.gallery-section,
.surface-section,
.proof-section,
.faq,
.quote {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.quote h2 {
  font-size: clamp(30px, 4.2vw, 54px);
}

.section-copy p,
.section-heading p,
.quote p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-copy.compact {
  position: sticky;
  top: 104px;
}

.booking-card,
.shade-demo,
.package-grid article,
.surface-grid article,
.proof-grid div,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.78);
  box-shadow: 0 18px 48px rgba(16, 21, 21, 0.08);
}

.booking-card {
  padding: clamp(20px, 3vw, 34px);
}

.booking-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.booking-topline strong {
  font-size: 20px;
}

.booking-topline span {
  color: var(--forest);
  font-weight: 900;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 21, 21, 0.16);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
}

input[readonly] {
  font-weight: 900;
  background: rgba(242, 236, 222, 0.72);
}

.booking-slot-summary {
  grid-column: 1 / -1;
}

.booking-slot-picker {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.booking-slot-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.booking-slot-heading strong {
  font-size: 16px;
}

.booking-slot-heading span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.booking-slot-groups {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.booking-slot-group {
  display: grid;
  gap: 10px;
}

.booking-slot-group strong {
  font-size: 14px;
}

.booking-slot-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-slot-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(16, 21, 21, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.booking-slot-btn:hover {
  transform: translateY(-1px);
}

.booking-slot-btn.is-active {
  background: var(--deep);
  color: var(--white);
  border-color: var(--deep);
}

.booking-slot-empty {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.booking-slot-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.booking-actions,
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.booking-charge-card {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.booking-charge-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.86);
}

.booking-charge-card dt,
.booking-charge-card dd {
  margin: 0;
}

.booking-charge-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.booking-charge-card dd {
  text-align: right;
  font-weight: 900;
}

.booking-summary-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.booking-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-summary-head strong {
  font-size: 16px;
}

.summary-copy-btn {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(16, 21, 21, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

#booking-summary-output {
  width: 100%;
  min-height: 180px;
  margin-top: 14px;
  border: 1px solid rgba(16, 21, 21, 0.12);
  border-radius: 8px;
  padding: 14px;
  resize: vertical;
  background: rgba(248, 245, 238, 0.92);
  color: var(--ink);
  font: inherit;
  line-height: 1.6;
}

.booking-flow-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.booking-price-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.booking-gate-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(199, 144, 61, 0.24);
  border-radius: 8px;
  background: rgba(242, 236, 222, 0.82);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
}

.booking-gate-note.is-ok {
  border-color: rgba(18, 52, 47, 0.18);
  background: rgba(229, 239, 233, 0.82);
}

.primary-btn:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  box-shadow: none;
}

.shade-section {
  display: grid;
  grid-template-columns: 0.66fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.shade-demo {
  padding: clamp(18px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.86), rgba(221, 225, 218, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(199, 144, 61, 0.2), transparent 34%);
}

.shade-demo-inline {
  align-self: start;
}

.car-photo-preview {
  --tint-opacity: 0.14;
}

.shade-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111918;
}

.shade-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.window-tint-mask {
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, var(--tint-opacity));
  mix-blend-mode: multiply;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transition: background-color 180ms ease;
}

.window-tint-mask.rear-quarter {
  left: 14.6%;
  top: 30.2%;
  width: 18.9%;
  height: 13.4%;
  clip-path: polygon(12% 6%, 98% 3%, 100% 94%, 7% 92%, 0 72%, 4% 28%);
  border-radius: 28px 8px 10px 28px;
}

.window-tint-mask.rear-door {
  left: 32.0%;
  top: 30.1%;
  width: 14.8%;
  height: 14.0%;
  clip-path: polygon(2% 2%, 100% 4%, 98% 96%, 0 94%);
  border-radius: 8px;
}

.window-tint-mask.front-door {
  left: 47.2%;
  top: 30.2%;
  width: 17.8%;
  height: 15.0%;
  clip-path: polygon(0 9%, 45% 13%, 92% 100%, 3% 100%);
  border-radius: 8px 24px 12px 8px;
}

.shade-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 21, 21, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.shade-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.shade-btn {
  min-height: 48px;
  border: 1px solid rgba(16, 21, 21, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.shade-btn.is-active {
  color: #1b1308;
  border-color: transparent;
  background: var(--gold-soft);
}

.shade-readout {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  color: var(--muted);
}

.shade-readout strong {
  color: var(--ink);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 790px;
  margin-bottom: 28px;
}

.package-grid,
.surface-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

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

.package-grid article {
  padding: 24px;
}

.package-grid .package-card {
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.package-grid .package-card:hover {
  transform: translateY(-2px);
}

.package-grid article span,
.proof-grid strong {
  color: var(--gold);
  font-weight: 900;
}

.package-grid h3,
.surface-grid h3 {
  margin: 14px 0 0;
  font-size: 22px;
}

.package-grid p,
.surface-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.package-grid article strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.package-grid .package-card.is-active {
  background: var(--deep);
  color: var(--white);
}

.package-grid .package-card.is-active p {
  color: rgba(255, 255, 255, 0.72);
}

.surface-section {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: clamp(28px, 5vw, 70px);
}

.overview-section {
  position: relative;
  width: 100%;
  min-height: min(760px, calc(100vh - 72px));
  margin-right: 0;
  margin-left: 0;
  align-items: end;
  overflow: hidden;
  padding: clamp(92px, 12vw, 150px) clamp(18px, 6vw, 84px) clamp(28px, 5vw, 52px);
  color: var(--white);
  background: var(--deep);
}

.overview-section .section-copy,
.overview-section .service-links {
  position: relative;
  z-index: 1;
}

.overview-section .section-copy {
  max-width: 780px;
}

.overview-section h1 {
  max-width: 760px;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 900;
  text-wrap: balance;
}

.overview-section .section-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.7vw, 22px);
}

.overview-bg,
.overview-bg img,
.overview-bg::after {
  position: absolute;
  inset: 0;
}

.overview-bg {
  inset: 0 -18px;
}

.overview-bg img {
  width: calc(126% + 36px);
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 54% 62%;
  transform: translateX(-2%);
  filter: brightness(1.48) contrast(1.04) saturate(1.08);
}

.overview-bg::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 13, 12, 0.58) 0%, rgba(8, 13, 12, 0.28) 40%, rgba(8, 13, 12, 0.08) 74%, rgba(17, 25, 24, 0.46) 92%, rgba(17, 25, 24, 0.88) 100%),
    linear-gradient(180deg, rgba(17, 25, 24, 0.26) 0%, rgba(17, 25, 24, 0.06) 10%, rgba(17, 25, 24, 0) 18%),
    linear-gradient(0deg, rgba(8, 13, 12, 0.3), rgba(8, 13, 12, 0.01) 52%);
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  align-self: end;
  gap: 10px;
}

.service-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 21, 21, 0.42);
  backdrop-filter: blur(14px);
  font-weight: 900;
  text-align: center;
}

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

.gallery-preview-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 8px;
  border: 1px solid rgba(16, 21, 21, 0.1);
  box-shadow: 0 22px 56px rgba(12, 18, 18, 0.12);
  color: var(--white);
}

.gallery-preview-card img,
.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-preview-card img {
  transition: transform 220ms ease;
}

.gallery-preview-card.car img {
  object-position: center 42%;
}

.gallery-preview-card.home img {
  object-position: center 50%;
}

.gallery-preview-card.marble img {
  object-position: center 44%;
}

.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 12, 0.08), rgba(8, 13, 12, 0.8)),
    linear-gradient(90deg, rgba(8, 13, 12, 0.24), rgba(8, 13, 12, 0.02));
}

.gallery-preview-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.gallery-preview-copy strong {
  font-size: 24px;
  line-height: 1.05;
}

.gallery-preview-copy span {
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  line-height: 38px;
}

.gallery-preview-card:hover img {
  transform: scale(1.05);
}

.gallery-preview-card:hover .gallery-preview-copy span {
  background: rgba(241, 202, 125, 0.92);
  color: #1d1408;
  border-color: transparent;
}

.gallery-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(232, 200, 132, 0.12), transparent 28%),
    var(--gallery-bg, linear-gradient(180deg, #111918 0%, #1d2625 100%));
  color: var(--gallery-ink, #ffffff);
}

.gallery-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--gallery-line, rgba(255, 255, 255, 0.12));
  background: var(--gallery-header-bg, rgba(17, 25, 24, 0.78));
  backdrop-filter: blur(18px);
}

.gallery-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gallery-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 88px;
}

.gallery-back,
.gallery-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

.gallery-back {
  border: 1px solid var(--gallery-line, rgba(255, 255, 255, 0.14));
  background: var(--gallery-back-bg, rgba(255, 255, 255, 0.08));
  color: var(--gallery-back-ink, var(--gallery-ink, #ffffff));
}

.gallery-book {
  color: #17110a;
  background: linear-gradient(135deg, #e8c884, #c7903d);
}

.gallery-site-header .brand-copy strong {
  color: var(--gallery-ink, #ffffff);
}

.gallery-site-header .brand-copy span {
  color: var(--gallery-copy, rgba(255, 255, 255, 0.76));
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 18px;
}

.gallery-intro-media,
.gallery-intro-copy,
.video-feature {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--gallery-line-soft, rgba(255, 255, 255, 0.1));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.gallery-intro-media {
  min-height: 420px;
  background: #111918;
}

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

.gallery-intro-copy {
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--gallery-panel-bg, rgba(255, 255, 255, 0.06));
}

.gallery-intro > .gallery-intro-copy:only-child {
  grid-column: 1 / -1;
}

.gallery-intro-copy h1 {
  margin: 0;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 0.98;
  color: var(--gallery-ink, #ffffff);
}

.gallery-intro-copy p {
  margin: 14px 0 0;
  color: var(--gallery-copy, rgba(255, 255, 255, 0.82));
  font-size: 17px;
  line-height: 1.72;
}

.gallery-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-meta div {
  display: grid;
  gap: 8px;
  padding: 14px 14px 16px;
  border-radius: 18px;
  background: var(--gallery-chip-bg, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--gallery-line, rgba(255, 255, 255, 0.08));
}

.gallery-meta dt {
  color: var(--gallery-copy-soft, rgba(255, 255, 255, 0.64));
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-meta dd {
  margin: 0;
  color: var(--gallery-ink, #ffffff);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.video-gallery-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  background: var(--gallery-card-bg, rgba(255, 255, 255, 0.06));
}

.video-poster {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 22px;
  background: #000;
  cursor: pointer;
  aspect-ratio: 9 / 16;
}

.video-poster img,
.video-poster video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42));
}

.video-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #17110a;
  font-weight: 800;
  background: linear-gradient(135deg, #e8c884, #c7903d);
}

.video-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 8px 6px;
}

.video-copy strong {
  color: var(--gallery-accent, #f4dfb1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-copy h2 {
  margin: 0;
  color: var(--gallery-ink, #ffffff);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.video-copy p {
  margin: 0;
  color: var(--gallery-copy, rgba(255, 255, 255, 0.82));
  line-height: 1.65;
}

.video-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #17110a;
  font-weight: 800;
  background: linear-gradient(135deg, #e8c884, #c7903d);
}

.video-gallery-list.compact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.video-feature.compact {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 14px;
}

.video-feature.compact .video-copy {
  gap: 8px;
  padding: 2px 2px 4px;
}

.video-feature.compact .video-copy strong {
  font-size: 11px;
}

.video-feature.compact .video-copy h2 {
  font-size: 21px;
  line-height: 1.15;
}

.video-feature.compact .video-copy p {
  font-size: 14px;
  line-height: 1.55;
}

.video-feature.compact .video-copy a {
  width: 100%;
}

.video-poster.is-static {
  cursor: default;
}

.video-poster.is-static::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.24));
}

.video-poster.is-static span {
  display: none;
}

.viewer-shell {
  width: min(960px, calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 88px;
}

.viewer-stage {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.viewer-player {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--gallery-line-soft, rgba(255, 255, 255, 0.1));
  background: #0b0f0f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.viewer-player video {
  width: 100%;
  max-height: min(78vh, 980px);
  display: block;
  background: #000;
}

.viewer-copy {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid var(--gallery-line-soft, rgba(255, 255, 255, 0.1));
  background: var(--gallery-panel-bg, rgba(255, 255, 255, 0.06));
}

.viewer-copy h1 {
  margin: 0;
  color: var(--gallery-ink, #fff);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.viewer-copy p {
  margin: 0;
  color: var(--gallery-copy, rgba(255, 255, 255, 0.82));
  line-height: 1.7;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(17, 25, 24, 0.9);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.gallery-section {
  display: grid;
  gap: 28px;
}

.gallery-category {
  display: grid;
  gap: 16px;
}

.gallery-category-head {
  display: grid;
  gap: 6px;
}

.gallery-category-head strong {
  font-size: 24px;
}

.gallery-category-head span {
  color: var(--muted);
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 14px;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 8px;
  border: 1px solid rgba(16, 21, 21, 0.08);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.video-card.wide {
  min-height: 320px;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 12, 0.08), rgba(8, 13, 12, 0.74)),
    linear-gradient(90deg, rgba(8, 13, 12, 0.24), rgba(8, 13, 12, 0.04));
}

.video-play-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  line-height: 34px;
}

.video-card-copy {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  gap: 6px;
  color: var(--white);
}

.video-card-copy strong {
  font-size: 20px;
  line-height: 1.08;
}

.video-card-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.video-card img {
  transition: transform 220ms ease;
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-lightbox {
  width: min(980px, calc(100% - 24px));
  border: none;
  border-radius: 8px;
  padding: 0;
  background: rgba(255, 252, 244, 0.98);
  box-shadow: 0 28px 80px rgba(8, 13, 12, 0.34);
}

.video-lightbox::backdrop {
  background: rgba(8, 13, 12, 0.68);
}

.video-lightbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px 0;
}

.video-lightbox-head strong {
  font-size: 18px;
}

.video-lightbox-close {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(16, 21, 21, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.video-lightbox-body {
  padding: 18px 22px 22px;
}

.video-lightbox-preview {
  display: grid;
  gap: 14px;
}

.video-lightbox-preview img,
.video-lightbox-preview iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.video-lightbox-preview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

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

.surface-grid article {
  overflow: hidden;
}

.surface-grid h3,
.surface-grid p,
.surface-grid a {
  margin-right: 18px;
  margin-left: 18px;
}

.surface-grid a {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--forest);
  font-weight: 900;
}

.surface-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 18px 20px;
}

.surface-card-actions a {
  margin: 0;
}

.surface-card-actions .open-gallery-btn {
  color: #1b1308;
  background: var(--gold-soft);
  border-radius: 999px;
  padding: 10px 16px;
}

.surface-image {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.surface-image.glass {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 38%),
    url("./assets/luxury-home-window-film.png");
  background-size: cover;
  background-position: center;
}

.surface-image.stone {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%),
    url("./assets/marble-benchtop-protection.png");
  background-size: cover;
  background-position: center;
}

.surface-image.workshop {
  background:
    radial-gradient(circle at 26% 35%, rgba(232, 200, 132, 0.38), transparent 25%),
    linear-gradient(135deg, #1c2525, #657070 55%, #111918);
}

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

.proof-grid div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.proof-grid span {
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.quote {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 53, 47, 0.96), rgba(17, 25, 24, 0.98)),
    url("./assets/luxury-home-window-film.png");
  background-size: cover;
  box-shadow: var(--shadow);
}

.quote p {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 30px clamp(18px, 4vw, 56px) 86px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.site-footer p {
  margin: 0;
}

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

  .nav {
    display: none;
  }

  .hero-inner,
  .booking-section,
  .shade-section,
  .surface-section,
  .quote {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
  }

  .section-copy.compact {
    position: static;
  }

  .package-grid,
  .surface-grid,
  .video-gallery-grid,
  .service-links,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-intro,
  .video-feature {
    grid-template-columns: 1fr;
  }

  .gallery-meta {
    grid-template-columns: 1fr;
  }

  .video-gallery-list.compact-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .gallery-intro {
    margin-top: 0;
  }

  .gallery-preview-card {
    min-height: 190px;
  }

  .gallery-preview-copy strong {
    font-size: 18px;
  }

  .gallery-preview-copy span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
    line-height: 32px;
  }
}

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

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy span {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 16px;
  }

  .mobile-booking-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(17, 25, 24, 0.92);
    backdrop-filter: blur(16px);
  }

  .mobile-booking-bar a {
    display: grid;
    place-items: center;
    min-height: 42px;
    border-radius: 10px;
    color: var(--white);
    font-weight: 900;
  }

  .mobile-booking-bar a:last-child {
    color: #1b1308;
    background: var(--gold-soft);
  }

  .hero {
    min-height: auto;
  }

  .overview-section {
    width: calc(100% - 24px);
    margin-right: auto;
    margin-left: auto;
    min-height: 720px;
    padding: 86px 18px 26px;
    overflow: hidden;
  }

  .overview-bg {
    inset: 0;
  }

  .overview-bg img {
    width: 156%;
    max-width: none;
    object-fit: cover;
    object-position: 50% 64%;
    transform: translateX(0);
  }

  .overview-bg::after {
    background:
      linear-gradient(90deg, rgba(8, 13, 12, 0.66) 0%, rgba(8, 13, 12, 0.32) 54%, rgba(8, 13, 12, 0.08) 76%, rgba(17, 25, 24, 0.52) 92%, rgba(17, 25, 24, 0.9) 100%),
      linear-gradient(180deg, rgba(17, 25, 24, 0.3) 0%, rgba(17, 25, 24, 0.08) 10%, rgba(17, 25, 24, 0) 18%),
      linear-gradient(0deg, rgba(8, 13, 12, 0.36), rgba(8, 13, 12, 0.01) 56%);
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 42px 0 34px;
  }

  .overview-section .section-copy {
    padding-left: 14px;
    padding-right: 8px;
  }

  .hero h2 {
    font-size: 42px;
  }

  .overview-section h1 {
    font-size: clamp(38px, 9vw, 44px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions,
  .booking-actions,
  .quote-actions {
    display: grid;
  }

  .hero-booking-card {
    padding: 20px;
  }

  .gallery-preview-card {
    min-height: 150px;
  }

  .gallery-preview-grid {
    gap: 8px;
  }

  .gallery-preview-copy {
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 6px;
  }

  .gallery-preview-copy strong {
    font-size: 14px;
  }

  .gallery-preview-copy span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 28px;
  }

  .gallery-site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .gallery-shell {
    width: min(100% - 20px, 720px);
    padding-bottom: 110px;
  }

  .gallery-actions {
    gap: 8px;
  }

  .gallery-back,
  .gallery-book {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .gallery-intro {
    gap: 16px;
  }

  .gallery-intro-media {
    min-height: 260px;
  }

  .gallery-intro-copy {
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
  }

  .gallery-intro-copy p,
  .video-copy p {
    font-size: 15px;
  }

  .video-feature {
    border-radius: 22px;
  }

  .back-to-top {
    right: 12px;
    bottom: 74px;
    min-width: 48px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 12px;
  }

  .viewer-shell {
    width: min(100% - 20px, 760px);
    padding-bottom: 110px;
  }

  .viewer-copy {
    padding: 18px;
    border-radius: 18px;
  }

  .video-card,
  .video-card.wide {
    min-height: 220px;
  }

  .booking-section,
  .shade-section,
  .packages,
  .gallery-preview,
  .gallery-section,
  .surface-section,
  .proof-section,
  .faq,
  .quote {
    width: min(100% - 28px, 1180px);
    padding: 46px 0;
  }

  .quote {
    padding: 26px;
  }

  .field-grid,
  .shade-controls {
    grid-template-columns: 1fr;
  }

  .booking-topline,
  .shade-readout {
    display: grid;
  }

  .shade-note {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .site-footer {
    display: grid;
    padding-bottom: 92px;
  }
}
