/* Elysium editorial redesign — shared across the full site. */
:root {
  --bg: #f7f1eb;
  --text: #211317;
  --accent: #471326;
  --accent-hover: #5a1c33;
  --primary: #471326;
  --secondary: #211317;
  --card: #fbf7f2;
  --card-strong: #efe3d8;
  --border: #dacbc0;
  --muted: #695d59;
  --focus: #7d3651;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-width: 1380px;
  --shadow-soft: 0 18px 50px rgba(53, 27, 34, 0.08);
  --shadow-strong: 0 24px 64px rgba(53, 27, 34, 0.14);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
.hero-title,
.section-title,
.footer-title,
.brand-name,
.card h3,
.card h4,
.timeline-title {
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.018em;
}

.container {
  width: min(100% - clamp(2rem, 5vw, 5rem), var(--max-width));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 241, 235, 0.96);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 86px;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.brand {
  min-width: min(31vw, 370px);
  gap: 1rem;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: none;
}

.brand-name {
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
  line-height: 1.05;
}

.brand-tagline {
  margin-top: 0.2rem;
  color: var(--muted);
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-size: 0.94rem;
  line-height: 1.15;
}

.site-nav-links {
  gap: clamp(1rem, 2vw, 2.25rem);
}

.site-nav-links a {
  position: relative;
  padding: 0.65rem 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0.22rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav-links a:hover::after,
.site-nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-meta {
  margin-left: auto;
}

@media (min-width: 901px) {
  .site-nav-links {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
}

.btn {
  min-height: 48px;
  border-radius: 999px;
  padding: 0.72rem 1.45rem;
  box-shadow: none;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fffaf7;
}

.btn-primary:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

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

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--card-strong);
  color: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--text);
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
}

.text-link:hover {
  color: var(--accent);
}

.eyebrow,
.mini-label,
.section-kicker {
  color: var(--accent);
  font-family: "DM Sans", "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  border-color: var(--border);
  background: transparent;
  padding: 0.42rem 0.9rem;
}

.mini-label {
  margin: 0 0 0.65rem;
}

.section-title {
  max-width: 18ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.section-intro,
.lead,
.muted {
  color: var(--muted);
}

.section {
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.section-tight {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.surface {
  border-block: 1px solid var(--border);
  background: #efe5dc;
}

/* Homepage */
.editorial-hero {
  border-bottom: 1px solid var(--border);
  padding-block: clamp(1.5rem, 3.5vw, 2.8rem);
}

.editorial-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(340px, 1fr) minmax(245px, 0.75fr);
  gap: clamp(1.5rem, 2.3vw, 2.6rem);
  align-items: stretch;
  min-height: min(650px, calc(100vh - 130px));
}

.editorial-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 1rem;
}

.editorial-hero .hero-title {
  max-width: 14ch;
  margin: clamp(1.4rem, 3vw, 2.6rem) 0 1.6rem;
  font-size: clamp(3.6rem, 4.5vw, 5.1rem);
  line-height: 0.92;
}

.editorial-rule {
  width: 68px;
  border-top: 1px solid var(--text);
  margin-bottom: 1.6rem;
}

.editorial-hero .lead {
  max-width: 35ch;
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.hero-actions {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-feature-image,
.maker-portrait {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--card-strong);
}

.hero-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-side-story {
  display: grid;
  grid-template-rows: minmax(260px, 0.92fr) auto;
  gap: 1.75rem;
}

.hero-side-story > img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.hero-story-copy {
  border-left: 1px solid var(--border);
  padding: 0.2rem 0 0.35rem 1.75rem;
}

.hero-story-copy h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.85rem, 2.3vw, 2.65rem);
  line-height: 1;
}

.hero-story-copy p:not(.mini-label) {
  max-width: 29ch;
  margin: 0 0 1rem;
  color: var(--muted);
}

.pathways {
  border-bottom: 1px solid var(--border);
  padding-block: clamp(3.2rem, 5vw, 5rem);
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
  text-align: center;
}

.section-kicker::before,
.section-kicker::after {
  width: 42px;
  border-top: 1px solid var(--border);
  content: "";
}

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

.pathway-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1.4rem;
  min-width: 0;
  padding: 1rem clamp(1.5rem, 3vw, 3rem);
}

.pathway-card + .pathway-card {
  border-left: 1px solid var(--border);
}

.pathway-card img {
  width: 112px;
  height: 138px;
  border-radius: 56px 56px 12px 12px;
  object-fit: cover;
}

