:root {
  color-scheme: light;
  --page: #ffffff;
  --surface: #ffffff;
  --surface-soft: #c7eef8;
  --surface-pale: #e9f8fc;
  --ink: #243139;
  --muted: #496573;
  --brand: #81d8f4;
  --brand-dark: #476675;
  --green: #5b7f78;
  --line: #d8edf3;
  --shadow: none;
  --max: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Trebuchet MS", "Avenir Next", Avenir, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--brand-dark);
}

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

h1 {
  max-width: 18ch;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  padding: 10px clamp(24px, 8vw, 140px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 0;
}

.brand img {
  width: 249px;
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-start;
  align-items: center;
  order: -1;
}

.nav a,
.header-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}

.nav .nav-cta {
  background: transparent;
  color: var(--ink);
  padding: 0 10px;
}

.header-contact {
  display: grid;
  gap: 7px;
  justify-items: end;
}

.header-contact a {
  min-height: auto;
  padding: 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.hero.section {
  width: 100%;
  max-width: none;
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(50px, 6vw, 78px);
  padding-right: max(92px, calc((100% - 1680px) / 2));
  padding-left: max(92px, calc((100% - 1680px) / 2));
  background: #dff5fb;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(320px, 360px);
  gap: clamp(34px, 4vw, 78px);
  justify-content: space-between;
  align-items: center;
  min-height: 620px;
}

.hero-copy {
  max-width: 470px;
  z-index: 1;
}

.hero-mark {
  display: grid;
  place-items: center;
  position: absolute;
  top: 54%;
  left: 50%;
  z-index: 0;
  width: clamp(240px, 22vw, 330px);
  opacity: 0.68;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-mark img {
  width: 100%;
  height: auto;
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.35rem;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 0;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: #14262c;
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.booking-panel {
  z-index: 1;
  width: min(100%, 360px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateX(clamp(-110px, -6vw, -36px));
}

.booking-panel h1 {
  margin-bottom: clamp(32px, 3vw, 48px);
  color: #14262c;
  font-size: clamp(1.7rem, 2.1vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
}

.booking-panel h2 {
  margin-bottom: 8px;
  color: #14262c;
  font-size: clamp(1.65rem, 2.3vw, 2.45rem);
  font-weight: 700;
}

.booking-panel p {
  margin-bottom: 12px;
  color: #14262c;
  font-size: 1.08rem;
}

.booking-hint {
  max-width: 31ch;
  margin-bottom: 22px;
  color: #2c4852;
  font-size: 0.92rem;
  line-height: 1.35;
}

.booking-panel .button {
  gap: 14px;
  justify-content: space-between;
  min-height: 64px;
  margin-bottom: 22px;
  padding-right: 18px;
  padding-left: 20px;
  border: 1px solid rgba(20, 38, 44, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(20, 38, 44, 0.08);
  color: #14262c;
  font-size: 1.08rem;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.booking-panel .button:hover {
  background: #fff;
  border-color: rgba(20, 38, 44, 0.54);
  color: #14262c;
  transform: translateY(-1px);
}

.booking-panel .button span[aria-hidden="true"] {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.booking-panel .button:hover span[aria-hidden="true"] {
  transform: translateX(4px);
}

.booking-panel .button:focus-visible,
.phone-list a:focus-visible {
  outline: 3px solid rgba(20, 38, 44, 0.28);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.68), 0 12px 26px rgba(20, 38, 44, 0.12);
}

.quote {
  margin-bottom: 4px;
  color: #14262c;
  font-size: clamp(1.75rem, 2.15vw, 2.45rem);
  font-weight: 800;
  line-height: 1.32;
}

.quote-author {
  color: #14262c;
  font-size: 1.2rem;
  line-height: 1.2;
}

.phone-list {
  display: grid;
  gap: 12px;
  padding-top: 2px;
  border-top: 1px solid rgba(20, 38, 44, 0.12);
}

.phone-list a {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 38, 44, 0.12);
  border-radius: 10px;
  color: #14262c;
  font-weight: 400;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(20, 38, 44, 0.08);
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.phone-list a:hover {
  background: #fff;
  border-color: rgba(20, 38, 44, 0.24);
  color: #14262c;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(20, 38, 44, 0.11);
}

.phone-list img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  object-fit: cover;
}

.phone-list span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.phone-list strong {
  font-size: 1rem;
  font-weight: 800;
}

.phone-list small {
  color: #2c4852;
  font-size: 0.95rem;
  font-weight: 800;
}

.two-column,
.facts,
.access-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
}

.contact-access {
  width: 100%;
  max-width: none;
  scroll-margin-top: 112px;
  padding-right: max(18px, calc((100% - var(--max)) / 2));
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  background: #fff;
}

.contact-access .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.contact-access .section-heading h1 {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  text-align: center;
}

.contact-access .section-heading p:not(.eyebrow) {
  color: #14262c;
  font-size: clamp(0.94rem, 1vw, 1rem);
}

.directions-list {
  display: grid;
  gap: 0;
}

.directions-list details {
  border-bottom: 1px solid var(--line);
}

.directions-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.directions-list summary::-webkit-details-marker {
  display: none;
}

.directions-list summary::after {
  content: "⌄";
  font-weight: 400;
}

.directions-list details[open] summary::after {
  transform: rotate(180deg);
}

.directions-list p,
.directions-list a {
  color: var(--muted);
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.45;
}

.map-embed {
  display: grid;
  gap: 12px;
  align-self: start;
}

.map-embed iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--line);
}

.map-embed .text-link {
  justify-self: center;
  font-size: clamp(0.94rem, 1vw, 1rem);
}

.prose {
  color: var(--muted);
  font-size: 1.15rem;
}

.prose h2 {
  margin-top: 28px;
  color: var(--ink);
  font-size: 1.35rem;
}

.text-link {
  font-weight: 800;
}

.soft {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100% - var(--max)) / 2));
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  background: var(--surface-pale);
}

