@import "tailwindcss";

:root {
  --ink: #08090a;
  --ink-soft: #111315;
  --ink-raised: #17191b;
  --paper: #f2f4f3;
  --paper-dim: #aeb3b3;
  --rule: rgba(242, 244, 243, 0.23);
  --scarlet: #9f1023;
  --scarlet-hot: #c3172f;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --condensed: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
  --serif: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.12;
  background-image: repeating-radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.12) 0 0.45px, transparent 0.7px 4px);
  mix-blend-mode: soft-light;
}

::selection {
  background: var(--scarlet-hot);
  color: #fff;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 5px;
}

.section-shell {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(20px, 3.2vw, 54px);
  border-bottom: 1px solid var(--rule);
  background: rgba(8, 9, 10, 0.89);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
}

.brand-seal {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.6);
  filter: grayscale(1) contrast(1.25);
}

.brand-name {
  font-family: var(--condensed);
  font-size: 25px;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 0.8;
  text-transform: uppercase;
}

.brand-name span {
  display: block;
  margin-left: 36px;
  color: var(--scarlet-hot);
}

.issue {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: var(--paper-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.issue::before,
.issue::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--scarlet-hot);
}

.nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(15px, 1.8vw, 28px);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav > a:not(.nav-booking) {
  color: var(--paper-dim);
  transition: color 180ms ease;
}

.nav > a:not(.nav-booking):hover {
  color: var(--paper);
}

.nav-booking {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--scarlet-hot);
  transition: background-color 200ms ease, color 200ms ease;
}

.nav-booking:hover {
  background: var(--scarlet-hot);
}