.pathway-card h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.8rem, 2.3vw, 2.6rem);
  line-height: 1;
}

.pathway-card p:not(.mini-label) {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.maker-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(390px, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  max-width: 1120px;
}

.maker-portrait {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

.maker-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.maker-copy {
  max-width: 620px;
}

.maker-copy .section-intro {
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.maker-copy > p:not(.mini-label):not(.section-intro) {
  max-width: 57ch;
  color: var(--muted);
}

.maker-copy .btn {
  margin-top: 1.2rem;
}

.section-heading-row {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading-row .section-title {
  margin-bottom: 0;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: 230px 230px;
  gap: 1rem;
}

.work-image {
  overflow: hidden;
  min-height: 0;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0;
  background: var(--card);
  cursor: zoom-in;
}

.work-image-tall {
  grid-row: 1 / 3;
}

.work-image-wide {
  grid-column: 2 / 4;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.work-image:hover img {
  transform: scale(1.025);
}

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

.reviews-editorial .testimonial-card {
  border: 0;
  border-left: 1px solid var(--border);
  border-radius: 0;
  padding: 0 2rem;
  background: transparent;
  box-shadow: none;
}

.reviews-editorial .testimonial-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.editorial-cta {
  border-top: 1px solid var(--border);
  background: var(--accent);
  color: #fff8f3;
}

.editorial-cta-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.editorial-cta .mini-label,
.editorial-cta p {
  color: #e2cbd3;
}

.editorial-cta .section-title {
  margin-bottom: 0.65rem;
  color: #fff8f3;
}

.editorial-cta p:last-child {
  margin: 0;
}

.editorial-cta .btn-primary {
  border-color: #fff8f3;
  background: #fff8f3;
  color: var(--accent);
}

/* Shared inner-page polish. */
.page-hero,
.hero:not(.editorial-hero) {
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.card,
.callout,
.service-card,
.faq-category,
.faq-item,
.contact-card,
.timeline-item {
  border-color: var(--border);
  background: var(--card);
  box-shadow: none;
}

.card:hover,
.service-card:hover {
  border-color: #bda79a;
  box-shadow: var(--shadow-soft);
}

.image-card,
.path-card img,
.about-photo,
.gallery-item img {
  border-radius: var(--radius-sm);
}

.footer {
  border-top: 1px solid var(--border);
  background: #211317;
  color: #f5ebe5;
}

.footer-grid {
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-title {
  color: #fff8f3;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
}

.footer p,
.footer address,
.footer small,
.footer a,
.footer span {
  color: #cdbec0;
}

.footer a:hover {
  color: #fff8f3;
}

.footer-links strong {
  margin-bottom: 0.65rem;
  color: #fff8f3;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .brand {
    min-width: auto;
  }

  .brand-tagline {
    display: none;
  }

  .site-nav-links {
    gap: 1.15rem;
  }

  .editorial-hero-grid {
    grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  }

  .hero-side-story {
    grid-column: 1 / 3;
    grid-template-columns: minmax(280px, 0.8fr) 1fr;
    grid-template-rows: auto;
    align-items: center;
  }

  .hero-side-story > img {
    height: 300px;
  }

  .pathway-card {
    grid-template-columns: 82px 1fr;
    padding-inline: 1.2rem;
  }

  .pathway-card img {
    width: 82px;
    height: 112px;
  }
}

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

  .brand-name {
    font-size: 1.22rem;
  }

  .editorial-hero-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .editorial-hero-copy {
    grid-column: 1 / 3;
    max-width: 720px;
    padding-block: 1.5rem;
  }

  .editorial-hero .hero-title {
    max-width: 11ch;
    font-size: clamp(3.5rem, 9vw, 5.8rem);
  }

  .hero-side-story {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-side-story > img {
    flex: 1 1 auto;
    height: auto;
    min-height: 240px;
  }

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

  .pathway-card {
    grid-template-columns: 116px 1fr;
    padding-block: 1.7rem;
    padding-inline: 0;
  }

  .pathway-card + .pathway-card {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .pathway-card img {
    width: 116px;
    height: 138px;
  }

  .maker-grid {
    gap: 3rem;
  }

  .editorial-gallery {
    grid-template-rows: 190px 190px;
  }

  .reviews-editorial .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .reviews-editorial .testimonial-card,
  .reviews-editorial .testimonial-card:first-child {
    border-top: 1px solid var(--border);
    border-left: 0;
    padding: 1.7rem 0 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .header-inner {
    min-height: 68px;
  }

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

  .header-meta {
    display: none;
  }

  .editorial-hero {
    padding-block: 1rem 1.5rem;
  }

  .editorial-hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .editorial-hero-copy,
  .hero-side-story {
    grid-column: auto;
  }

  .editorial-hero-copy {
    padding-block: 1rem 1.5rem;
  }

  .editorial-hero .hero-title {
    margin-block: 1.5rem 1.2rem;
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  .hero-actions {
    gap: 1.5rem;
  }

  .hero-feature-image {
    aspect-ratio: 4 / 5;
  }

  .hero-side-story {
    margin-top: 0.5rem;
  }

  .hero-side-story > img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .hero-story-copy {
    padding-left: 1.2rem;
  }

  .pathways {
    padding-block: 3rem;
  }

  .pathway-card {
    grid-template-columns: 88px 1fr;
    gap: 1rem;
  }

  .pathway-card img {
    width: 88px;
    height: 112px;
  }

  .pathway-card h3 {
    font-size: 2rem;
  }

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

  .maker-portrait {
    width: min(100%, 460px);
    justify-self: center;
  }

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

  .editorial-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 170px 170px;
  }

  .work-image-tall {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .work-image-wide {
    grid-column: 1 / 3;
  }

  .editorial-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Shared site chrome refinements. */
.brand {
  min-width: auto;
  gap: 0.8rem;
}

.brand-tagline {
  display: none;
}

/* Keep the header focused on navigation and booking; social links live in the footer. */
.header-meta .social-inline {
  display: none !important;
}

.brand-name {
  font-size: clamp(1.25rem, 1.45vw, 1.52rem);
}

.footer {
  margin-top: 0;
  padding-block: clamp(3.5rem, 7vw, 6rem) 1.5rem;
}

.editorial-footer-grid {
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, 0.72fr));
  align-items: start;
}

.footer-brand {
  max-width: 35rem;
}

.footer-brand p {
  max-width: 32ch;
  font-size: 1.03rem;
}

.footer-brand address {
  max-width: 46ch;
  margin-top: 1.35rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.8rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(255, 248, 243, 0.14);
  padding-top: 1.3rem;
  font-size: 0.82rem;
}

.sticky-cta {
  display: none !important;
}

/* Bring every supporting page into the homepage editorial system. */
body:not(.editorial-home) .hero {
  border-bottom: 1px solid var(--border);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

body:not(.editorial-home) .hero-shell {
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(3rem, 6vw, 7rem);
  min-height: auto;
}

body:not(.editorial-home) .hero-copy {
  align-content: center;
  gap: clamp(1.35rem, 2.5vw, 2.2rem);
}

body:not(.editorial-home) .hero > .container.hero-copy {
  width: min(100% - 3rem, 1040px);
  margin-inline: auto;
  padding-block: clamp(1rem, 3vw, 2.5rem);
}

body:not(.editorial-home) .hero .hero-title {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.4rem, 5.6vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

body:not(.editorial-home) .hero .lead {
  max-width: 48ch;
  margin: 0;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
}

body:not(.editorial-home) .hero-collage {
  min-height: 470px;
  gap: 1rem;
  border-radius: 0;
}

body:not(.editorial-home) .hero-collage img {
  border-radius: var(--radius-md);
  box-shadow: none;
}

.editorial-page-visual {
  margin: 0;
}

.editorial-page-visual img {
  display: block;
  width: 100%;
  height: min(58vw, 590px);
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center 34%;
}

body:not(.editorial-home) .section {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

body:not(.editorial-home) .section-tight {
  padding-block: clamp(3.5rem, 6vw, 5rem);
}

body:not(.editorial-home) .section-title {
  max-width: 14ch;
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

body:not(.editorial-home) .surface {
  background: #efe5dc;
}

body:not(.editorial-home) .card,
body:not(.editorial-home) .contact-panel,
body:not(.editorial-home) .form-card,
body:not(.editorial-home) .path-card,
body:not(.editorial-home) .timeline-step,
body:not(.editorial-home) .callout,
body:not(.editorial-home) .info-card {
  border-color: #d6c7bd;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 246, 0.78);
  box-shadow: none;
}

body:not(.editorial-home) .card h2,
body:not(.editorial-home) .card h3,
body:not(.editorial-home) .path-card h2,
body:not(.editorial-home) .path-card h3,
body:not(.editorial-home) .contact-panel h2,
body:not(.editorial-home) .form-card h2 {
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

body:not(.editorial-home) .path-card {
  gap: 1.25rem;
  padding: 1rem 1rem 1.6rem;
}

body:not(.editorial-home) .path-card > :not(img) {
  margin-inline: 0.55rem;
}

body:not(.editorial-home) .path-card img {
  aspect-ratio: 5 / 4;
  margin-bottom: 0.5rem;
  border-radius: calc(var(--radius-md) - 4px);
}

body:not(.editorial-home) .service-card-grid {
  gap: 1rem;
}

body:not(.editorial-home) .service-card {
  min-height: 230px;
  border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0;
  padding: 2rem 0;
  background: transparent;
}

body:not(.editorial-home) .service-card h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

body:not(.editorial-home) .image-grid,
body:not(.editorial-home) .gallery-grid {
  gap: 0.85rem;
}

body:not(.editorial-home) .gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body:not(.editorial-home) .gallery-tile {
  border-radius: var(--radius-md);
}

body:not(.editorial-home) .gallery-caption {
  padding: 1.5rem 0.9rem 0.75rem;
  background: rgba(33, 19, 23, 0.68);
}

body:not(.editorial-home) .gallery-filter {
  margin-bottom: 1.4rem;
}

body:not(.editorial-home) .filter-btn {
  padding-inline: 1.2rem;
  font-weight: 600;
}

body:not(.editorial-home) .contact-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

body:not(.editorial-home) .contact-panel,
body:not(.editorial-home) .form-card {
  padding: clamp(1.6rem, 3.5vw, 3.2rem);
}

body:not(.editorial-home) input,
body:not(.editorial-home) textarea,
body:not(.editorial-home) select {
  border-radius: 0;
  border-width: 0 0 1px;
  padding-inline: 0;
  background: transparent;
}

body:not(.editorial-home) .faq-categories {
  max-width: 1080px;
  margin-inline: auto;
  gap: 0;
}

body:not(.editorial-home) .faq-category,
body:not(.editorial-home) .faq-item {
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}

body:not(.editorial-home) .faq-category:last-child {
  border-bottom: 1px solid var(--border);
}

body:not(.editorial-home) .faq-category > summary {
  padding-block: 1.6rem;
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
}

body:not(.editorial-home) .faq-item > summary {
  padding-block: 1.2rem;
  font-weight: 600;
}

body:not(.editorial-home) .faq-category-content,
body:not(.editorial-home) .faq-answer {
  padding-left: clamp(1rem, 4vw, 4rem);
}

body:not(.editorial-home) .cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 2rem;
  border-radius: var(--radius-md);
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--accent);
  box-shadow: none;
}

body:not(.editorial-home) .cta-band .btn-group {
  grid-column: 2;
  grid-row: 1 / span 2;
}

body:not(.editorial-home) .cta-band .section-title {
  color: #fff8f3;
}

body:not(.editorial-home) .timeline-step {
  border-radius: 0;
  border-width: 1px 0 0;
  padding-block: 2rem;
  padding-right: 0;
  background: transparent;
}

@media (min-width: 901px) {
  .site-nav-links a[href="contact.html"] {
    display: none;
  }
}

@media (max-width: 980px) {
  .editorial-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.editorial-home) .hero-shell,
  body:not(.editorial-home) .contact-layout {
    grid-template-columns: 1fr;
  }

  body:not(.editorial-home) .hero-collage {
    min-height: 390px;
  }

  body:not(.editorial-home) .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 0 !important;
  }

  .brand-name {
    font-size: clamp(0.88rem, 4.1vw, 1rem);
    white-space: nowrap;
  }

  .footer {
    padding-block: 3.2rem 1.2rem;
  }

  .editorial-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.3rem !important;
  }

  .footer-links {
    gap: 0.2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 2.5rem;
  }

  body:not(.editorial-home) .hero {
    padding-block: 2.8rem 3.5rem;
  }

  body:not(.editorial-home) .hero > .container.hero-copy {
    width: min(100% - 2rem, 1040px);
    padding-block: 0.5rem;
  }

  body:not(.editorial-home) .hero .hero-title {
    max-width: 11ch;
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  body:not(.editorial-home) .hero-visual,
  body:not(.editorial-home) .hero-collage {
    display: grid !important;
  }

  body:not(.editorial-home) .hero-collage {
    min-height: 0;
    grid-template-columns: 1fr 0.72fr;
  }

  body:not(.editorial-home) .hero-collage img {
    min-height: 250px;
    transform: none !important;
  }

  .editorial-page-visual img {
    height: 380px;
  }

  body:not(.editorial-home) .section {
    padding-block: 3.5rem;
  }

  body:not(.editorial-home) .section-title {
    font-size: clamp(2.6rem, 12vw, 3.7rem);
  }

  body:not(.editorial-home) .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.editorial-home) .cta-band {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  body:not(.editorial-home) .cta-band .btn-group,
  body:not(.editorial-home) .hero .btn-group,
  body:not(.editorial-home) .hero-actions {
    display: flex !important;
    grid-column: auto;
    grid-row: auto;
  }
}

/* Keep image previews above the mobile navigation. */
.lightbox {
  z-index: 20000;
}

@media (max-width: 680px) {
  .lightbox {
    padding: 5.5rem 0.75rem 5rem;
  }

  .lightbox-frame {
    width: 100%;
  }

  .lightbox-close {
    top: -3.5rem;
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-image img,
  .site-nav-links a::after,
  .btn {
    transition: none;
  }
}

/* Creative service pages — visual storytelling for nails and permanent jewellery. */
.creative-service-page .site-header {
  background: var(--bg);
  backdrop-filter: none;
}

.creative-service-page .brand-tagline,
.creative-service-page .social-inline {
  display: none !important;
}

.creative-service-page .service-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding-block: clamp(1.6rem, 3.5vw, 3rem);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(380px, 1.25fr) minmax(190px, 0.5fr);
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: stretch;
  min-height: min(660px, calc(100vh - 120px));
}

.service-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 3vw, 3rem) clamp(0rem, 1.5vw, 1rem) clamp(1rem, 3vw, 3rem) 0;
}

.service-hero .hero-title {
  max-width: 10ch;
  margin: 1.4rem 0 1.5rem;
  font-size: clamp(3.9rem, 5.3vw, 6.2rem);
  line-height: 0.87;
}

.service-hero .hero-title em {
  color: var(--accent);
  font-weight: 400;
}

.service-hero .lead {
  max-width: 38ch;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.service-hero-main,
.service-hero-detail {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--card-strong);
}

.service-hero-main picture,
.service-hero-main img,
.service-hero-detail img {
  display: block;
  width: 100%;
  height: 100%;
}

.service-hero-main img,
.service-hero-detail img {
  object-fit: cover;
}

.service-hero-main figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: max-content;
  min-width: 220px;
  max-width: calc(100% - 2rem);
  border-radius: 999px;
  padding: 0.5rem 1.35rem;
  background: rgba(247, 241, 235, 0.92);
  color: var(--accent);
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.service-hero-detail {
  margin-block: 8rem 2rem;
}

.service-hero-detail img {
  object-position: center;
}

.section-note {
  max-width: 43ch;
  margin: 0;
  color: var(--muted);
}

.art-service-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1rem;
}

.art-service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
}

.art-service-card-wide {
  grid-row: span 2;
  min-height: 760px;
}

.art-service-card > img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.art-service-card-wide > img {
  min-height: 420px;
}

.art-service-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  background: rgba(251, 247, 242, 0.95);
  backdrop-filter: blur(10px);
}

.art-service-copy .service-index {
  position: absolute;
  top: 1.5rem;
  right: 1.7rem;
  color: var(--accent);
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-size: 1.4rem;
}

.art-service-copy h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(2.7rem, 4vw, 4.5rem);
  line-height: 0.88;
}

.art-service-copy p:not(.mini-label) {
  max-width: 42ch;
  margin: 0 0 1rem;
  color: var(--muted);
}

.art-service-card-plum {
  border-color: var(--accent);
  background: var(--accent);
}

.art-service-card-plum .art-service-copy {
  background: rgba(71, 19, 38, 0.95);
  color: #fff8f3;
}

.art-service-card-plum .art-service-copy p,
.art-service-card-plum .mini-label,
.art-service-card-plum .service-index {
  color: #e7d0d8 !important;
}

.art-service-card-plum .text-link {
  color: #fff8f3;
}

.appointment-story {
  border-block: 1px solid var(--border);
}

.appointment-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 0.8fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: stretch;
}

.appointment-story-heading {
  align-self: center;
}

.appointment-story-heading .section-title {
  margin: 0.6rem 0 1.2rem;
}

.appointment-story-heading > p:last-child {
  color: var(--muted);
}

.appointment-steps {
  display: grid;
}

.appointment-steps article {
  border-top: 1px solid var(--border);
  padding: 1.35rem 0;
}

.appointment-steps article:last-child {
  border-bottom: 1px solid var(--border);
}

.appointment-steps span,
.note-number,
.process-step span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.appointment-steps h3,
.nail-notes h3 {
  margin: 0.35rem 0 0.4rem;
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.appointment-steps p,
.nail-notes article p {
  margin: 0;
  color: var(--muted);
}

.appointment-story-image {
  overflow: hidden;
  min-height: 540px;
  margin: 0;
  border-radius: 50% 50% var(--radius-md) var(--radius-md);
}

.appointment-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creative-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 0.8fr;
  grid-template-rows: 240px 240px;
  gap: 1rem;
}

.creative-gallery .work-image:last-child {
  grid-column: 3;
  grid-row: 1;
}

.creative-gallery .work-image-wide {
  grid-column: 2 / 4;
}

.creative-gallery .work-image-tall {
  grid-row: 1 / 3;
}

.nail-notes-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.8fr);
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  align-items: start;
}