#bienvenue {
  width: 100%;
  max-width: none;
  display: block;
  scroll-margin-top: 104px;
  padding: clamp(78px, 8vw, 112px) max(18px, calc((100% - var(--max)) / 2)) clamp(84px, 8vw, 118px);
  background: #73c7e1;
  text-align: center;
}

#bienvenue .eyebrow {
  display: none;
}

#bienvenue h2 {
  max-width: 980px;
  margin: 0 auto 24px;
  color: #fff;
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  text-shadow: 0 1px 2px rgba(20, 38, 44, 0.08);
}

#bienvenue .prose {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  line-height: 1.45;
  text-shadow: 0 1px 2px rgba(20, 38, 44, 0.08);
}

#bienvenue .prose p {
  margin-bottom: 8px;
}

#bienvenue .prose p:last-of-type {
  margin-top: clamp(44px, 5vw, 66px);
}

#bienvenue .welcome-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  margin-top: 28px;
  padding: 0 32px;
  background: #14262c;
  border-radius: 8px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
  text-shadow: none;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

#bienvenue .welcome-button:hover {
  background: #203940;
  color: #fff;
  box-shadow: 0 10px 22px rgba(20, 38, 44, 0.16);
  transform: translateY(-1px);
}

#bienvenue .welcome-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

#conseils {
  scroll-margin-top: 180px;
  background: #fff;
}

#conseils .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.info-grid,
.portrait-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.portrait-card,
.contact-card {
  background: var(--surface);
  border: 0;
  border-radius: 0;
}

.info-card {
  padding: 20px;
  text-align: center;
}

.info-card img {
  width: 132px;
  height: 132px;
  margin: 0 auto 26px;
}

.info-card p,
.portrait-card p,
.contact-card p {
  color: var(--muted);
}

.facts {
  width: 100%;
  max-width: none;
  display: block;
  scroll-margin-top: 104px;
  padding: clamp(56px, 6vw, 82px) max(36px, calc((100% - 1700px) / 2)) clamp(64px, 7vw, 92px);
  background: #bdcfd1;
  color: #fff;
  text-align: center;
}

.facts .eyebrow {
  display: none;
}

.facts-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.facts-heading h2 {
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}

.facts-heading p {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(34px, 8vw, 150px);
  align-items: center;
  max-width: 1500px;
  margin: 0;
}

.fact-list div {
  display: grid;
  align-content: center;
  justify-items: center;
  width: clamp(240px, 23vw, 330px);
  aspect-ratio: 1;
  margin: 0 auto;
  padding: clamp(36px, 4vw, 58px);
  background: #73c7e1;
  border: 5px solid #73c7e1;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #fff;
  color: #fff;
  text-align: center;
}

