/* Radiant Entertainment — single-page launch styles */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --ink: #f3efe6;
  --muted: #b8b0a2;
  --gold: #c4a574;
  --gold-soft: #d4bc8e;
  --line: rgba(196, 165, 116, 0.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bg-texture: url("assets/bg-texture.jpg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@supports (overscroll-behavior-x: none) {
  html {
    overscroll-behavior-x: none;
  }
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  max-width: 100%;
  background-color: #1a1a1a;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@supports (overscroll-behavior-x: none) {
  body {
    overscroll-behavior-x: none;
  }
}

/*
  Content shell clips any descendant overflow (hero transforms, etc).
  Header stays outside so position:fixed still tracks the viewport —
  putting overflow-x on body alone would make the header scroll in Firefox/Chromium.
*/
.page {
  overflow-x: hidden; /* fallback */
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

/*
  Fixed texture layer. Do not use filter:blur here — Firefox lets filter
  ink-overflow widen the document even inside overflow/clip-path parents.
*/
.page-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-color: #1a1a1a;
  background-image: var(--bg-texture);
  background-size: 400px;
  background-position: 0 0;
  background-repeat: repeat;
}

/* Soft veil over the tile so seams read quieter without CSS blur. */
.page-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background: rgba(10, 10, 10, 0.42);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-contrast: more) {
  :root {
    --gold: #e0c08a;
    --gold-soft: #f0d9a8;
    --muted: #d4cdc2;
    --line: rgba(224, 192, 138, 0.55);
  }

  :focus-visible {
    outline-width: 3px;
  }
}

h1,
h2,
h3,
.brand-mark,
.logo {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
}

h1 {
  font-size: 2.4rem;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  margin: 0.35em 0 0.5em;
  font-weight: 500;
  color: #fff;
}

h2 {
  font-size: 2rem;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.2em 0 0.55em;
  color: #fff;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
  font-family: var(--sans);
  font-weight: 400;
}

p {
  margin: 0 0 1rem;
}

.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.5rem 1rem;
  clip: auto;
  clip-path: none;
  overflow: visible;
  z-index: 100;
  background: var(--gold);
  color: #111;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
}

.wrap {
  width: 92%;
  width: min(1120px, calc(100% - 2.5rem));
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}

.wrap.narrow {
  width: 92%;
  width: min(760px, calc(100% - 2.5rem));
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
  padding: 0 1.25rem;
  padding: 0 clamp(1.25rem, 4vw, 2.75rem);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  transition: background 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 165, 116, 0.12);
}

.logo {
  position: relative;
  z-index: 60;
  font-size: 0.95rem;
  font-size: clamp(0.95rem, 3.8vw, 1.35rem);
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
  max-width: calc(100vw - 5.5rem);
  max-width: min(100%, calc(100vw - 5.5rem));
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header:has(.site-nav.is-open) {
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  left: 0;
  inset: var(--header-h) 0 auto;
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem 1.5rem 1.75rem;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid var(--line);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

.site-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #fff;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 0.65rem 1rem;
  color: var(--gold) !important;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: rgba(196, 165, 116, 0.12);
  color: #fff !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 60;
  flex-shrink: 0;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  color: var(--gold);
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1px;
  margin: 0;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}

.nav-toggle span + span {
  margin-top: 7px;
}

/* Hero */

.hero {
  position: relative;
  /* Shorter than the viewport so services title + lede can peek above the fold */
  min-height: 72vh;
  min-height: 72dvh;
  min-height: calc(100svh - 12rem);
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 1.25rem) 1.25rem 2rem;
  overflow: hidden;
}

@supports (contain: paint) {
  .hero {
    contain: paint;
  }
}

.hero__media {
  position: absolute;
  /* Bleed inside .hero overflow — pan without scale so Firefox doesn’t widen scrollWidth */
  top: -4%;
  right: -4%;
  bottom: -4%;
  left: -4%;
  inset: -4%;
  background-color: #1a1a1a;
  background-image: url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: hero-drift 28s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  animation: rise 1s var(--ease) both;
}

