:root {
  --black: #050505;
  --ink: #121212;
  --charcoal: #232323;
  --steel: #757575;
  --line: #d9d9d9;
  --mist: #f0f0f0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--sans); line-height: 1.55; }
body::before { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(circle at 10% 15%, rgba(0,0,0,.035), transparent 24%), radial-gradient(circle at 90% 70%, rgba(0,0,0,.025), transparent 26%); }
img { max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link { position: fixed; top: -70px; left: 16px; z-index: 100; padding: 12px 16px; background: var(--white); color: var(--black); border: 2px solid var(--black); font-weight: 800; }
.skip-link:focus { top: 12px; }

.topbar { position: sticky; top: 0; z-index: 30; min-height: 76px; display: flex; align-items: center; gap: 28px; padding: 10px max(24px, calc((100vw - 1180px) / 2)); background: rgba(5,5,5,.96); color: var(--white); border-bottom: 1px solid #2d2d2d; backdrop-filter: blur(14px); }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; text-decoration: none; text-transform: uppercase; font-weight: 500; letter-spacing: .06em; }
.brand img { width: 48px; height: 48px; border-radius: 50%; border: 1px solid #4a4a4a; }
.brand strong { font-weight: 900; }
.desktop-nav { display: flex; gap: 28px; }
.desktop-nav a { color: #c9c9c9; text-decoration: none; font-size: .88rem; font-weight: 700; }
.desktop-nav a:hover { color: var(--white); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 21px; border: 1px solid transparent; border-radius: 2px; text-decoration: none; font-weight: 900; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--light { background: var(--white); color: var(--black); border-color: var(--white); }
.button--dark { background: var(--black); color: var(--white); border-color: var(--black); }
.button--ghost { background: transparent; color: var(--white); border-color: #777; }
.button--ghost:hover { background: var(--white); color: var(--black); }
.topbar__cta { min-height: 44px; padding: 8px 17px; }

.hero { min-height: calc(100svh - 76px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr); background: var(--black); color: var(--white); overflow: hidden; }
.hero__copy { align-self: center; width: min(720px, calc(100% - 48px)); margin-left: max(24px, calc((100vw - 1180px) / 2)); padding: 74px 46px 74px 0; }
.tsi-mark { width: max-content; display: flex; align-items: center; gap: 10px; margin-bottom: 38px; padding: 7px 13px 7px 7px; border: 1px solid #484848; border-radius: 999px; color: var(--white); text-decoration: none; }
.tsi-mark img { width: 34px; height: 34px; border-radius: 50%; background: var(--white); }
.tsi-mark span { display: flex; flex-direction: column; line-height: 1.05; }
.tsi-mark strong { font-size: .72rem; letter-spacing: .1em; }
.tsi-mark small { margin-top: 3px; color: #9b9b9b; font-size: .66rem; }
.eyebrow { margin: 0 0 12px; color: var(--steel); font-size: .73rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(4.4rem, 9vw, 8.2rem); font-weight: 900; letter-spacing: -.03em; line-height: .82; text-transform: uppercase; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.hero__lead { max-width: 660px; margin: 28px 0 0; color: #c4c4c4; font-size: clamp(1rem, 1.6vw, 1.18rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__note { color: #838383; font-size: .78rem; }
.hero__visual { position: relative; min-height: 650px; overflow: hidden; background: var(--charcoal); }
.hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 0%, transparent 22%), linear-gradient(0deg, rgba(0,0,0,.76), transparent 42%); }
.hero__photo { width: 100%; height: 100%; min-height: 650px; object-fit: cover; object-position: 52% 38%; filter: grayscale(1) contrast(1.08); }
.hero__logo { position: absolute; z-index: 3; top: 32px; right: 32px; width: 118px; height: 118px; border: 1px solid #626262; border-radius: 50%; overflow: hidden; box-shadow: 0 14px 40px rgba(0,0,0,.35); }
.hero__logo img { width: 100%; height: 100%; object-fit: cover; }
.hero__year { position: absolute; z-index: 3; right: 30px; bottom: 25px; color: var(--white); font-family: var(--display); font-size: 1.45rem; letter-spacing: .18em; }

.quick-facts { position: relative; z-index: 5; width: min(1120px, calc(100% - 48px)); display: grid; grid-template-columns: repeat(3, 1fr); margin: -38px auto 0; background: var(--white); box-shadow: var(--shadow); border: 1px solid var(--line); }
.quick-facts article { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 24px 30px; border-right: 1px solid var(--line); }
.quick-facts article:last-child { border-right: 0; }
.quick-facts span { color: var(--steel); font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.quick-facts strong, .quick-facts a { margin-top: 6px; font-size: 1rem; font-weight: 850; text-decoration: none; }

.section { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 46px; }
.section-heading h2, .booking h2, .location h2 { margin: 0; font-family: var(--display); font-size: clamp(3.2rem, 7vw, 6rem); letter-spacing: -.02em; line-height: .9; text-transform: uppercase; }
.section-heading > p { max-width: 520px; margin: 0; color: var(--steel); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--black); }
.service-card { min-height: 320px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid var(--black); }
.service-card:last-child { border-right: 0; }
.service-card > span { color: var(--steel); font-family: var(--display); font-size: 1.5rem; }
.service-card h3 { margin: auto 0 12px; max-width: 260px; font-family: var(--display); font-size: 2.2rem; line-height: .95; text-transform: uppercase; }
.service-card p { margin: 0; color: var(--steel); }
.service-card--inverse { background: var(--black); color: var(--white); }
.service-card--inverse p { color: #adadad; }

.work-section { background: var(--black); color: var(--white); }
.work-section__inner { padding-bottom: 124px; }
.section-heading--light > p { color: #9b9b9b; }
.gallery { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: 310px 310px; gap: 12px; }
.gallery__item { position: relative; overflow: hidden; margin: 0; background: #181818; }
.gallery__item--tall { grid-row: 1 / 3; }
.gallery__item--wide { display: none; }
.gallery__item img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: transform .35s ease, filter .35s ease; }
.gallery__item:hover img { transform: scale(1.02); filter: grayscale(1) contrast(1.15); }
.gallery__item figcaption { position: absolute; left: 16px; bottom: 16px; padding: 8px 11px; background: rgba(0,0,0,.78); color: var(--white); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.booking { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.booking__intro { position: sticky; top: 112px; }
.booking__intro > p:not(.eyebrow) { max-width: 490px; color: var(--steel); }
.booking__contact { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.booking__contact span { display: block; color: var(--steel); font-size: .83rem; }
.booking__contact a { display: inline-block; margin-top: 6px; font-weight: 900; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: clamp(26px, 5vw, 46px); background: var(--mist); border: 1px solid var(--line); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label, .modality legend { font-size: .74rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.field input, .field select { width: 100%; min-height: 52px; padding: 10px 13px; background: var(--white); color: var(--black); border: 1px solid #b7b7b7; border-radius: 0; }
.modality { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; padding: 0; border: 0; }
.modality legend { grid-column: 1 / -1; margin-bottom: 2px; }
.modality label { min-height: 52px; display: flex; align-items: center; gap: 10px; padding: 10px 13px; background: var(--white); border: 1px solid #b7b7b7; cursor: pointer; }
.modality input { width: 18px; min-height: 18px; accent-color: var(--black); }
.form-message { min-height: 24px; margin: 0; color: #333; font-size: .85rem; font-weight: 700; }
.form-message.is-error { padding-left: 12px; border-left: 3px solid var(--black); }
.privacy-note { color: var(--steel); font-size: .73rem; }

.location { min-height: 650px; display: grid; grid-template-columns: 1fr 1fr; background: var(--black); color: var(--white); }
.location__graphic { position: relative; display: grid; place-items: center; overflow: hidden; background-color: #151515; background-image: linear-gradient(#292929 1px, transparent 1px), linear-gradient(90deg, #292929 1px, transparent 1px); background-size: 54px 54px; }
.location__graphic::before, .location__graphic::after { content: ""; position: absolute; width: 160%; height: 2px; background: #515151; transform: rotate(-28deg); }
.location__graphic::after { transform: rotate(37deg); }
.location__graphic > span { position: relative; z-index: 2; display: grid; place-items: center; width: 170px; height: 170px; border: 1px solid #757575; border-radius: 50%; background: var(--black); font-family: var(--display); font-size: 5rem; }
.location__pin { position: absolute; z-index: 3; width: 24px; height: 24px; margin: 130px 0 0 160px; background: var(--white); border: 7px solid var(--black); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 0 0 1px var(--white); }
.location__copy { align-self: center; max-width: 650px; padding: 80px max(24px, calc((100vw - 1180px) / 2)) 80px 70px; }
.location__copy > p:not(.eyebrow) { color: #aeaeae; font-size: 1.05rem; }
.location dl { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 36px 0; padding: 26px 0; border-top: 1px solid #3d3d3d; border-bottom: 1px solid #3d3d3d; }
.location dl div { display: flex; flex-direction: column; gap: 5px; }
.location dt { color: #777; font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.location dd { margin: 0; font-weight: 800; }
.location__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.faq { padding-bottom: 124px; }
.faq__list { border-top: 1px solid var(--black); }
.faq details { border-bottom: 1px solid var(--black); }
.faq summary { position: relative; padding: 24px 58px 24px 0; list-style: none; font-size: 1.1rem; font-weight: 900; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 5px; top: 18px; font-family: var(--display); font-size: 2rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 780px; margin: 0; padding: 0 0 26px; color: var(--steel); }

.footer { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 38px; align-items: center; padding: 54px max(24px, calc((100vw - 1180px) / 2)); background: #111; color: var(--white); border-top: 1px solid #333; }
.footer__brand, .footer__tsi { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.footer__brand img { width: 78px; height: 78px; border-radius: 50%; }
.footer__brand div { display: flex; flex-direction: column; }
.footer__brand strong { font-family: var(--display); font-size: 1.55rem; text-transform: uppercase; }
.footer__brand span { color: #888; font-size: .8rem; }
.footer__links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer__links a, .footer__links button { padding: 0; background: none; color: #bdbdbd; border: 0; text-decoration: none; cursor: pointer; }
.footer__links a:hover, .footer__links button:hover { color: var(--white); text-decoration: underline; }
.footer__tsi { justify-self: end; padding: 10px 14px; border: 1px solid #404040; border-radius: 999px; }
.footer__tsi img { border-radius: 50%; background: var(--white); }
.footer__tsi span { color: #8f8f8f; font-size: .68rem; line-height: 1.2; }
.footer__tsi strong { color: var(--white); font-size: .76rem; }
.footer > small, .share-status { grid-column: 1 / -1; margin: 0; color: #666; }
.share-status { min-height: 0; font-size: .78rem; }
.mobile-actions { display: none; }

input:focus-visible, select:focus-visible, button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }
.booking-form input:focus-visible, .booking-form select:focus-visible, .booking-form button:focus-visible, .faq summary:focus-visible { outline-color: var(--black); }

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__copy { width: min(720px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0 44px; }
  .hero__visual { min-height: 520px; }
  .hero__photo { min-height: 520px; }
  .hero__visual::after { background: linear-gradient(0deg, var(--black) 0%, transparent 40%); }
  .quick-facts { margin-top: 0; width: 100%; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--black); }
  .service-card:last-child { border-bottom: 0; }
  .booking { grid-template-columns: 1fr; gap: 42px; }
  .booking__intro { position: static; }
  .location { grid-template-columns: 1fr; }
  .location__graphic { min-height: 420px; }
  .location__copy { max-width: none; padding: 70px max(24px, calc((100vw - 720px) / 2)); }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer__tsi { justify-self: start; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 68px; }
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .topbar { min-height: 66px; padding: 8px 14px; }
  .brand { font-size: .82rem; }
  .brand img { width: 42px; height: 42px; }
  .topbar__cta { display: none; }
  .hero { min-height: auto; }
  .hero__copy { width: calc(100% - 28px); padding: 48px 0 38px; }
  .tsi-mark { margin-bottom: 28px; }
  .hero h1 { font-size: clamp(3.8rem, 20vw, 5.8rem); }
  .hero__actions .button { width: 100%; }
  .hero__visual, .hero__photo { min-height: 460px; }
  .hero__logo { top: 18px; right: 18px; width: 92px; height: 92px; }
  .hero__year { right: 16px; bottom: 15px; font-size: 1rem; }
  .quick-facts { grid-template-columns: 1fr; }
  .quick-facts article { min-height: 94px; padding: 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-facts article:last-child { border-bottom: 0; }
  .section { width: calc(100% - 28px); padding: 78px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2, .booking h2, .location h2 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .service-card { padding: 26px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 340px 210px 210px; }
  .gallery__item--tall { grid-column: 1 / 3; grid-row: auto; }
  .gallery__item--wide { display: block; grid-column: 1 / 3; }
  .booking-form { grid-template-columns: 1fr; padding: 22px; }
  .field, .field--full { grid-column: 1; }
  .modality { grid-template-columns: 1fr; }
  .modality legend { grid-column: 1; }
  .location__graphic { min-height: 330px; }
  .location__graphic > span { width: 130px; height: 130px; font-size: 4rem; }
  .location__copy { padding: 60px 22px; }
  .location dl { grid-template-columns: 1fr; }
  .location__actions .button { width: 100%; }
  .footer { grid-template-columns: 1fr; padding: 42px 22px; }
  .footer__tsi { justify-self: start; }
  .mobile-actions { position: fixed; z-index: 35; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1.3fr .7fr; gap: 8px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: rgba(5,5,5,.97); border-top: 1px solid #333; }
  .mobile-actions a { min-height: 48px; display: grid; place-items: center; background: var(--white); color: var(--black); text-decoration: none; font-weight: 900; }
  .mobile-actions a:last-child { background: #252525; color: var(--white); }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 3.75rem; }
  .hero__visual, .hero__photo { min-height: 410px; }
  .gallery { grid-template-rows: 300px 180px 190px; }
}

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