:root {
  --turquoise: #0099b7;
  --ink: #151a1b;
  --teal: #005b6d;
  --action: #007c94;
  --muted: #526066;
  --line: #d6dfe0;
  --serif: "GFS Didot", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --rail: 76px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font: 18px/1.65 var(--sans);
  padding-left: var(--rail);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #bd6a13;
  outline-offset: 6px;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(54px, 6.3vw, 94px);
}
h2 {
  font-size: clamp(40px, 4.5vw, 68px);
}
h3 {
  font-size: 36px;
}
p + p {
  margin-top: 20px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 90px;
  z-index: 30;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.rail {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--rail);
  background: var(--turquoise);
  z-index: 12;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.menu-toggle {
  margin-top: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.menu-toggle svg {
  width: 28px;
  height: 28px;
}
.rail-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.22em;
  color: #fff;
  font-size: 11px;
  margin: auto;
  white-space: nowrap;
}
.rail-bottom {
  font-size: 12px;
  color: #fff;
  margin: 0 0 27px;
  letter-spacing: 0.08em;
}
.header {
  height: 144px;
  padding: 12px 4.2%;
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
}
.brand {
  display: block;
  flex: 0 0 auto;
}
.brand img {
  height: 116px;
  width: 116px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
}
.nav a:not(.button) {
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover {
  border-color: var(--turquoise);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 52px;
  padding: 14px 25px;
  background: var(--action);
  color: white;
  font-size: 16px;
  line-height: 1.4;
  border: 1px solid var(--action);
  transition:
    background 0.2s,
    color 0.2s;
}
.button:hover {
  background: var(--teal);
}
.arrow {
  width: 29px;
  height: 18px;
  flex-shrink: 0;
}
.menu {
  position: fixed;
  z-index: 11;
  left: var(--rail);
  top: 0;
  bottom: 0;
  background: #fff;
  width: min(900px, calc(100vw - var(--rail)));
  box-shadow: 16px 0 50px #0002;
  padding: 44px 46px;
  overflow: auto;
}
.menu[hidden] {
  display: none;
}
@media (max-width: 400px) {
  .page-head h1,
  .article {
    overflow-wrap: anywhere;
  }
}
@media (min-width: 761px) and (max-width: 1024px) and (max-height: 500px) {
  .menu {
    overscroll-behavior: contain;
  }
  body:has(.menu:not([hidden])) {
    overflow: hidden;
  }
}
.menu-title {
  font: 30px var(--serif);
  margin-bottom: 10px;
}
.menu-intro {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}
.menu-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 50px;
  align-items: start;
}
.menu-group {
  border-top: 1px solid var(--line);
  padding-top: 17px;
}
.menu-group summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font: 600 12px/1.5 var(--sans);
  color: var(--action);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.menu-group summary::-webkit-details-marker {
  display: none;
}
.menu-expand {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
}
.menu-group[open] .menu-expand {
  transform: rotate(45deg);
}
.menu-group ul {
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
}
.menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 15px;
  line-height: 1.5;
  gap: 18px;
}
.menu a:hover {
  color: var(--action);
}
.menu .arrow {
  width: 23px;
}
.menu-contact {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.menu-contact span {
  color: var(--muted);
  font-size: 13px;
}
.menu-contact a {
  color: var(--action);
  font-weight: 500;
}
@media (max-width: 760px) {
  .menu {
    padding: 35px 27px 85px;
  }
  .menu-title {
    font-size: 29px;
  }
  .menu-intro {
    font-size: 13px;
    margin-bottom: 25px;
    max-width: 26ch;
  }
  .menu-groups {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .menu-group {
    padding: 0;
  }
  .menu-group summary {
    padding: 20px 0;
    min-height: 60px;
    font-size: 11px;
  }
  .menu-group ul {
    padding: 0 0 18px 13px;
  }
  .menu a {
    font-size: 16px;
    min-height: 44px;
  }
  .menu-contact {
    flex-direction: column;
    align-items: start;
    margin-top: 20px;
  }
}
.hero {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 640px;
}
.hero-copy {
  padding: 8% 10.5% 10%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.hero h1 {
  margin-bottom: 34px;
}
.hero-copy p {
  font-size: 20px;
  max-width: 30ch;
  line-height: 1.65;
}
.hero-copy p.hero-location {
  color: var(--action);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: none;
  margin-bottom: 18px;
}
.hero-copy .button {
  margin-top: 36px;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
  min-height: 640px;
}
.photo-note {
  font-size: 11px;
  line-height: 1.45;
  color: #637074;
  padding: 7px 0;
}
.hero-visual .photo-note {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: #fffef2ee;
  padding: 5px 8px;
  color: #364346;
  max-width: 280px;
}
.local-label {
  text-align: center;
  color: var(--action);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}
.intro {
  padding: 54px 6% 58px;
  text-align: center;
}
.intro p:not(.local-label) {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--muted);
}
.editorial {
  display: grid;
  grid-template-columns: 53% 47%;
  padding: 0 3.5% 70px;
  gap: 0;
}
.editorial figure img {
  width: 100%;
  height: 490px;
  object-fit: cover;
}
.editorial-copy {
  padding: 25px 0 20px 11%;
}
.editorial-copy p {
  margin: 26px 0 34px;
  max-width: 48ch;
  color: var(--muted);
}
.feature-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--turquoise);
  color: var(--action);
  font: 23px/1.3 var(--serif);
}
.feature-links a:last-child {
  border-bottom: 1px solid var(--turquoise);
}
.feature-links a:hover {
  color: var(--ink);
}
.english-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  padding: 35px 7%;
  border-top: 2px solid var(--turquoise);
  background: #f2f8f9;
  color: var(--teal);
}
.english-band a {
  font: 30px/1.2 var(--serif);
  display: flex;
  gap: 22px;
  align-items: center;
}
.english-band a + a {
  border-left: 1px solid var(--turquoise);
  padding-left: 40px;
}
.english-band svg {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
}
.levels {
  padding: 80px 6%;
}
.levels h2 {
  margin-bottom: 50px;
}
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.level {
  padding: 0 38px;
}
.level:first-child {
  padding-left: 0;
}
.level + .level {
  border-left: 1px solid var(--line);
}
.number {
  font: 64px/1 var(--serif);
  color: var(--turquoise);
  display: block;
  margin: 0 0 25px;
}
.level h3 {
  font-size: 40px;
  margin-bottom: 16px;
}
.level p {
  font-size: 17px;
}
.text-link {
  color: var(--action);
  display: inline-flex;
  gap: 25px;
  align-items: center;
  padding: 12px 0;
  margin-top: 16px;
  font-size: 16px;
}
.text-link:hover {
  text-decoration: underline;
}
.contact {
  background: var(--teal);
  color: #fff;
  padding: 70px 6%;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 30px;
}
.contact h2 {
  font-size: clamp(50px, 6vw, 86px);
  margin-bottom: 20px;
}
.contact p {
  font-size: 20px;
  max-width: 45ch;
}
.contact .button {
  background: transparent;
  border-color: #fff;
  width: 100%;
  max-width: 380px;
  margin-bottom: 24px;
}
.contact .button:hover {
  background: #fff;
  color: var(--teal);
}
.contact address {
  font-style: normal;
  font-size: 16px;
}
.contact .text-link {
  display: flex;
  width: fit-content;
  color: white;
  text-decoration: underline;
  margin-top: 14px;
}
.footer {
  padding: 38px 6% 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.footer-name {
  font: 27px var(--serif);
}
.social {
  display: flex;
  gap: 27px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  padding: 18px 6%;
  border-top: 1px solid var(--line);
}
.breadcrumb a {
  text-decoration: underline;
}
.page-head {
  padding: 55px 6% 60px;
  max-width: 1100px;
}
.page-head h1 {
  font-size: clamp(48px, 5.4vw, 76px);
  max-width: 1000px;
}
.page-head .lead {
  font-size: 23px;
  line-height: 1.55;
  max-width: 750px;
  margin-top: 30px;
  color: var(--muted);
}
.page-head .button {
  margin-top: 30px;
}
.article {
  padding: 0 6% 75px;
  max-width: 1200px;
}
.article h2 {
  font-size: 42px;
  margin: 50px 0 22px;
}
.article h3 {
  font-size: 28px;
  margin: 28px 0 13px;
}
.article p,
.article li {
  max-width: 75ch;
}
.article ul,
.article ol {
  padding-left: 24px;
}
.article li {
  margin-bottom: 14px;
}
.article a:not(.button) {
  color: var(--action);
  text-decoration: underline;
}
.wide-photo {
  margin: 0 6% 40px;
}
.wide-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.article details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.article summary {
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  padding-right: 15px;
}
.article details p {
  margin-top: 16px;
  color: var(--muted);
}
.pricing {
  width: 100%;
  border-collapse: collapse;
  max-width: 750px;
  margin: 30px 0;
}
.pricing caption {
  text-align: left;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--muted);
}
.pricing th,
.pricing td {
  text-align: left;
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
}
.pricing th {
  background: #f2f8f9;
  font-weight: 500;
}
.pricing td:last-child {
  font-size: 23px;
  color: var(--teal);
}
.notice {
  border-left: 3px solid var(--turquoise);
  padding: 15px 22px;
  margin: 28px 0;
  background: #f2f8f9;
  max-width: 800px;
}
.section-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.community {
  margin-top: 25px;
}
.community img {
  height: auto;
}
.small {
  font-size: 14px;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero {
    min-height: 740px;
  }
  .hero-visual img {
    min-height: 740px;
  }
  .header {
    height: 150px;
  }
  .hero-copy {
    padding-left: 13%;
    padding-right: 11%;
  }
}
@media (max-width: 1100px) {
  :root {
    --rail: 58px;
  }
  .header {
    padding: 12px 4%;
    gap: 18px;
    height: 126px;
  }
  .brand img {
    width: 96px;
    height: 96px;
  }
  .nav {
    gap: 20px;
    font-size: 14px;
  }
  .nav .button {
    padding: 12px 16px;
    font-size: 14px;
  }
  .hero-copy {
    padding: 35px 8%;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-copy p {
    font-size: 18px;
  }
  .hero {
    min-height: 580px;
  }
  .hero-visual img {
    min-height: 580px;
  }
  .editorial figure img {
    height: 440px;
  }
  .editorial-copy {
    padding: 16px 0 0 8%;
  }
  .editorial-copy h2 {
    font-size: 44px;
  }
  .english-band a {
    font-size: 25px;
  }
  .contact {
    grid-template-columns: 1fr 1fr;
  }
  .level {
    padding: 0 25px;
  }
  .levels h2 {
    font-size: 48px;
  }
}
@media (max-width: 760px) {
  :root {
    --rail: 0px;
  }
  body {
    padding-left: 0;
  }
  .rail {
    left: auto;
    right: 15px;
    top: 23px;
    bottom: auto;
    width: 48px;
    height: 48px;
    background: var(--turquoise);
  }
  .menu-toggle {
    margin: 0;
    width: 48px;
    height: 48px;
  }
  .rail-label,
  .rail-bottom {
    display: none;
  }
  .header {
    height: 96px;
    padding: 7px 22px;
  }
  .brand img {
    width: 79px;
    height: 79px;
  }
  .nav {
    padding-right: 54px;
    gap: 0;
  }
  .nav > a:not(.button) {
    display: none;
  }
  .nav .button {
    font-size: 12px;
    min-height: 40px;
    padding: 10px 14px;
  }
  .menu {
    top: 96px;
    left: 0;
    width: 100%;
    padding: 22px 30px;
    border-top: 1px solid var(--line);
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    padding: 34px 26px 40px;
  }
  .hero h1 {
    font-size: 58px;
    max-width: 520px;
    margin-bottom: 23px;
  }
  .hero-copy p {
    max-width: 36ch;
    font-size: 18px;
  }
  .hero-copy .button {
    margin-top: 25px;
  }
  .hero-visual img {
    height: 390px;
    min-height: 0;
    object-position: center;
  }
  .hero-visual .photo-note {
    font-size: 10px;
    bottom: 8px;
    right: 8px;
  }
  .intro {
    padding: 45px 24px 38px;
  }
  .intro h2 {
    font-size: 42px;
  }
  .local-label {
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  .intro p:not(.local-label) {
    font-size: 17px;
    margin-top: 20px;
  }
  .editorial {
    grid-template-columns: 1fr;
    padding: 0 22px 40px;
  }
  .editorial figure img {
    height: auto;
    aspect-ratio: 1.25;
    object-position: center;
  }
  .editorial-copy {
    padding: 30px 0 0;
  }
  .editorial-copy h2 {
    font-size: 43px;
  }
  .editorial-copy p {
    margin: 20px 0 25px;
    font-size: 17px;
  }
  .feature-links a {
    font-size: 23px;
  }
  .english-band {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }
  .english-band a {
    font-size: 26px;
  }
  .english-band a + a {
    border-left: 0;
    border-top: 1px solid var(--turquoise);
    padding: 24px 0 0;
  }
  .levels {
    padding: 48px 25px;
  }
  .levels h2 {
    font-size: 42px;
    margin-bottom: 28px;
  }
  .levels-grid {
    grid-template-columns: 1fr;
    padding: 0;
    border-bottom: 0;
  }
  .level,
  .level:first-child {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 12px;
  }
  .level + .level {
    border-left: 0;
  }
  .level {
    border-bottom: 1px solid var(--line);
  }
  .number {
    font-size: 42px;
    grid-row: 1/4;
    margin: 0;
  }
  .level h3 {
    font-size: 34px;
    margin-bottom: 10px;
  }
  .level p,
  .level .text-link {
    grid-column: 2;
  }
  .level .text-link {
    margin-top: 4px;
  }
  .contact {
    grid-template-columns: 1fr;
    padding: 45px 25px;
    gap: 25px;
  }
  .contact h2 {
    font-size: 58px;
  }
  .contact p {
    font-size: 18px;
  }
  .contact .button {
    max-width: none;
  }
  .footer {
    padding: 30px 25px;
  }
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .social {
    gap: 18px;
    font-size: 13px;
  }
  .footer-bottom {
    gap: 10px;
  }
  .page-head {
    padding: 35px 25px 40px;
  }
  .page-head h1 {
    font-size: 49px;
  }
  .page-head .lead {
    font-size: 20px;
  }
  .article {
    padding: 0 25px 45px;
    font-size: 17px;
  }
  .article h2 {
    font-size: 35px;
    margin-top: 35px;
  }
  .article h3 {
    font-size: 27px;
  }
  .wide-photo {
    margin: 0 25px 30px;
  }
  .wide-photo img {
    min-height: 0;
    object-fit: contain;
  }
  .breadcrumb {
    padding: 15px 25px;
    font-size: 12px;
  }
  .pricing th,
  .pricing td {
    padding: 14px 10px;
  }
  .pricing td:last-child {
    font-size: 21px;
  }
  .notice {
    padding: 13px 17px;
  }
  .skip {
    left: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
@media (min-width: 761px) {
  .rail-label,
  .rail-bottom {
    background: var(--teal);
    padding: 10px 5px;
  }
  .rail-bottom {
    padding: 4px 6px;
  }
}
.contact > * {
  min-width: 0;
}
@media (max-width: 760px) {
  .contact h2 {
    font-size: clamp(39px, 12.5vw, 49px);
  }
  .contact p {
    white-space: normal;
  }
  .contact .button {
    padding: 14px 18px;
    gap: 12px;
  }
  .nav .button .arrow {
    display: none;
  }
  .hero h1 {
    font-size: clamp(46px, 14.5vw, 58px);
  }
  .hero-visual img {
    height: auto;
    aspect-ratio: 1.2;
    object-fit: cover;
  }
  .feature-links a {
    font-size: clamp(19px, 5.6vw, 23px);
  }
}
@media (max-width: 360px) {
  .page-head h1 {
    font-size: 39px;
  }
  .page-head .lead {
    font-size: 18px;
  }
  .article h2 {
    font-size: 31px;
  }
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .brand img {
    width: 70px;
    height: 70px;
  }
}

.agency {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.agency img {
  width: 105px;
  height: auto;
}
.agency:hover span {
  text-decoration: underline;
}

.level-photo {
  margin: 0;
  min-width: 0;
}
.level-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.level-photo figcaption {
  padding: 22px 0 0;
}
.level-photo h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  margin: 0 0 14px;
}
.level-photo p {
  max-width: 65ch;
  margin: 0 0 10px;
}
.level-photo .photo-note {
  display: block;
}
.level-photo-featured {
  margin: 0 6% 55px;
}
.level-photo-featured img {
  max-height: none;
}
.level-gallery {
  margin: 0 6% 65px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 35px;
}
.level-gallery > :only-child {
  grid-column: 1 / -1;
  max-width: 1050px;
}
@media (max-width: 700px) {
  .level-gallery {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .level-photo-featured img {
    max-height: none;
  }
  .level-photo figcaption {
    padding-top: 18px;
  }
}

/* Preserve the complete community portrait on desktop and narrow screens. */
.community img {
  height: auto;
  max-height: none;
  min-height: 0;
  object-fit: contain;
}

/* Conceptual interiors are explicitly distinguished from existing facilities. */
.interior-concept {
  margin: 0 6% 70px;
}
.interior-concept-heading {
  margin-bottom: 25px;
}
.interior-concept-heading h2 {
  font-size: clamp(36px, 4vw, 58px);
}
.interior-concept-heading .local-label {
  margin-bottom: 14px;
}
.interior-concept img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.interior-concept figcaption {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 18px;
  max-width: 90ch;
}
.interior-concept figcaption strong {
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 760px) {
  .interior-concept {
    margin: 0 25px 50px;
  }
}

.theatre-real {
  width: min(1380px, 88%);
  margin: 24px auto 85px;
}
.theatre-documentary,
.theatre-recreation {
  margin: 35px 0 50px;
}
.theatre-documentary img,
.theatre-recreation img {
  width: 100%;
  height: auto;
  display: block;
}
.theatre-documentary figcaption,
.theatre-recreation figcaption {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 14px;
  max-width: 850px;
}
.theatre-documentary figcaption strong,
.theatre-recreation figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 5px;
}

.theatre-reference {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.theatre-reference summary {
  cursor: pointer;
  color: var(--action);
  font-size: 15px;
  min-height: 44px;
  padding: 10px 0;
}
.theatre-reference > p {
  color: var(--muted);
  font-size: 14px;
  max-width: 850px;
  margin-top: 16px;
}

/* The picture wrapper introduces format negotiation, not another layout box. */
.responsive-photo {
  display: contents;
}

.menu-contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.menu-contact .menu-contact-details a {
  font-size: 14px;
  min-height: 44px;
  overflow-wrap: anywhere;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin: 24px 0;
  font-style: normal;
  font-size: 14px;
}
.footer-contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  overflow-wrap: anywhere;
}
.footer-contact span {
  color: var(--muted);
}
@media (max-width: 760px) {
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 760px) {
  .nav .button {
    min-height: 44px;
  }
}

@media (max-width: 760px) {
  .menu {
    top: 0;
    padding-top: 94px;
    overscroll-behavior: contain;
  }
  body:has(.menu:not([hidden])) {
    overflow: hidden;
  }
}

/* The longer, approved promise keeps a balanced editorial rhythm on every screen. */
.hero h1 {
  font-size: clamp(38px, 3.6vw, 64px);
  line-height: 1.08;
  text-wrap: balance;
  max-width: 18ch;
}
.hero h1 .hero-accent {
  color: var(--action);
}

/* Preserve the complete ensemble rather than cropping faces for a fixed-height box. */
.hero {
  min-height: 0;
  align-items: center;
}
.hero-visual img {
  object-position: center;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
}
@media (min-width: 761px) and (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    padding: 48px 8%;
  }
  .hero h1 {
    max-width: 24ch;
    font-size: clamp(44px, 6vw, 64px);
  }
  .hero-visual img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
}
@media (max-width: 760px) {
  .hero-visual img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
}