.fact-list dt {
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.28rem, 1.8vw, 1.6rem);
  line-height: 1.18;
}

.fact-list dd {
  margin: clamp(44px, 5vw, 66px) 0 0;
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.28;
}

.note {
  max-width: 1030px;
  margin: clamp(64px, 8vw, 104px) auto 0;
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.45;
  text-align: left;
}

.facts-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 330px);
  min-height: 46px;
  margin-top: 42px;
  padding: 0 34px;
  background: #73c7e1;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.facts-button:hover {
  background: #62bbd8;
  color: #fff;
  box-shadow: 0 10px 22px rgba(20, 38, 44, 0.12);
  transform: translateY(-1px);
}

.facts-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

#portraits {
  width: 100%;
  max-width: none;
  scroll-margin-top: 104px;
  padding-right: max(44px, calc((100% - 1500px) / 2));
  padding-left: max(44px, calc((100% - 1500px) / 2));
  background: #fff;
  text-align: center;
}

#portraits .section-heading {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: clamp(58px, 6vw, 88px);
  margin-left: auto;
  text-align: center;
}

#portraits .eyebrow {
  display: none;
}

#portraits h2 {
  color: #14262c;
  font-size: clamp(2rem, 3vw, 3rem);
}

.portrait-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 6vw, 96px);
  align-items: start;
}

.portrait-card {
  display: block;
  max-width: 420px;
  margin: 0 auto;
  padding: 0;
  border-top: 0;
  text-align: center;
}

.portrait-card img {
  width: clamp(210px, 20vw, 320px);
  height: clamp(210px, 20vw, 320px);
  margin: 0 auto clamp(34px, 4vw, 54px);
  border-radius: 50%;
  object-fit: cover;
}

.portrait-card h3 {
  margin-bottom: 2px;
  color: #14262c;
  font-size: clamp(1.35rem, 1.55vw, 1.72rem);
  line-height: 1.15;
  white-space: nowrap;
}

.portrait-card p {
  color: #14262c;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.45;
}

.portrait-card h4 {
  margin: 34px 0 8px;
  color: #14262c;
  font-size: 1.05rem;
  line-height: 1.25;
}

.portrait-card ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  color: #14262c;
  font-size: 0.96rem;
  line-height: 1.35;
  list-style: none;
}

.role {
  margin-bottom: 0;
  color: #14262c;
  font-size: clamp(1.35rem, 1.85vw, 1.95rem);
  font-weight: 900;
  line-height: 1.18;
}

.portrait-phone {
  margin-bottom: clamp(46px, 5vw, 70px);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 76px clamp(24px, 5vw, 48px);
  margin-bottom: 64px;
  background: #fff;
  color: var(--ink);
  border-radius: 0;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 0;
}

.cta-band .button {
  background: var(--brand-dark);
  color: #fff;
}

.page-title {
  padding-bottom: 54px;
  text-align: center;
}

.page-title h1 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.contact-page .page-title,
.contact-page .contact-grid {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100% - var(--max)) / 2));
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  background: var(--surface-soft);
}

.contact-page .page-title {
  padding-bottom: 30px;
}

