:root {
  --ink: #111111;
  --ink-soft: #1d1d1b;
  --paper: #f4f0e8;
  --paper-strong: #fffaf0;
  --muted: #a7a098;
  --line: rgba(255, 250, 240, 0.16);
  --accent: #b94032;
  --accent-bright: #e85d4d;
  --sage: #9cab87;
  --steel: #6d7884;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.is-loading {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0.6rem 0.85rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  color: var(--paper-strong);
  background:
    linear-gradient(135deg, rgba(185, 64, 50, 0.18), rgba(17, 17, 17, 0) 44%),
    var(--ink);
  transition: opacity 520ms ease, visibility 520ms ease, transform 520ms ease;
}

.loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1.5rem);
  pointer-events: none;
}

.loader-inner {
  width: min(38rem, calc(100% - 2rem));
}

.loader-kicker {
  margin-bottom: 0.75rem;
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.loader-title {
  display: grid;
  gap: 0.1rem;
  font-size: 5.8rem;
  font-weight: 950;
  line-height: 0.83;
  text-transform: uppercase;
}

.loader-title span {
  display: block;
  transform: translateY(1rem);
  opacity: 0;
  animation: loaderTextIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.loader-title span:last-child {
  animation-delay: 120ms;
}

.loader-progress {
  height: 2px;
  margin-top: 1.4rem;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.16);
}

.loader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent-bright);
  transform: translateX(-100%);
  animation: loaderProgress 980ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0));
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 0.7rem;
  background: rgba(17, 17, 17, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  color: var(--paper-strong);
  background: var(--accent);
  font-size: 0.8rem;
  border-radius: 50%;
}

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

.site-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.88rem;
}

.site-nav a,
.footer-links a {
  position: relative;
}

.site-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.32rem;
  left: 0;
  height: 1px;
  background: var(--accent-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  min-height: 3.15rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  padding: 0.8rem 1.08rem;
  color: var(--paper-strong);
  background: var(--accent);
  font-size: 0.85rem;
  font-weight: 950;
  box-shadow: 0 0 0 1px rgba(232, 93, 77, 0.15), 0 14px 34px rgba(185, 64, 50, 0.34);
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 0 1px rgba(232, 93, 77, 0.28), 0 18px 44px rgba(185, 64, 50, 0.48);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  margin: 0.24rem auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 700ms ease;
}

.hero.is-settled .hero-image {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94) 0%, rgba(17, 17, 17, 0.72) 38%, rgba(17, 17, 17, 0.08) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0) 48%);
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 8.5rem 0 4.2rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 8ch;
  margin-bottom: 1rem;
  font-size: 8.8rem;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  color: var(--paper-strong);
  font-size: 4.2rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 0.42rem;
  color: var(--paper-strong);
  font-size: 1.18rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 42rem;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.6rem 0 2.6rem;
}

.btn {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.88rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--paper-strong);
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-bright);
}

.btn-ghost {
  border-color: rgba(255, 250, 240, 0.38);
  color: var(--paper-strong);
  background: rgba(255, 255, 255, 0.04);
}

.btn-dark {
  color: var(--paper-strong);
  background: var(--ink-soft);
}

.hero-proof {
  display: grid;
  max-width: 48rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-proof div {
  min-height: 5.8rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 0.25rem 0 0;
  color: var(--paper-strong);
  font-weight: 850;
}

.ticker {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  max-width: 100%;
  gap: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 0.9rem 1rem;
  color: var(--paper-strong);
  background: var(--accent);
  font-weight: 950;
  text-transform: uppercase;
}

.ticker span:nth-child(even) {
  color: var(--ink);
}

.section-band,
.section-pad,
.split-section,
.profile-section {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.section-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.95fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3.5rem, 9vw, 7rem) 0;
}

.intro {
  color: rgba(255, 250, 240, 0.7);
}

.intro-copy h2 {
  margin-bottom: 0;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.72fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  padding: 0 0 clamp(4rem, 9vw, 7rem);
}

.profile-copy p:not(.section-kicker) {
  max-width: 34rem;
  color: rgba(255, 250, 240, 0.72);
  font-size: 1.08rem;
}

.profile-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.profile-points span {
  border: 1px solid var(--line);
  padding: 0.55rem 0.7rem;
  color: var(--paper-strong);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-media {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink-soft);
}

.profile-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.34), rgba(17, 17, 17, 0) 42%);
  content: "";
  pointer-events: none;
}

.profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(17rem, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1.2rem, 5vw, 5rem);
  align-items: stretch;
  padding: 0 0 clamp(4rem, 10vw, 8rem);
}

.split-media {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
}