.nail-notes article {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}

.process-collage {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 0.9fr;
  grid-template-rows: minmax(270px, 0.8fr) minmax(300px, 1fr);
  gap: 1rem;
}

.process-step {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
}

.process-step > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step > div {
  padding: clamp(1.4rem, 2.5vw, 2.5rem);
}

.process-step h3 {
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  line-height: 0.95;
}

.process-step p {
  max-width: 35ch;
  margin: 0;
  color: var(--muted);
}

.process-step-large {
  grid-row: 1 / 3;
}

.process-step-large > div,
.process-step-image > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(251, 247, 242, 0.95);
  backdrop-filter: blur(10px);
}

.process-step-copy {
  align-content: end;
}

.process-step-image {
  grid-row: 1 / 3;
}

.process-step-plum {
  align-content: end;
  border-color: var(--accent);
  background: var(--accent);
  color: #fff8f3;
}

.process-step-plum p,
.process-step-plum span {
  color: #e7d0d8;
}

.events-editorial-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.3fr) minmax(190px, 0.48fr);
  grid-template-rows: minmax(380px, 1fr) auto;
  gap: 1rem;
}

.events-copy {
  align-self: center;
  padding-right: clamp(1rem, 3vw, 3rem);
}

.events-copy .section-title {
  margin: 0.6rem 0 1.2rem;
}