.hero {
  position: relative;
  min-height: min(840px, calc(100svh - 82px));
  overflow: hidden;
  padding: clamp(38px, 5vw, 76px) clamp(20px, 4vw, 64px) 54px;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(circle at 74% 40%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(135deg, #08090a 0%, #0b0c0d 58%, #050606 100%);
  isolation: isolate;
}

.side-note {
  position: absolute;
  left: 10px;
  top: 150px;
  z-index: 5;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 7;
  width: min(68vw, 990px);
  animation: hero-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.kicker,
.eyebrow {
  margin: 0;
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: clamp(26px, 4vw, 52px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--scarlet-hot);
  box-shadow: 0 0 0 5px rgba(195, 23, 47, 0.14);
  animation: pulse 2.6s ease-in-out infinite;
}

.hero h1,
.section-heading h2,
.editorial h2,
.contacts h2 {
  margin: 0;
  font-family: var(--condensed);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1000px;
  font-size: clamp(74px, 8.25vw, 132px);
  line-height: 0.77;
}

.hero h1 > span,
.hero h1 > em {
  display: block;
}

.hero h1 > em {
  position: relative;
  z-index: 2;
  margin: 0.18em 0 0.12em 1.1em;
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: 1.02em;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.065em;
  line-height: 0.65;
  text-transform: lowercase;
}

.hero-last-line {
  font-size: 0.87em;
  white-space: nowrap;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.35fr;
  width: min(100%, 760px);
  margin: clamp(38px, 5vw, 66px) 0 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.hero-meta div {
  min-height: 76px;
  padding: 15px 18px 13px;
  border-right: 1px solid var(--rule);
}

.hero-meta div:first-child {
  padding-left: 0;
}

.hero-meta div:last-child {
  border-right: 0;
}

.hero-meta dt {
  margin-bottom: 8px;
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-meta dd {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 27px;
}

.primary-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 320px);
  min-height: 66px;
  padding: 0 24px;
  overflow: hidden;
  background: var(--scarlet);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 260ms ease, transform 260ms ease;
}

.primary-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  background: var(--paper);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.primary-cta > span {
  position: relative;
  z-index: 1;
}

.primary-cta:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.primary-cta:hover::before {
  transform: translateX(0);
}

.cta-arrow {
  font-size: 24px;
  font-weight: 300;
  transition: transform 220ms ease;
}

.primary-cta:hover .cta-arrow {
  transform: translateX(6px);
}

.hero-address {
  margin: 0;
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.hero-address span {
  display: block;
  color: var(--paper-dim);
  font-weight: 600;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-portrait {
  position: absolute;
  top: clamp(30px, 4vw, 62px);
  right: clamp(20px, 3.5vw, 58px);
  width: min(38vw, 560px);
  height: calc(100% - clamp(58px, 8vw, 116px));
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 244, 243, 0.34);
  background: var(--ink-soft);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 10, 0.55), transparent 45%), linear-gradient(0deg, rgba(8, 9, 10, 0.85), transparent 38%);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 40%;
  filter: grayscale(0.78) contrast(1.15) brightness(0.73);
  transform: scale(1.05);
  animation: portrait-drift 14s ease-in-out infinite alternate;
}

.hero-portrait figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portrait-number {
  position: absolute;
  left: -28px;
  bottom: -6px;
  z-index: 3;
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: clamp(86px, 9vw, 142px);
  font-style: italic;
  line-height: 1;
}

.process-shot {
  position: absolute;
  right: min(35.5vw, 530px);
  bottom: 45px;
  width: clamp(170px, 16vw, 240px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(242, 244, 243, 0.45);
  background: var(--ink-soft);
  box-shadow: 18px 18px 0 rgba(8, 9, 10, 0.75);
  transform: rotate(-2deg);
}

.process-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 44%;
  filter: grayscale(1) contrast(1.28) brightness(0.68);
}

.process-shot span {
  position: absolute;
  left: 14px;
  bottom: 13px;
  padding: 5px 8px;
  background: var(--scarlet);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-slash {
  position: absolute;
  top: -48px;
  right: min(45vw, 670px);
  width: 2px;
  height: 310px;
  background: var(--scarlet-hot);
  box-shadow: 0 0 18px rgba(195, 23, 47, 0.22);
  transform: rotate(38deg);
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--scarlet);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 58px;
  animation: ticker-move 28s linear infinite;
}

.ticker-track span {
  padding-inline: 28px;
  font-family: var(--condensed);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticker-track b {
  color: var(--ink);
  font-size: 13px;
}

.services,
.editorial,
.gallery,
.reviews {
  padding-top: clamp(82px, 10vw, 148px);
  padding-bottom: clamp(82px, 10vw, 148px);
}

.section-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(240px, 360px);
  align-items: start;
  gap: clamp(20px, 3vw, 44px);
  margin-bottom: clamp(56px, 7vw, 92px);
}

.section-index {
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.section-heading .eyebrow,
.editorial-copy .eyebrow,
.contacts-copy .eyebrow {
  margin-bottom: 15px;
}

.section-heading h2,
.editorial h2,
.contacts h2 {
  font-size: clamp(54px, 6.2vw, 96px);
  line-height: 0.86;
}

.section-heading h2 em,
.editorial h2 em,
.contacts h2 em {
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.section-intro {
  align-self: end;
  margin: 0 0 3px;
  color: var(--paper-dim);
  font-size: 15px;
  line-height: 1.65;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: minmax(85px, 0.35fr) 1fr auto;
  grid-template-rows: auto auto;
  gap: 8px 20px;
  align-items: center;
  min-height: 142px;
  padding: 26px clamp(18px, 2.5vw, 34px) 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.service:nth-child(even) {
  border-right: 0;
}

.service-code {
  grid-row: 1 / 3;
  align-self: start;
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service h3 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.1;
}

.service p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 12px;
}

.service strong {
  grid-row: 1 / 3;
  grid-column: 3;
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: clamp(24px, 2.25vw, 36px);
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}

.service-line {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: translateX(-101%);
  background: var(--scarlet-hot);
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service:hover .service-line {
  transform: translateX(0);
}

.services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
}

.services-footer p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 13px;
}

.text-link {
  position: relative;
  padding-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform-origin: right;
  background: var(--scarlet-hot);
  transition: transform 220ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.3);
}

.editorial {
  width: 100%;
  max-width: none;
  padding-inline: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--ink-soft);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.85fr) minmax(360px, 1.05fr) minmax(220px, 0.6fr);
  gap: clamp(26px, 4vw, 64px);
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.editorial-image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.95) contrast(1.12) brightness(0.73);
  transition: filter 450ms ease, transform 700ms ease;
}