.brand-mark {
  margin: 0;
  font-size: 2.4rem;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  color: var(--gold);
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.hero h1 {
  font-size: 1.55rem;
  font-size: clamp(1.55rem, 3.1vw, 2.25rem);
  margin: 0.45em 0 0.65em;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.lede {
  color: var(--muted);
  max-width: 32rem;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 1.75rem;
}

.text-link {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
  background: none;
  cursor: pointer;
  font-family: var(--sans);
}

.text-link:hover {
  color: #fff;
  border-color: #fff;
}

/* Sections */

.section {
  padding: 3.25rem 0;
  padding: clamp(3.25rem, 8vw, 7rem) 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-lede {
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

.services h2,
.services .section-lede,
.faq h2 {
  text-align: center;
}

.services .section-lede {
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}

.services .service-list,
.services .service-list h3,
.services .service-list p {
  text-align: left;
}

.services {
  background: transparent;
  border-top: 1px solid transparent;
  padding-top: 2.5rem;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.service-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.service-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.service-list p {
  margin: 0;
  color: var(--muted);
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.info-trio .section-cta {
  width: 100%;
  max-width: 760px;
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.section-cta p {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1rem;
}

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gold);
  display: -ms-grid;
  display: grid;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}

.service-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* Gallery */

.gallery {
  padding: 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at top, rgba(20, 18, 16, 0.55) 0%, rgba(10, 10, 10, 0.2) 55%, transparent 100%);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
  margin: 0;
}

.gallery-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #1a1a1a;
  border-left: 1px solid var(--line);
  /* Square fallback when aspect-ratio is unsupported */
  height: 0;
  padding-bottom: 100%;
}

@supports (aspect-ratio: 1 / 1) {
  .gallery-strip figure {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 1 / 1;
  }
}

.gallery-strip figure:nth-child(2n + 1) {
  border-left: 0;
}

.gallery-strip figure:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.gallery-strip a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .gallery-strip figure:hover img {
    transform: scale(1.05);
  }
}

/* GLightbox — keep viewer aligned with dark site; kill 100vw (scrollbar gutter overflow in Firefox) */
.glightbox-container {
  width: 100% !important;
  max-width: 100%;
}

.glightbox-clean .gslide-description {
  background: transparent;
}

.goverlay {
  background: rgba(0, 0, 0, 0.92);
}

/* Info trio */

.info-trio {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.trio-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.trio-heading h3 {
  margin: 0;
}

.trio-icon {
  display: -ms-inline-grid;
  display: inline-grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--gold);
}

.trio-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.trio p {
  color: var(--muted);
  font-size: 0.98rem;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.process-steps li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.process-steps span {
  color: var(--gold);
}

/* FAQ */

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-size: clamp(1.15rem, 3.5vw, 1.35rem);
  color: #fff;
  padding-right: 1.75rem;
  min-height: 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:focus {
  outline: none;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.faq-list summary::after {
  content: "+";
  content: "+" / "";
  position: absolute;
  right: 0;
  color: var(--gold);
  font-family: var(--sans);
}

.faq-list details[open] summary::after {
  content: "–";
  content: "–" / "";
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 40rem;
}

/* Contact */

.contact {
  background-color: #0a0a0a;
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.88)),
    url("assets/contact.jpg");
  background-position: left center, left center;
  background-size: auto, cover;
  background-repeat: no-repeat, no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: stretch;
}

.contact__intro {
  min-width: 0;
  max-width: none;
}

.contact__intro h2 {
  margin-bottom: 1rem;
}

.contact__lede,
.contact__intro p {
  color: var(--muted);
}

.contact__lede {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact__direct {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.9;
}

.contact__direct a {
  color: var(--gold-soft);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  padding: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(243, 239, 230, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  min-width: 0;
}

.btn-outline,
.submit,
.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form button {
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(243, 239, 230, 0.28);
  color: var(--ink);
  padding: 0.9rem 1rem;
  font: inherit;
  font-size: 1rem;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.form-fieldset.is-invalid {
  border-color: #e8a0a0;
}

.form-fieldset.is-invalid legend {
  color: #e8a0a0;
}

.contact-form option {
  background: #111;
  color: #fff;
}

.form-fieldset {
  border: 1px solid rgba(243, 239, 230, 0.2);
  padding: 0.85rem 1rem 1rem;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.form-fieldset legend {
  padding: 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  margin-top: 0.35rem;
}

.choice-group--inline {
  flex-wrap: nowrap;
}

.choice-group--services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem 1.25rem;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  min-height: 2.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  white-space: nowrap;
}

.choice input {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.submit {
  justify-self: start;
  margin-top: 0.5rem;
}

.submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.form-stub-note {
  margin: 0.65rem 0 0;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted, rgba(245, 240, 232, 0.72));
}

.form-stub-note a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.form-status {
  margin: 0.5rem 0 0;
  color: var(--gold-soft);
}

.form-status.is-error {
  color: #e8a0a0;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.65rem;
}

.footer-blurb {
  margin: 0;
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-place {
  margin: 0;
  text-align: left;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-place a {
  color: var(--gold-soft);
}

.footer-meta {
  justify-self: start;
  text-align: left;
}

.footer-meta nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  margin-bottom: 0.35rem;
}

.footer-meta a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-meta p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.site-credit {
  border-top: 1px solid rgba(196, 165, 116, 0.14);
  padding: 0.7rem clamp(1.25rem, 4vw, 2.75rem);
  text-align: center;
}

.site-credit p {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(184, 176, 162, 0.65);
}

.site-credit a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-credit a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

/* Motion */

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-2%, -1.5%, 0);
  }
}

@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;
  }

  .hero__media {
    transform: none !important;
  }
}

/* Responsive — standard breakpoints: 768 (md), 1024 (lg)
   Multi-column blocks are either stacked or 3-across — no 2-col middle state. */

@media (min-width: 768px) {
  .wrap,
  .wrap.narrow {
    width: min(1120px, calc(100% - 3rem));
  }

  .wrap.narrow {
    width: min(760px, calc(100% - 3rem));
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    z-index: auto;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 0;
  }

  .logo {
    max-width: none;
    overflow: visible;
    text-overflow: unset;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    align-items: end;
    padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 4vw, 2.75rem) 4.5rem;
  }

  .services {
    padding-top: clamp(3.25rem, 8vw, 7rem);
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.25) 100%),
      linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 45%);
  }

  .choice-group--services {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-strip figure {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .gallery-strip figure:nth-child(2n + 1) {
    border-left: 1px solid var(--line);
  }

  .gallery-strip figure:nth-child(3n + 1) {
    border-left: 0;
  }

  .gallery-strip figure:nth-child(n + 3) {
    border-top: 0;
  }

  .gallery-strip figure:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (min-width: 1024px) {
  .gallery-strip {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-strip figure {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .gallery-strip figure:nth-child(n + 3),
  .gallery-strip figure:nth-child(n + 4),
  .gallery-strip figure:nth-child(2n + 1),
  .gallery-strip figure:nth-child(3n + 1) {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .gallery-strip figure:first-child {
    border-left: 0;
  }

  .trio {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }

  .contact__intro {
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-place {
    text-align: center;
  }

  .footer-meta {
    justify-self: end;
    text-align: right;
  }

  .footer-meta nav {
    justify-content: flex-end;
  }
}