.split-media img,
.profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.55rem 0.7rem;
  color: var(--ink);
  background: var(--paper-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-content {
  padding: clamp(1rem, 4vw, 2rem) 0;
}

.service-list {
  display: grid;
  gap: 0;
  margin-top: clamp(1.4rem, 4vw, 2.8rem);
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.service-item span {
  color: var(--sage);
  font-weight: 950;
}

.service-item p,
.section-heading p,
.placeholder-panel,
.location-grid p,
.faq p,
.site-footer p {
  color: rgba(255, 250, 240, 0.7);
}

[data-reveal],
[data-reveal-item] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible,
[data-reveal-item].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-item]:nth-child(2) {
  transition-delay: 90ms;
}

[data-reveal-item]:nth-child(3) {
  transition-delay: 180ms;
}

[data-reveal-item]:nth-child(4) {
  transition-delay: 270ms;
}

.split-media img {
  will-change: transform;
  transition: transform 180ms linear;
}

.section-pad {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-heading {
  display: grid;
  max-width: 58rem;
  gap: 0.65rem;
  margin-bottom: clamp(1.5rem, 5vw, 3rem);
}

.section-heading > * {
  min-width: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  gap: 1rem;
  align-items: stretch;
}

.comparison-card,
.placeholder-panel,
.location-grid article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.comparison-stage {
  position: relative;
  min-height: clamp(21rem, 52vw, 35rem);
  overflow: hidden;
  background: #050505;
}

.comparison-img,
.after-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-img.before {
  filter: grayscale(1) blur(1px) brightness(0.75);
}

.comparison-img.after {
  filter: contrast(1.05) saturate(1.04);
}

.after-mask {
  z-index: 2;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.16));
  border-right: 2px solid var(--paper-strong);
  clip-path: inset(0 42% 0 0);
  pointer-events: none;
}

.comparison-stage input {
  position: absolute;
  inset: auto 1.25rem 1.1rem;
  z-index: 4;
  width: calc(100% - 2.5rem);
  accent-color: var(--accent-bright);
}

.tag {
  position: absolute;
  top: 1rem;
  z-index: 4;
  padding: 0.45rem 0.6rem;
  color: var(--paper-strong);
  background: rgba(17, 17, 17, 0.68);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tag-left {
  left: 1rem;
}

.tag-right {
  right: 1rem;
}

.comparison-caption,
.placeholder-panel {
  padding: clamp(1rem, 3vw, 1.35rem);
}

.placeholder-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.placeholder-panel li + li {
  margin-top: 0.55rem;
}

.booking {
  align-items: center;
  border-block: 1px solid var(--line);
}

.booking-form {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 4vw, 1.4rem);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form select {
  min-height: 3.1rem;
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 4px;
  padding: 0 0.7rem;
  color: var(--ink);
  background: white;
}

.form-note {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.85rem;
}

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

.location-grid article {
  padding: 1.15rem;
}

.faq {
  padding-top: 0;
}

.faq details {
  padding: 1rem 1.1rem;
}

.faq details + details {
  margin-top: 0.8rem;
}

.faq summary {
  cursor: pointer;
  color: var(--paper-strong);
  font-weight: 900;
}

.faq p {
  margin: 0.75rem 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 6rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 28rem;
  margin: 0.85rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 1rem;
  color: rgba(255, 250, 240, 0.75);
}

.mobile-booking {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  color: var(--paper-strong);
  background: var(--accent);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.7rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mobile-booking.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 4.8rem 1rem auto;
    display: grid;
    justify-items: start;
    gap: 0.2rem;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(17, 17, 17, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.7rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav a {
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1.1rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.34)),
      linear-gradient(0deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.12));
  }

  .hero-image {
    object-position: 64% 50%;
  }

  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-copy {
    max-width: 21rem;
    font-size: 1.05rem;
  }

  .section-band,
  .profile-section,
  .split-section,
  .comparison-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .split-media {
    min-height: 26rem;
  }

  .profile-section {
    padding-bottom: 4rem;
  }

  .profile-media {
    min-height: 27rem;
    order: -1;
  }

  .profile-copy p:not(.section-kicker) {
    font-size: 1rem;
  }

  .hero-proof div {
    min-height: 4.4rem;
    padding: 0.75rem;
  }

  .hero-proof dd {
    font-size: 0.86rem;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .ticker {
    display: none;
  }

  .loader-title {
    font-size: 4.2rem;
  }

  [data-reveal],
  [data-reveal-item] {
    transform: translateY(1.2rem);
  }
}

@media (min-width: 821px) {
  .mobile-booking {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-inner {
    padding-bottom: 5.4rem;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .booking-form .btn {
    width: 100%;
  }

  .hero-proof div {
    min-height: 4.15rem;
    padding: 0.65rem 0.5rem;
  }

  .hero-proof dt {
    font-size: 0.62rem;
  }

  .hero-proof dd {
    font-size: 0.74rem;
  }

  .comparison-stage {
    min-height: 24rem;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .loader-title {
    font-size: 3.55rem;
  }
}

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

  .loader {
    display: none;
  }

  [data-reveal],
  [data-reveal-item] {
    opacity: 1;
    transform: none;
  }
}

@keyframes loaderTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderProgress {
  to {
    transform: translateX(0);
  }
}