.contact-page .page-title h1 {
  max-width: none;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.contact-page .contact-grid {
  padding-top: 20px;
  padding-bottom: 76px;
}

.contact-page .page-title .eyebrow,
.contact-page .contact-access .eyebrow {
  font-size: 0.76rem;
}

.questions-page .page-title {
  padding-top: 46px;
  padding-bottom: 16px;
  text-align: left;
}

.questions-page .page-title .eyebrow {
  display: none;
}

.questions-page .page-title h1 {
  margin-left: 0;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
}

.questions-page .faq-list {
  padding-top: 0;
}

.contact-card {
  padding: 0 22px;
  text-align: center;
  background: transparent;
}

.contact-card h2 {
  margin-bottom: 4px;
  color: #14262c;
  font-size: clamp(1.15rem, 1.35vw, 1.35rem);
}

.contact-card p,
.contact-card a {
  color: #14262c;
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.35;
}

.contact-card img {
  width: 220px;
  height: 220px;
  margin: 0 auto 28px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-card a {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.access-photos {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 14px;
  align-self: start;
  width: min(100%, 760px);
  margin: 120px auto 0;
}

.access-photos img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 0;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 0;
  padding-top: 24px;
  background: #fff;
}

.faq-list article {
  padding: 0;
  scroll-margin-top: 132px;
  background: var(--surface);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.faq-list h2,
.faq-question {
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--brand-dark);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 94px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-question::after {
  content: "⌄";
  color: var(--brand-dark);
  font-size: 1.6rem;
}

.faq-item.is-open .faq-question::after,
.faq-item:target .faq-question::after {
  transform: rotate(180deg);
}

.faq-item.is-open .faq-question,
.faq-item:target .faq-question {
  color: var(--ink);
  font-weight: 700;
}

.faq-answer {
  display: none;
}

.faq-item.is-open .faq-answer,
.faq-item:target .faq-answer {
  display: block;
}

.faq-list p {
  max-width: 82ch;
  color: var(--muted);
}

.faq-answer > p,
.faq-answer > ul {
  padding-right: 36px;
  padding-bottom: 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 48px max(18px, calc((100% - var(--max)) / 2));
  background: var(--surface-soft);
  color: var(--ink);
  text-align: center;
}

.site-footer p {
  margin-bottom: 4px;
  color: var(--ink);
}

.site-footer a {
  color: var(--ink);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 42px;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 1360px) {
  .hero.section {
    padding-right: 64px;
    padding-left: 64px;
  }

  .hero {
    grid-template-columns: minmax(0, 430px) minmax(300px, 360px);
    gap: 32px;
  }

  .hero-copy {
    max-width: 430px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav {
    order: initial;
    justify-content: center;
  }

  .header-contact {
    justify-items: center;
  }

  .hero,
  .two-column,
  .facts,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero-mark {
    position: static;
    width: clamp(240px, 52vw, 340px);
    margin: 0 auto;
    opacity: 0.86;
    transform: none;
  }

  .hero-copy,
  .booking-panel h1 {
    margin-right: auto;
    margin-left: auto;
  }

  .booking-panel {
    width: min(100%, 420px);
    margin: 0 auto;
    text-align: left;
    transform: none;
  }

  .info-grid,
  .portrait-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .fact-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fact-list div {
    width: min(72vw, 310px);
  }

  .note {
    max-width: 620px;
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    min-height: 0;
  }

  .brand img {
    width: 160px;
  }

  .nav {
    justify-content: center;
  }

  .nav a {
    font-size: 0.88rem;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 46px 0;
  }

  .soft {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  #conseils {
    scroll-margin-top: 0;
  }

  .facts {
    width: 100%;
    padding: 46px 18px 54px;
  }

  .faq-list article {
    scroll-margin-top: 24px;
  }

  .facts-heading {
    margin-bottom: 30px;
  }

  .facts-heading p {
    font-size: clamp(1.25rem, 7vw, 1.7rem);
  }

  .fact-list div {
    width: min(78vw, 280px);
    padding: 34px;
    border-width: 4px;
    box-shadow: inset 0 0 0 4px #fff;
  }

  .fact-list dd {
    margin-top: 34px;
  }

  .note {
    margin-top: 44px;
    font-size: 1rem;
    text-align: left;
  }

  .facts-button {
    min-width: min(100%, 300px);
  }

  .hero {
    min-height: auto;
    gap: 28px;
  }

  .hero.section {
    padding-top: 34px;
    padding-bottom: 42px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-mark img {
    width: min(68vw, 260px);
  }

  .booking-panel h1 {
    margin-bottom: 24px;
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .booking-panel h2 {
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .booking-hint {
    max-width: none;
    margin-bottom: 18px;
  }

  .booking-panel .button,
  .phone-list a {
    min-height: 60px;
  }

  .phone-list img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .portrait-card,
  .site-footer,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    max-width: min(100%, 360px);
    padding: 0;
  }

  .portrait-card h3 {
    white-space: normal;
  }

  .portrait-card img {
    width: min(72vw, 260px);
    height: min(72vw, 260px);
    min-height: 0;
    margin-bottom: 28px;
  }

  #portraits {
    padding-right: 18px;
    padding-left: 18px;
  }

  #portraits .section-heading {
    margin-bottom: 42px;
  }

  .cta-band {
    display: grid;
  }

  .access-photos {
    grid-template-columns: 1fr;
  }
}