.events-copy > p:not(.mini-label) {
  margin-bottom: 1.8rem;
  color: var(--muted);
}

.events-main-image,
.events-small-image {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
}

.events-main-image {
  grid-row: 1 / 3;
}

.events-main-image img,
.events-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-small-image {
  margin-top: 4rem;
}

.events-caption {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.keepsake-grid {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(340px, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  max-width: 1160px;
}

.keepsake-grid figure {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: var(--radius-md);
}

.keepsake-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.keepsake-grid .section-title {
  margin: 0.6rem 0 1.2rem;
}

.keepsake-grid p:not(.mini-label),
.story-list {
  color: var(--muted);
}

.story-list {
  margin: 1.5rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.story-list li {
  border-top: 1px solid var(--border);
  padding: 0.8rem 0;
}

.story-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.service-final-cta .btn-primary {
  border-color: #fff8f3;
  background: #fff8f3;
  color: var(--accent);
}

.service-final-cta .btn-primary:hover {
  border-color: #fff;
  background: #fff;
  color: var(--accent-hover);
}

@media (max-width: 1100px) {
  .service-hero-grid {
    grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  }

  .service-hero-detail {
    display: none;
  }

  .nail-notes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .events-editorial-grid {
    grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1.15fr);
  }

  .events-small-image,
  .events-caption {
    display: none;
  }
}

@media (max-width: 820px) {
  .service-hero-grid,
  .appointment-story-grid,
  .keepsake-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-grid {
    min-height: 0;
  }

  .service-hero-copy {
    padding-block: 1.6rem 0.5rem;
  }

  .service-hero .hero-title {
    max-width: 9ch;
    font-size: clamp(3.6rem, 14vw, 5.5rem);
  }

  .service-hero-main {
    aspect-ratio: 4 / 5;
  }

  .art-service-grid,
  .events-editorial-grid {
    grid-template-columns: 1fr;
  }

  .art-service-card,
  .art-service-card-wide {
    min-height: 580px;
    grid-row: auto;
  }

  .appointment-story-image {
    min-height: 480px;
  }

  .process-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px minmax(280px, auto) 500px;
  }

  .process-step-large,
  .process-step-image {
    grid-row: auto;
  }

  .process-step-large {
    grid-column: 1 / 3;
  }

  .process-step-image {
    grid-column: 1 / 3;
  }

  .events-main-image {
    grid-row: auto;
    min-height: 500px;
  }

  .keepsake-grid {
    max-width: 680px;
  }

  .keepsake-grid figure {
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 620px) {
  .creative-service-page .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-hero .hero-actions,
  .events-copy .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
  }

  .service-hero-main figcaption {
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: min(210px, calc(100% - 1.5rem));
    max-width: calc(100% - 1.5rem);
    padding-inline: 1.1rem;
  }

  .art-service-card,
  .art-service-card-wide {
    min-height: 520px;
  }

  .art-service-copy {
    padding: 1.35rem;
  }

  .art-service-copy .service-index {
    top: 1.1rem;
    right: 1.2rem;
  }

  .appointment-story-grid {
    gap: 2.5rem;
  }

  .appointment-story-image {
    min-height: 400px;
  }

  .creative-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 210px 220px;
  }

  .creative-gallery .work-image-tall {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .creative-gallery .work-image-wide {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .creative-gallery .work-image:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .nail-notes-grid {
    grid-template-columns: 1fr;
  }

  .process-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 480px auto 480px auto;
  }

  .process-step-large,
  .process-step-image {
    grid-column: auto;
  }

  .events-main-image {
    min-height: 420px;
  }

  .service-final-cta .editorial-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Guided booking journey. */
.booking-page .site-header {
  background: var(--bg);
  backdrop-filter: none;
}

.booking-hero {
  border-bottom: 1px solid var(--border);
  padding-block: clamp(1.6rem, 3.5vw, 3rem);
}

.booking-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(380px, 1.1fr) minmax(220px, 0.45fr);
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  align-items: stretch;
  min-height: min(650px, calc(100vh - 130px));
}

.booking-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.booking-hero .hero-title {
  max-width: 10ch;
  margin: 1.3rem 0 1.5rem;
  font-size: clamp(4rem, 5.4vw, 6.2rem);
  line-height: 0.88;
}

.booking-hero .lead {
  max-width: 40ch;
  margin: 0 0 2rem;
  color: var(--muted);
}

.booking-portrait {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
}

.booking-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.booking-promise {
  align-self: end;
  border-left: 1px solid var(--border);
  padding: 1.5rem 0 1.5rem clamp(1.2rem, 2.5vw, 2.3rem);
}

.booking-promise > p:not(.mini-label) {
  margin: 0.7rem 0 1rem;
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.18;
}

.booking-promise > span {
  color: var(--muted);
  font-size: 0.83rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(650px, 1.45fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}

.booking-sidebar {
  position: sticky;
  top: 8rem;
}

.booking-sidebar .section-title {
  margin: 0.4rem 0 1.5rem;
}

.booking-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.8rem;
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
}

.booking-steps li:last-child {
  border-bottom: 1px solid var(--border);
}

.booking-steps li > span,
.form-step-label {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-steps strong {
  display: block;
  margin-bottom: 0.15rem;
}

.booking-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.direct-contact {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.booking-form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  padding: clamp(1.5rem, 4vw, 4rem) !important;
  background: var(--card) !important;
}

.guided-form {
  gap: 0;
}

.booking-purpose-fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.booking-purpose-fieldset legend {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  padding: 0;
  color: var(--text);
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  line-height: 0.95;
}

.booking-purpose-fieldset legend .form-step-label {
  font-family: "DM Sans", "Manrope", sans-serif;
}

.booking-purpose-fieldset > .field-help {
  margin: 0 0 1.8rem;
}

.booking-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.booking-purpose-card {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.booking-purpose-card > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.booking-purpose-card > span {
  display: grid;
  grid-template-rows: 120px auto auto;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.booking-purpose-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.booking-purpose-card strong {
  padding: 0.9rem 0.9rem 0.1rem;
  font-size: 0.95rem;
}

.booking-purpose-card small {
  padding: 0 0.9rem 0.9rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.booking-purpose-card:hover > span {
  border-color: #ad8b98;
  transform: translateY(-2px);
}

.booking-purpose-card > input:focus-visible + span {
  outline: 3px solid color-mix(in srgb, var(--focus), transparent 50%);
  outline-offset: 3px;
}

.booking-purpose-card > input:checked + span {
  border-color: var(--accent);
  background: #f3e7eb;
  box-shadow: inset 0 0 0 1px var(--accent);
}

.booking-form-section {
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 3rem;
}

.booking-form-section[hidden],
.conditional-fields[hidden],
.press-on-route[hidden] {
  display: none !important;
}

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

.form-section-heading h2 {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(2.5rem, 3.8vw, 4rem);
}

.form-section-heading p {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
}

.conditional-fields,
.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1.5rem;
}

.conditional-fields {
  border-block: 1px solid var(--border);
  margin-bottom: 2rem;
  padding-block: 1.5rem;
}

.guided-form .field {
  gap: 0.3rem;
}

.guided-form label {
  font-weight: 600;
}

.guided-form label span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.guided-form input,
.guided-form select,
.guided-form textarea {
  border-width: 0 0 1px !important;
  border-radius: 0 !important;
  padding: 0.75rem 0 !important;
  background: transparent !important;
}

.guided-form textarea {
  min-height: 150px;
}

.custom-select {
  position: relative;
  z-index: 1;
  width: 100%;
}

.custom-select:focus-within,
.custom-select:has(.custom-select-list:not([hidden])) {
  z-index: 30;
}

.custom-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.custom-select-trigger {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-bottom: 1px solid var(--accent);
  padding: 0.72rem 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.custom-select-trigger:hover {
  border-bottom-color: var(--focus);
  color: var(--accent);
}

.custom-select-trigger:focus-visible {
  border-radius: var(--radius-xs);
  outline: 3px solid rgba(125, 54, 81, 0.22);
  outline-offset: 4px;
}

.custom-select-trigger:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.custom-select-action {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.custom-select-list {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 0.45rem;
  background: var(--card);
  box-shadow: var(--shadow-strong);
}

.custom-select-list[hidden] {
  display: none;
}

.custom-select-option {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 0.72rem 0.85rem;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.custom-select-option:last-child {
  border-bottom: 0;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option[aria-selected="true"] {
  outline: 0;
  background: var(--card-strong);
  color: var(--accent);
}

.custom-select-option[aria-selected="true"] {
  font-weight: 700;
}

.press-on-route {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  border-block: 1px solid var(--border);
  margin-bottom: 2rem;
  padding-block: 1.6rem;
}

.press-on-route h3 {
  margin: 0.3rem 0 0.4rem;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

.press-on-route p:not(.mini-label) {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
}

.booking-submit-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
  padding-top: 2rem;
}

.booking-submit-row p {
  max-width: 44ch;
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.booking-form-card.form-state--success {
  min-height: 480px;
}

.booking-form-card .form-success-layer {
  place-items: center;
  background: var(--accent);
  color: #fff8f3;
}

.booking-form-card .form-success-layer p {
  color: #e2cbd3;
}

.booking-form-card .form-success-layer h3 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.92;
}

.booking-form-card .form-success-layer .btn-ghost {
  border-color: #fff8f3;
  color: #fff8f3;
}

@media (max-width: 1080px) {
  .booking-hero-grid {
    grid-template-columns: minmax(320px, 0.8fr) minmax(380px, 1.2fr);
  }

  .booking-promise {
    display: none;
  }

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

  .booking-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    gap: 2rem 4rem;
  }

  .booking-sidebar .mini-label,
  .booking-sidebar .section-title {
    grid-column: 1;
  }

  .booking-steps {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .direct-contact {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .booking-hero-grid,
  .booking-sidebar {
    grid-template-columns: 1fr;
  }

  .booking-hero-grid {
    min-height: 0;
  }

  .booking-hero .hero-title {
    font-size: clamp(3.6rem, 14vw, 5.4rem);
  }

  .booking-portrait {
    aspect-ratio: 5 / 4;
  }

  .booking-steps,
  .direct-contact {
    grid-column: auto;
    grid-row: auto;
  }

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

  .conditional-fields,
  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .booking-submit-row,
  .press-on-route {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .booking-form-card {
    padding: 1.15rem !important;
  }

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

  .booking-purpose-card > span {
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto;
  }

  .booking-purpose-card img {
    grid-row: 1 / 3;
    width: 96px;
    height: 100%;
    min-height: 92px;
  }
}
