:root {
  --ivory: #f7f3ec;
  --paper: #fffdf9;
  --sand: #e8dfd2;
  --ink: #163f43;
  --ink-deep: #0b3338;
  --teal: #0b555b;
  --aqua: #77bcc0;
  --aqua-soft: #d8eeee;
  --coral: #ee806d;
  --gold: #c5a15a;
  --muted: #667274;
  --line: rgba(22, 63, 67, 0.18);
  --shadow: 0 24px 70px rgba(11, 51, 56, 0.12);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --page: min(1240px, calc(100vw - 64px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink-deep);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink-deep);
  transform: translateY(-160%);
}

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

.site-header {
  width: var(--page);
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.brand > span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand small,
.section-kicker,
.gallery-card-copy span,
.site-footer,
.gallery-filter {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  letter-spacing: 0.12em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header nav a {
  position: relative;
  min-height: 44px;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  text-decoration: none;
}

.site-header nav a:not(.button):not(.header-social-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-header nav a:not(.button):not(.header-social-link):hover::after,
.site-header nav a:not(.button):not(.header-social-link):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header nav .locale-toggle {
  min-width: 112px;
  margin-left: 0;
  justify-content: center;
}

.locale-toggle::after,
.footer-language::after {
  display: none;
}

.header-social-link {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0 !important;
  justify-content: center;
  border: 1px solid var(--teal);
  border-radius: 3px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(11, 85, 91, 0.14);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-social-link:hover {
  border-color: var(--ink-deep);
  background: var(--ink-deep);
  box-shadow: 0 12px 24px rgba(11, 51, 56, 0.2);
  transform: translateY(-2px);
}

.header-social-link img {
  width: 18px;
  height: 18px;
}

.hero {
  width: var(--page);
  min-height: 680px;
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 8vw, 104px) clamp(42px, 6vw, 84px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.section-kicker {
  margin: 0 0 22px;
  color: var(--teal);
}

.section-kicker::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  margin: 0 0 3px 14px;
  background: var(--gold);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: clamp(58px, 6.4vw, 96px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 28px;
}

.lede {
  max-width: 570px;
  margin-bottom: 38px;
  color: #44585a;
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button,
.contact-submit {
  position: relative;
  min-height: 52px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--teal);
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button::after,
.contact-submit::after {
  content: "";
  width: 18px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  transition: width 180ms ease;
}

.button:hover::after,
.contact-submit:hover::after {
  width: 30px;
}

.button-primary,
.contact-submit {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 26px rgba(11, 85, 91, 0.18);
}

.button-primary:hover,
.contact-submit:hover {
  border-color: var(--ink-deep);
  background: var(--ink-deep);
  box-shadow: 0 14px 30px rgba(11, 51, 56, 0.22);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--teal);
  background: transparent;
}

.button-secondary:hover {
  color: #fff;
  background: var(--teal);
  transform: translateY(-2px);
}

.button-compact {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 10px;
  letter-spacing: 0.13em;
}

.text-link {
  padding: 9px 0 5px;
  border-bottom: 1px solid var(--aqua);
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.prototype-note {
  max-width: 500px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-art {
  position: relative;
  min-height: 680px;
  background: var(--aqua-soft);
}

.hero-image-frame,
.hero-image-frame img {
  width: 100%;
  height: 100%;
}

.hero-image-frame img {
  object-fit: cover;
  object-position: 48% center;
}

.hero-art > p {
  position: absolute;
  right: 18px;
  bottom: 22px;
  max-width: 270px;
  margin: 0;
  padding: 8px 10px;
  color: var(--ink-deep);
  background: rgba(255, 253, 249, 0.88);
  font-size: 11px;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 112px 0;
}

.gallery {
  width: 100%;
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  padding-left: max(32px, calc((100vw - 1240px) / 2));
  background: var(--paper);
}

.gallery-intro {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.gallery-intro h2 {
  max-width: 640px;
  margin-bottom: 0;
}

.gallery-intro > p {
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--muted);
}

.gallery-toolbar {
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.no-js .gallery-toolbar {
  display: none;
}

.gallery-filter {
  padding: 13px 20px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.gallery-filter:hover,
.gallery-filter.is-active {
  color: var(--ink-deep);
  border-bottom-color: var(--teal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(270px, 1fr));
  gap: 14px;
}

.gallery-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink-deep);
  background: var(--ivory);
  text-decoration: none;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card-featured {
  grid-row: 1 / span 2;
}

.gallery-image-wrap {
  position: relative;
  min-height: 0;
  flex: 1;
  overflow: hidden;
  background: var(--sand);
}

.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.gallery-card:hover .gallery-image-wrap img {
  transform: scale(1.025);
}

.gallery-view {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(11, 51, 56, 0.86);
  font-size: 11px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-card:hover .gallery-view,
.gallery-card:focus-visible .gallery-view {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card-copy {
  min-height: 82px;
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gallery-card-copy strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.1;
}

.gallery-card-copy span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.gallery-status {
  min-height: 1.6em;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.story-image {
  position: relative;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-copy h2 {
  max-width: 690px;
}

.story-prose {
  max-width: 680px;
  columns: 2;
  column-gap: 40px;
  color: #45595b;
}

.story-prose p {
  break-inside: avoid;
  margin-bottom: 22px;
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 100px;
  border-top: 1px solid var(--line);
}

.section-heading h2 {
  max-width: 640px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--teal);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 620px;
  padding: 0 46px 26px 0;
  color: var(--muted);
}

.visit {
  width: 100%;
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  padding-left: max(32px, calc((100vw - 1240px) / 2));
  color: #fff;
  background: var(--teal);
}

.visit .section-kicker {
  color: var(--aqua-soft);
}

.visit .section-kicker::after {
  background: var(--coral);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.visit-grid article {
  min-height: 250px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.visit-grid article:last-child {
  border-right: 0;
}

.visit-grid article > span {
  color: var(--aqua-soft);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.visit-grid h3 {
  margin: 48px 0 18px;
  font-size: 31px;
}

.visit-grid p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.76);
}

.contact {
  margin-top: 96px;
  margin-bottom: 96px;
  padding: clamp(54px, 7vw, 90px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(11, 51, 56, 0.07);
}

.contact-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.contact-heading h2 {
  margin-bottom: 22px;
}

.contact-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
}

.contact-layout {
  max-width: 920px;
  display: grid;
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.contact-form-heading,
.contact-submit,
.contact-field:nth-of-type(6),
.contact-field:nth-of-type(7) {
  grid-column: 1 / -1;
}

.contact-form-heading {
  margin-bottom: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-form-heading h3 {
  margin-bottom: 10px;
  font-size: clamp(29px, 3vw, 38px);
}

.contact-form-heading span {
  display: block;
  max-width: 620px;
  color: var(--muted);
  font-size: 12px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field-label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink-deep);
  background: var(--ivory);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-field textarea {
  min-height: 138px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #728082;
  opacity: 1;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--teal);
  outline: 0;
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(119, 188, 192, 0.24);
}

.contact-submit {
  width: fit-content;
  margin-top: 8px;
}

.contact-disclaimer {
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
}

.contact-disclaimer > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.not-found-header {
  width: min(980px, calc(100vw - 64px));
}

.not-found-main {
  width: min(980px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 0 80px;
  display: grid;
  align-items: center;
}

.not-found-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.not-found-card > div {
  padding: clamp(36px, 6vw, 72px);
}

.not-found-card > div + div {
  border-left: 1px solid var(--line);
  background: var(--aqua-soft);
}

.not-found-card h1,
.not-found-card h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 68px);
}

.not-found-card p:not(.section-kicker) {
  max-width: 42ch;
  margin-bottom: 30px;
  color: var(--muted);
}

.site-footer {
  min-height: 128px;
  padding: 28px max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink-deep);
  font-size: 10px;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 5px;
}

.site-footer strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.site-footer > p {
  margin: 0;
  text-align: center;
}

.footer-actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 18px;
}

.footer-social {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.footer-social > span {
  color: rgba(255, 255, 255, 0.56);
}

.social-link {
  min-height: 44px;
  padding: 7px 10px;
  display: inline-grid;
  grid-template-columns: 20px auto;
  align-items: center;
  gap: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.social-link img {
  grid-row: 1 / 3;
}

.social-link span,
.social-link strong {
  line-height: 1.1;
}

.social-link span {
  font-size: 8px;
  letter-spacing: 0.15em;
}

.social-link strong {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
}

.social-link:hover {
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.site-footer a {
  color: #fff;
}

.site-footer .button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
}

.site-footer .button-secondary:hover {
  border-color: var(--coral);
  color: var(--ink-deep);
  background: var(--ivory);
}

.footer-language {
  min-width: 112px;
  justify-content: center;
}

.gallery-dialog {
  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  display: none;
  overflow: auto;
  border: 0;
  color: var(--ink-deep);
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(5, 27, 30, 0.42);
}

.gallery-dialog[open],
.gallery-dialog.is-open {
  display: block;
}

.gallery-dialog.is-open {
  position: fixed;
  inset: 16px;
  z-index: 1001;
  margin: auto;
}

.gallery-modal-open {
  overflow: hidden;
}

.gallery-modal-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 35, 38, 0.8);
  backdrop-filter: blur(4px);
}

.gallery-dialog::backdrop {
  background: rgba(7, 35, 38, 0.8);
  backdrop-filter: blur(4px);
}

.dialog-topbar,
.dialog-footer {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.dialog-topbar {
  border-bottom: 1px solid var(--line);
}

.dialog-topbar p,
.dialog-footer p {
  margin: 0;
}

.dialog-topbar p {
  font-family: var(--serif);
  font-size: 25px;
}

.gallery-dialog button {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--ink-deep);
  background: transparent;
  cursor: pointer;
}

.gallery-dialog button:hover {
  border-color: var(--teal);
  background: var(--aqua-soft);
}

.gallery-dialog > img {
  width: 100%;
  max-height: calc(100dvh - 190px);
  object-fit: contain;
  background: var(--ivory);
}

.dialog-footer p {
  max-width: 720px;
  color: var(--muted);
}

.dialog-footer > div {
  display: flex;
  gap: 8px;
}

@media (max-width: 1050px) {
  :root {
    --page: min(100% - 40px, 920px);
  }

  .site-header {
    padding: 18px 0;
    align-items: flex-start;
  }

  .site-header nav {
    max-width: 520px;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .hero {
    grid-template-columns: 1fr 0.92fr;
  }

  .hero-copy {
    padding: 60px 40px;
  }

  .hero-art,
  .hero {
    min-height: 600px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 520px 340px 340px;
  }

  .gallery-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .story,
  .faq,
  .contact {
    gap: 54px;
  }

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

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 880px) {
  .site-header {
    min-height: 0;
    display: grid;
    gap: 12px;
  }

  .site-header nav {
    width: 100%;
    max-width: none;
    padding-bottom: 4px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 28px);
  }

  .site-header {
    min-height: 0;
    display: grid;
    gap: 14px;
  }

  .brand-logo {
    width: 88px;
    height: 88px;
  }

  .site-header nav {
    max-width: none;
    padding-bottom: 4px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
  }

  .site-header nav a {
    flex: 0 0 auto;
  }

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

  .not-found-header,
  .not-found-main {
    width: calc(100vw - 28px);
  }

  .not-found-card {
    grid-template-columns: 1fr;
  }

  .not-found-card > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-copy {
    padding: 56px 28px;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-art {
    min-height: 500px;
  }

  .section {
    padding: 80px 0;
  }

  .gallery,
  .visit {
    padding-right: 14px;
    padding-left: 14px;
  }

  .gallery-intro,
  .story,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .gallery-intro {
    gap: 24px;
  }

  .gallery-toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .gallery-filter {
    padding: 12px 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-card,
  .gallery-card-featured {
    min-height: 420px;
    grid-column: auto;
    grid-row: auto;
  }

  .story-prose {
    columns: 1;
  }

  .faq {
    gap: 24px;
  }

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

  .visit-grid article,
  .visit-grid article:last-child {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .contact {
    width: calc(100% - 28px);
    margin-top: 64px;
    margin-bottom: 64px;
    padding: 48px 24px;
  }

  .contact-heading {
    margin-bottom: 42px;
  }

  .contact-layout,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-heading,
  .contact-submit,
  .contact-field:nth-of-type(6),
  .contact-field:nth-of-type(7) {
    grid-column: auto;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-disclaimer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-actions {
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
  }

  .footer-social {
    justify-items: start;
  }

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

  .dialog-footer > div {
    width: 100%;
  }

  .dialog-footer button {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