.editorial-image:hover img {
  filter: grayscale(0.45) contrast(1.06) brightness(0.84);
  transform: scale(1.02);
}

.editorial-image figcaption,
.gallery-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  background: var(--scarlet);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-image-main {
  height: 650px;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
}

.editorial-image-detail {
  height: 380px;
  align-self: end;
  transform: translateY(36px);
}

.editorial-copy {
  align-self: center;
}

.editorial-copy .section-index {
  display: block;
  margin-bottom: 70px;
}

.editorial-lead {
  max-width: 600px;
  margin: 36px 0 50px;
  color: var(--paper-dim);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.6;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 16px;
  min-height: 68px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 700;
}

.feature-list li:nth-child(odd) {
  border-right: 1px solid var(--rule);
}

.feature-list span {
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-style: italic;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-rows: 300px 300px;
  gap: clamp(14px, 2vw, 28px);
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.gallery-card-tall {
  grid-row: 1 / 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.72) contrast(1.1) brightness(0.76);
  transition: filter 450ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-card:hover img {
  filter: grayscale(0.2) contrast(1.04) brightness(0.9);
  transform: scale(1.025);
}

.gallery-card-wide img {
  object-position: center 38%;
}

.gallery-card-square img {
  object-position: center 29%;
}

.gallery-card figcaption {
  right: auto;
  left: 14px;
  max-width: calc(100% - 28px);
}

.gallery-card figcaption span {
  margin-right: 13px;
  color: rgba(255, 255, 255, 0.66);
}

.reviews {
  border-top: 1px solid var(--rule);
}

.rating-link {
  align-self: end;
  justify-self: end;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.rating-link strong {
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: 54px;
  font-style: italic;
  font-weight: 400;
  line-height: 0.8;
}

.rating-link span {
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}

.review {
  position: relative;
  min-height: 310px;
  margin: 0;
  padding: 40px clamp(22px, 3vw, 42px) 32px;
  border-right: 1px solid var(--rule);
}

.review:last-child {
  border-right: 0;
}

.quote-mark {
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: 82px;
  font-style: italic;
  line-height: 0.5;
}

.review blockquote {
  margin: 42px 0 65px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 37px);
  font-style: italic;
  line-height: 1.08;
}

.review figcaption {
  position: absolute;
  right: clamp(22px, 3vw, 42px);
  bottom: 28px;
  left: clamp(22px, 3vw, 42px);
  color: var(--paper-dim);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.review figcaption span {
  margin-right: 12px;
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.contacts {
  overflow: hidden;
  background: var(--scarlet);
  color: #fff;
}

.contacts-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 4vw, 58px);
  padding-top: clamp(78px, 9vw, 130px);
  padding-bottom: clamp(66px, 8vw, 112px);
}

.contacts .section-index,
.contacts .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.contacts h2 {
  max-width: 850px;
}

.contacts h2 em {
  display: block;
  color: var(--ink);
}

.contact-phone {
  display: inline-block;
  margin-top: 44px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  font-size: clamp(21px, 2.3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contacts-actions {
  align-self: end;
}

.primary-cta-light {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
}

.primary-cta-light::before {
  background: var(--ink);
}

.primary-cta-light:hover {
  color: var(--paper);
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 25px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links a {
  width: fit-content;
}

.contact-facts {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 70px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.contact-facts div {
  padding: 21px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.42);
}

.contact-facts div:first-child {
  padding-left: 0;
}

.contact-facts div:last-child {
  border-right: 0;
}

.contact-facts dt {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 132px;
  border-top: 1px solid var(--rule);
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-brand .brand-name {
  color: var(--paper);
}

.footer p {
  margin: 0;
}

.footer p:last-child {
  justify-self: end;
}

body.booking-open {
  overflow: hidden;
}

body.booking-open::before {
  opacity: 0;
}

body.booking-open .mobile-booking {
  opacity: 0;
  pointer-events: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    visibility 0s linear 240ms;
}

.booking-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(3, 4, 5, 0.84);
  cursor: default;
  backdrop-filter: blur(14px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1040px, 100%);
  height: min(860px, calc(100dvh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #f1f1ef;
  color: var(--ink);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.62);
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 240ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  overscroll-behavior: contain;
}

.booking-modal.is-open .booking-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.booking-modal-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 112px;
  padding: 16px clamp(18px, 2.7vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  color: var(--paper);
}

.booking-modal-header p,
.booking-modal-footer {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-modal-header p {
  margin: 0 0 5px;
  color: var(--paper-dim);
}

.booking-modal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 92px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--paper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.booking-modal-back span:first-child {
  color: var(--scarlet-hot);
  font-size: 18px;
  line-height: 1;
}

.booking-modal-back:hover {
  border-color: var(--scarlet-hot);
  background: var(--scarlet-hot);
  transform: translateX(-2px);
}

.booking-modal-back:hover span:first-child {
  color: var(--paper);
}

.booking-modal-back:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.booking-modal-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.booking-modal-header h2 em {
  color: var(--scarlet-hot);
  font-weight: 400;
}

.booking-modal-close {
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  place-items: center;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.booking-modal-close span {
  margin-top: -3px;
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 200;
  line-height: 1;
}

.booking-modal-close:hover {
  border-color: var(--scarlet-hot);
  background: var(--scarlet-hot);
  transform: rotate(4deg);
}

.booking-modal-close:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.booking-frame-shell {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #e7e7e5;
}

.booking-frame-shell iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 220ms ease;
}

.booking-modal.is-loaded .booking-frame-shell iframe {
  opacity: 1;
}

.booking-frame-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #555;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.booking-frame-loading span {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(8, 9, 10, 0.2);
  border-top-color: var(--scarlet-hot);
  border-radius: 50%;
  animation: booking-spin 700ms linear infinite;
}

.booking-modal.is-loaded .booking-frame-loading {
  opacity: 0;
  pointer-events: none;
}

.booking-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 10px clamp(18px, 2.7vw, 38px);
  border-top: 1px solid rgba(8, 9, 10, 0.15);
  color: #666;
}

.booking-modal-footer a {
  color: var(--ink);
  transition: color 180ms ease;
}

.booking-modal-footer a:hover {
  color: var(--scarlet-hot);
}

.mobile-booking {
  display: none;
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes portrait-drift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-5px, -5px, 0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 5px rgba(195, 23, 47, 0.12); }
  50% { transform: scale(0.82); box-shadow: 0 0 0 9px rgba(195, 23, 47, 0.02); }
}

@keyframes ticker-move {
  to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
  .issue {
    display: none;
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .hero-copy {
    width: 72vw;
  }

  .hero-portrait {
    width: 42vw;
  }

  .process-shot {
    right: 38vw;
  }

  .editorial-grid {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .editorial-image-detail {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .hero-copy {
    width: 59vw;
  }

  .hero h1 {
    font-size: clamp(72px, 7.7vw, 88px);
  }

  .hero-meta,
  .hero-actions {
    width: 86%;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-portrait {
    width: 40vw;
  }

  .process-shot {
    display: none;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .topbar {
    min-height: 70px;
    padding-inline: 18px;
  }

  .brand-seal {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-name span {
    margin-left: 28px;
  }

  .nav > a:not(.nav-booking) {
    display: none;
  }

  .nav-booking {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .hero {
    min-height: 0;
    padding: 28px 18px 34px;
  }

  .side-note,
  .editorial-slash {
    display: none;
  }

  .hero-copy {
    width: 100%;
  }

  .kicker {
    margin-bottom: 22px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    font-size: clamp(54px, 16.5vw, 82px);
    line-height: 0.82;
  }

  .hero h1 > em {
    margin: 0.18em 0 0.14em 0.68em;
  }

  .hero-last-line {
    font-size: 0.81em;
    white-space: normal;
  }

  .hero-visual {
    position: relative;
    height: 390px;
    margin-top: 18px;
  }

  .hero-portrait {
    inset: 0 0 auto auto;
    width: 87%;
    height: 365px;
    min-height: 0;
  }

  .portrait-number {
    left: -20px;
    font-size: 92px;
  }

  .process-shot {
    right: auto;
    bottom: -12px;
    left: 0;
    width: 126px;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .hero-meta div {
    padding-inline: 12px;
  }

  .hero-meta div:nth-child(2) {
    border-right: 0;
  }

  .hero-meta div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--rule);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .primary-cta {
    width: 100%;
  }

  .section-heading {
    grid-template-columns: auto 1fr;
  }

  .section-intro,
  .rating-link {
    grid-column: 2;
    justify-self: start;
    margin-top: 24px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service,
  .service:nth-child(even) {
    border-right: 0;
  }

  .editorial-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .editorial-image-main {
    height: 560px;
  }

  .gallery-grid {
    grid-template-rows: 240px 240px;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

  .review {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .contacts-inner {
    grid-template-columns: auto 1fr;
  }

  .contacts-actions {
    grid-column: 2;
    width: 100%;
  }

  .contact-facts {
    grid-column: 2;
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .contact-facts div,
  .contact-facts div:first-child {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  }

  .mobile-booking {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--rule);
    background: rgba(8, 9, 10, 0.94);
    backdrop-filter: blur(18px);
  }

  .mobile-booking a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-booking a:first-child {
    color: var(--paper-dim);
  }

  .mobile-booking a:last-child {
    justify-content: space-between;
    padding-inline: 22px;
    background: var(--scarlet);
    color: #fff;
  }

  .booking-modal {
    padding: 0;
  }

  .booking-modal-panel {
    width: 100%;
    height: 100dvh;
    border: 0;
    box-shadow: none;
    transform: translateY(18px);
  }

  .booking-modal-header {
    gap: 14px;
    min-height: 78px;
    padding: calc(10px + env(safe-area-inset-top)) 14px 10px;
  }

  .booking-modal-header h2 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 0.95;
  }

  .booking-modal-close {
    width: 46px;
    height: 46px;
  }

  .booking-modal-back {
    min-width: 78px;
    height: 46px;
    padding-inline: 11px;
  }

  .booking-modal-footer {
    min-height: calc(48px + env(safe-area-inset-bottom));
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
  }

  .booking-modal-footer > span {
    display: none;
  }

  .booking-modal-footer a {
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .services,
  .editorial,
  .gallery,
  .reviews {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 45px;
  }

  .section-heading h2,
  .editorial h2,
  .contacts h2 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .service {
    grid-template-columns: 58px 1fr auto;
    gap: 7px 10px;
    min-height: 128px;
    padding: 23px 0 24px;
  }

  .service strong {
    font-size: 26px;
  }

  .services-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .editorial-image-main {
    height: 430px;
  }

  .editorial-copy .section-index {
    margin-bottom: 42px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list li:nth-child(odd) {
    border-right: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 430px 280px 330px;
  }

  .gallery-card-tall {
    grid-row: auto;
  }

  .gallery-card-wide img {
    object-position: center 34%;
  }

  .review blockquote {
    margin-top: 32px;
  }

  .contacts-inner {
    grid-template-columns: 1fr;
  }

  .contacts-inner > .section-index,
  .contacts-copy,
  .contacts-actions,
  .contact-facts {
    grid-column: 1;
  }

  .contacts-copy .eyebrow {
    margin-top: 12px;
  }

  .contact-phone {
    margin-top: 34px;
  }

  .footer {
    grid-template-columns: 1fr auto;
    min-height: 120px;
  }

  .footer p:nth-child(2) {
    display: none;
  }
}

@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;
  }
}
