:root {
  --stone: #e5dcc6;
  --stone-dark: #7f725f;
  --paper: #fbf7ec;
  --paper-warm: #f1e6d0;
  --gold: #b9904f;
  --gold-soft: rgba(185, 144, 79, 0.28);
  --garnet: #6f2420;
  --green: #425944;
  --ink: #17140f;
  --muted: #5d5549;
  --white: #fffdf7;
  --shadow: 0 28px 70px rgba(45, 28, 10, 0.14);
  --soft-shadow: 0 16px 42px rgba(45, 28, 10, 0.1);
  --max-width: 1180px;
  --side: clamp(20px, 5vw, 72px);
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--white);
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 247, 236, 0.94);
  color: var(--ink);
  border-bottom: 1px solid var(--gold-soft);
  box-shadow: 0 12px 32px rgba(29, 22, 13, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 var(--side);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: currentColor;
  opacity: 0.72;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
}

.nav-link,
.language-switcher button,
.button,
.section-kicker,
.text-link,
.filter-button,
.info-card span,
.timeline-item span,
.gallery-item figcaption span,
.contact-list span,
.form-field span,
.site-footer h3 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-link {
  letter-spacing: 0.1em;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.language-switcher button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 3px;
  letter-spacing: 0.12em;
  opacity: 0.72;
}

.language-switcher button[aria-current="true"] {
  color: var(--gold);
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 22px;
  border: 1px solid transparent;
  letter-spacing: 0.12em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-outline,
.button-ghost {
  border-color: var(--gold);
  color: var(--gold);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 253, 247, 0.74);
}

.button-outline:hover,
.button-ghost:hover {
  background: var(--gold);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  place-items: center;
}

.menu-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.menu-icon span,
.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-icon::before {
  top: 0;
}

.menu-icon span:first-child {
  top: 6px;
}

.menu-icon span:last-child {
  display: none;
}

.menu-icon::after {
  top: 13px;
}

.menu-toggle.is-open .menu-icon::before {
  top: 6px;
  transform: rotate(45deg);
}

.menu-toggle.is-open .menu-icon span:first-child {
  opacity: 0;
}

.menu-toggle.is-open .menu-icon::after {
  top: 6px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 8px var(--side) 26px;
  background: rgba(251, 247, 236, 0.98);
  color: var(--ink);
  border-top: 1px solid var(--gold-soft);
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-languages {
  margin-top: 8px;
  border-top: 1px solid var(--gold-soft);
  padding-top: 16px;
}

.hero {
  position: relative;
  height: min(700px, 100svh);
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
  animation: hero-image-reveal 1600ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes hero-image-reveal {
  from {
    opacity: 0.72;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-item-reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 7, 0.82) 0%, rgba(12, 10, 7, 0.5) 42%, rgba(12, 10, 7, 0.14) 100%),
    linear-gradient(0deg, rgba(48, 32, 14, 0.58), rgba(48, 32, 14, 0.02) 52%);
}

.hero-texture,
.paper-texture,
.stone-texture {
  position: relative;
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.paper-texture::before,
.stone-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.075;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.66' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: calc(var(--header-height) + 34px) var(--side) 112px;
}

.hero-content > * {
  opacity: 0;
}

.hero-content.is-visible > * {
  animation: hero-item-reveal 720ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-content.is-visible > :nth-child(1) { animation-delay: 80ms; }
.hero-content.is-visible > :nth-child(2) { animation-delay: 150ms; }
.hero-content.is-visible > :nth-child(3) { animation-delay: 230ms; }
.hero-content.is-visible > :nth-child(4) { animation-delay: 310ms; }
.hero-content.is-visible > :nth-child(5) { animation-delay: 390ms; }

.hero-kicker,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.hero h1,
.section-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 8.5vw, 112px);
}

.hero-subtitle {
  margin: 18px 0 0;
  max-width: 680px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.1;
}

.hero-copy {
  margin: 18px 0 0;
  max-width: 560px;
  color: rgba(255, 253, 247, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.floating-card {
  border: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: var(--side);
  bottom: 28px;
  width: min(520px, calc(100% - var(--side) * 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 22px;
}

.hero-card p,
.moriarty-facts p,
.contact-list p {
  margin: 0;
}

.hero-card strong,
.moriarty-facts strong {
  display: block;
  font-weight: 400;
}

.hero-card span,
.moriarty-facts span,
.contact-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.section {
  position: relative;
  padding: clamp(58px, 7vw, 96px) var(--side);
}

.section-grid,
.section-heading,
.heritage-grid,
.visit-grid,
.gallery-grid,
.contact-grid,
.footer-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

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

.section-heading .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
}

.section-copy {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
}

.ornamental-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(220px, 60%);
  margin: 28px 0;
}

.ornamental-rule::before,
.ornamental-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.ornamental-rule::after {
  flex: 0 0 9px;
  height: 9px;
  transform: rotate(45deg);
  background: transparent;
  border: 1px solid var(--gold);
}

.ps-rule {
  margin-left: auto;
  margin-right: auto;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.intro-section {
  background: var(--paper);
}

.intro-media {
  grid-column: 1 / span 6;
  position: relative;
  min-height: 500px;
}

.intro-copy {
  grid-column: 8 / span 5;
}

.image-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--gold-soft);
  background: var(--stone);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 253, 247, 0.42);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
}

.image-frame:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.image-frame-tall {
  width: min(430px, 86%);
  min-height: 460px;
}

.image-frame-tall img {
  min-height: 460px;
  object-position: center;
}

.quote-card {
  position: absolute;
  right: 0;
  bottom: 26px;
  width: min(370px, 72%);
  padding: 28px;
}

.quote-card p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--garnet);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.24;
}

.discover-section,
.moriarty-section {
  background: linear-gradient(135deg, var(--paper-warm), var(--stone));
}

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.heritage-card {
  border: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 12px 34px rgba(45, 28, 10, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.heritage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 144, 79, 0.52);
  box-shadow: var(--soft-shadow);
}

.heritage-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.heritage-card {
  overflow: hidden;
}

.heritage-card:hover img {
  transform: scale(1.04);
}

.heritage-card div {
  padding: 20px;
}

.heritage-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.heritage-card h3,
.timeline-item h3,
.info-card strong,
.contact-card h3,
.contact-form h3,
.site-footer h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}

.heritage-card h3 {
  font-size: 24px;
  line-height: 1.14;
}

.heritage-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.history-section {
  background: var(--paper);
}

.history-content {
  grid-column: 1 / span 7;
}

.history-aside {
  grid-column: 9 / span 4;
  position: relative;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
  padding-left: 0;
}

.timeline::before {
  display: none;
}

.timeline-item {
  position: relative;
  padding: 14px 16px;
  border: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.68);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 13px;
  height: 13px;
  border: 1px solid var(--gold);
  background: var(--paper);
  transform: rotate(45deg);
}

.timeline-item span {
  color: var(--gold);
  letter-spacing: 0.14em;
}

.timeline-item h3 {
  margin-top: 6px;
  font-size: 21px;
}

.timeline-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.history-note {
  width: 92%;
  margin: -34px auto 0;
  position: relative;
  padding: 20px;
}

.history-note p {
  margin: 0;
  color: var(--muted);
}

.visit-section {
  background: var(--ink);
  color: var(--white);
}

.visit-section .section-copy {
  color: rgba(255, 253, 247, 0.72);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(185, 144, 79, 0.34);
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.07), rgba(255, 253, 247, 0.025));
  padding: 22px;
}

.info-card span {
  color: var(--gold);
  letter-spacing: 0.14em;
}

.info-card strong {
  display: block;
  max-width: 260px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
}

.visit-actions,
.moriarty-actions {
  width: min(100%, var(--max-width));
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.ticket-section {
  background: var(--paper);
  padding-top: clamp(48px, 5.5vw, 78px);
  padding-bottom: clamp(48px, 5.5vw, 78px);
}

.ticket-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(620px, 1.42fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: center;
}

.ticket-copy .section-title {
  max-width: 620px;
}

.ticket-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.ticket-points p {
  margin: 0;
  padding: 16px 18px;
  border-left: 1px solid var(--gold);
  background: rgba(255, 253, 247, 0.62);
}

.ticket-points span,
.ticket-panel-head span,
.ticket-summary span,
.secure-payment-notice {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ticket-points strong {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 400;
}

.ticket-panel {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.95fr);
  column-gap: 16px;
  align-items: start;
  border: 1px solid var(--gold-soft);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(241, 230, 208, 0.82));
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.6vw, 24px);
}

.ticket-panel-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-soft);
}

.ticket-panel-head strong {
  max-width: 260px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 500;
  line-height: 1.05;
  text-align: right;
}

.ticket-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ticket-type {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 9px;
  min-height: 112px;
  padding: 10px;
  border: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.62);
  cursor: default;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.ticket-type:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-1px);
}

.ticket-type > input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ticket-type-head {
  display: grid;
  align-content: start;
  gap: 4px;
}

.ticket-type strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.1;
}

.ticket-type small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.ticket-quantity-control {
  grid-template-columns: 30px minmax(26px, 1fr) 30px;
}

.ticket-quantity-control button,
.ticket-quantity-control input {
  min-height: 34px;
}

.ticket-quantity-control button {
  font-size: 20px;
}

.ticket-quantity-control input {
  position: static;
  opacity: 1;
  pointer-events: auto;
  width: 100%;
  font-size: 19px;
}

.quantity-control button:disabled {
  cursor: not-allowed;
  opacity: 0.28;
}

.quantity-control button:disabled:hover {
  background: transparent;
  color: var(--ink);
}

.ticket-calendar {
  grid-column: 1;
  grid-row: 2 / 7;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.72);
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.calendar-toolbar strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.calendar-toolbar button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-soft);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.calendar-toolbar button:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.calendar-toolbar button:disabled {
  cursor: not-allowed;
  opacity: 0.32;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(30px, 1fr));
  gap: 5px;
}

.calendar-weekdays {
  margin-bottom: 5px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day,
.calendar-spacer {
  width: 100%;
  aspect-ratio: 1;
  min-height: 30px;
}

.calendar-day {
  border: 1px solid transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.calendar-day.is-available {
  border-color: #2d6b45;
  background: #3f8058;
  color: #fff;
  cursor: pointer;
}

.calendar-day.is-available:hover {
  background: #285c3b;
}

.calendar-day.is-unavailable {
  border-color: rgba(41, 35, 28, 0.08);
  background: rgba(41, 35, 28, 0.05);
  color: rgba(41, 35, 28, 0.35);
  cursor: not-allowed;
}

.calendar-day.is-selected {
  outline: 3px solid var(--ink);
  outline-offset: 1px;
  background: var(--ink);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
}

.calendar-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calendar-legend i {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(41, 35, 28, 0.1);
}

.legend-available {
  background: #3f8058;
}

.legend-unavailable {
  background: rgba(41, 35, 28, 0.08);
}

.quantity-control {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  border: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.62);
}

.quantity-control button,
.quantity-control input {
  min-height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: center;
}

.quantity-control button {
  cursor: pointer;
  font-size: 24px;
}

.quantity-control button:hover {
  background: var(--gold);
  color: var(--white);
}

.quantity-control input {
  border-left: 1px solid var(--gold-soft);
  border-right: 1px solid var(--gold-soft);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.ticket-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 14px 0 12px;
  border: 1px solid var(--gold-soft);
  background: var(--gold-soft);
}

.ticket-summary p {
  margin: 0;
  padding: 8px 10px;
  background: rgba(255, 253, 247, 0.78);
}

.ticket-summary strong {
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

.ticket-submit {
  grid-column: 2;
  width: 100%;
}

.ticket-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.ticket-panel .form-field {
  grid-column: 2;
  margin-bottom: 12px;
}

.ticket-panel .ticket-summary,
.ticket-panel .ticket-consent,
.ticket-panel .secure-payment-notice,
.ticket-panel .form-feedback {
  grid-column: 2;
}

.ticket-panel .form-field input {
  padding: 5px 0;
}

.ticket-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.ticket-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.ticket-consent a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.secure-payment-notice {
  margin: 12px 0 0;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.gallery-section {
  background: var(--paper);
  padding-top: 32px;
  padding-bottom: 32px;
}

.gallery-section .section-heading {
  margin-bottom: 22px;
}

.gallery-section .ps-rule {
  display: none;
}

.gallery-filters {
  width: min(100%, var(--max-width));
  margin: -8px auto 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-button {
  border: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.6);
  color: var(--muted);
  padding: 10px 14px;
  cursor: pointer;
  letter-spacing: 0.14em;
}

.filter-button.is-active,
.filter-button:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: grid;
  grid-template-rows: 220px auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  background: var(--stone);
  box-shadow: 0 12px 30px rgba(45, 28, 10, 0.08);
  transition: opacity 260ms ease, transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 144, 79, 0.62);
  box-shadow: var(--soft-shadow);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-large {
  grid-column: auto;
  grid-row: auto;
}

.gallery-wide {
  grid-column: span 3;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 320ms ease;
}

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

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.05);
}

.gallery-item figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 12px 15px;
  border-top: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.98);
  color: var(--ink);
}

.gallery-item figcaption strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.gallery-item figcaption span {
  display: block;
  flex: 0 0 auto;
  margin-top: 0;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-align: right;
}

.gallery-item {
  cursor: zoom-in;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(13, 11, 8, 0.94);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 180ms ease;
}

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

.gallery-lightbox.is-open {
  opacity: 1;
}

.gallery-lightbox__dialog {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.gallery-lightbox figure {
  display: grid;
  gap: 14px;
  max-width: 100%;
  margin: 0;
}

.gallery-lightbox figure img {
  display: block;
  width: auto;
  max-width: min(86vw, 1500px);
  height: auto;
  max-height: calc(100svh - 150px);
  margin: auto;
  object-fit: contain;
  background: #0d0b08;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.gallery-lightbox figcaption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
}

.gallery-lightbox figcaption span {
  display: grid;
  gap: 4px;
}

.gallery-lightbox figcaption strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.15;
}

.gallery-lightbox figcaption em,
.gallery-lightbox figcaption small {
  color: rgba(255, 253, 247, 0.7);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-lightbox button {
  border: 1px solid rgba(255, 253, 247, 0.48);
  background: rgba(13, 11, 8, 0.62);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gallery-lightbox button:hover,
.gallery-lightbox button:focus-visible {
  border-color: var(--gold);
  background: rgba(185, 144, 79, 0.82);
  outline: none;
}

.gallery-lightbox__close {
  position: fixed;
  top: clamp(14px, 2vw, 28px);
  right: clamp(14px, 2vw, 28px);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.gallery-lightbox__nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 26px;
  transform: translateY(-50%);
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  transform: translateY(-50%) scale(1.06);
}

.gallery-lightbox__prev {
  left: clamp(14px, 2vw, 28px);
}

.gallery-lightbox__next {
  right: clamp(14px, 2vw, 28px);
}

@media (max-width: 760px) {
  .gallery-lightbox {
    align-items: center;
    padding: 70px 14px 86px;
  }

  .gallery-lightbox figure img {
    max-width: calc(100vw - 28px);
    max-height: calc(100svh - 190px);
  }

  .gallery-lightbox figcaption {
    gap: 16px;
  }

  .gallery-lightbox__nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .gallery-lightbox__nav:hover,
  .gallery-lightbox__nav:focus-visible {
    transform: scale(1.06);
  }

  .gallery-lightbox__prev {
    left: calc(50% - 66px);
  }

  .gallery-lightbox__next {
    right: calc(50% - 66px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-lightbox {
    transition: none;
  }
}
.moriarty-grid {
  align-items: center;
}

.moriarty-section,
.contact-section {
  padding-top: clamp(42px, 4.5vw, 58px);
  padding-bottom: clamp(42px, 4.5vw, 58px);
}

.contact-section {
  padding-top: clamp(36px, 4vw, 48px);
  padding-bottom: clamp(36px, 4vw, 48px);
}

.moriarty-copy {
  grid-column: 1 / span 5;
}

.moriarty-media {
  grid-column: 7 / span 6;
  position: relative;
  min-height: 320px;
}

.moriarty-media .image-frame:first-child img {
  min-height: 300px;
}

.moriarty-inset {
  position: absolute;
  left: -46px;
  bottom: -26px;
  width: min(360px, 58%);
}

.moriarty-inset img {
  min-height: 150px;
}

.moriarty-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--gold-soft);
  background: var(--gold-soft);
}

.moriarty-facts p {
  padding: 14px 16px;
  background: rgba(255, 253, 247, 0.66);
}

.contact-section {
  background: var(--paper-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.76fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.map-frame {
  min-height: 240px;
  border: 1px solid var(--gold-soft);
  background: var(--stone);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

.contact-card,
.contact-form {
  border: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: var(--soft-shadow);
}

.contact-card {
  padding: 24px;
}

.contact-card h3,
.contact-form h3 {
  font-size: 27px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list a {
  color: var(--ink);
}

.contact-list a:hover {
  color: var(--gold);
}

.contact-whatsapp {
  width: 100%;
  margin-top: 24px;
}

.contact-form {
  width: 100%;
  margin: 0;
  padding: clamp(20px, 3vw, 28px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 16px;
}

.form-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.form-field span {
  color: var(--muted);
  letter-spacing: 0.14em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 20, 15, 0.34);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 6px 0;
}

.form-field textarea {
  max-height: 92px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
  outline: none;
}

.form-feedback {
  margin: 18px 0 0;
  color: var(--green);
}

.legal-section {
  background: var(--paper);
}

.legal-grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.legal-card {
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.7);
  box-shadow: 0 14px 36px rgba(45, 28, 10, 0.08);
}

.legal-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.1;
}

.legal-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.site-footer {
  background: #13110d;
  color: var(--white);
  padding: clamp(46px, 6vw, 76px) var(--side) 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
}

.footer-brand h2 {
  margin: 18px 0 10px;
  color: var(--gold);
  font-size: 34px;
}

.footer-brand p,
.footer-meta p {
  color: rgba(255, 253, 247, 0.66);
}

.site-footer nav,
.footer-meta {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer h3 {
  margin: 0 0 8px;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.site-footer a {
  color: rgba(255, 253, 247, 0.76);
}

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

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-meta {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(185, 144, 79, 0.28);
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-cta.is-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(3px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.intro-media.reveal,
.history-aside.reveal,
.moriarty-media.reveal,
.map-frame.reveal {
  transform: translateX(-30px);
}

.intro-copy.reveal,
.history-content.reveal,
.moriarty-copy.reveal,
.contact-card.reveal,
.contact-form.reveal {
  transform: translateX(30px);
}

.intro-media.reveal.is-visible,
.history-aside.reveal.is-visible,
.moriarty-media.reveal.is-visible,
.map-frame.reveal.is-visible,
.intro-copy.reveal.is-visible,
.history-content.reveal.is-visible,
.moriarty-copy.reveal.is-visible,
.contact-card.reveal.is-visible,
.contact-form.reveal.is-visible {
  transform: translateX(0);
}

.heritage-card:nth-child(2).is-visible:not(.reveal-complete),
.timeline-item:nth-child(2).is-visible:not(.reveal-complete),
.info-card:nth-child(2).is-visible:not(.reveal-complete),
.gallery-item:nth-child(2).is-visible:not(.reveal-complete),
.legal-card:nth-child(2).is-visible:not(.reveal-complete) { transition-delay: 80ms; }

.heritage-card:nth-child(3).is-visible:not(.reveal-complete),
.timeline-item:nth-child(3).is-visible:not(.reveal-complete),
.info-card:nth-child(3).is-visible:not(.reveal-complete),
.gallery-item:nth-child(3).is-visible:not(.reveal-complete),
.legal-card:nth-child(3).is-visible:not(.reveal-complete) { transition-delay: 160ms; }

.heritage-card:nth-child(4).is-visible:not(.reveal-complete),
.timeline-item:nth-child(4).is-visible:not(.reveal-complete),
.info-card:nth-child(4).is-visible:not(.reveal-complete),
.gallery-item:nth-child(4).is-visible:not(.reveal-complete) { transition-delay: 240ms; }

.gallery-item:nth-child(5).is-visible:not(.reveal-complete) { transition-delay: 320ms; }
.gallery-item:nth-child(6).is-visible:not(.reveal-complete) { transition-delay: 400ms; }

@media (max-width: 1100px) {
  .desktop-nav,
  .language-switcher:not(.mobile-languages):not(.footer-languages),
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-menu {
    display: block;
  }

  .section-grid,
  .ticket-shell,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .intro-media,
  .intro-copy,
  .history-content,
  .history-aside,
  .moriarty-copy,
  .moriarty-media {
    grid-column: auto;
  }

  .heritage-grid,
  .visit-grid,
  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-wide {
    grid-column: span 2;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  body {
    padding-bottom: 82px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

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

  .brand small {
    display: none;
  }

  .hero {
    height: clamp(590px, calc(100svh - 74px), 690px);
    min-height: 0;
  }

  .hero-content {
    padding: calc(var(--header-height) + 26px) var(--side) 205px;
  }

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

  .hero-subtitle {
    margin-top: 14px;
    font-size: clamp(22px, 6vw, 28px);
  }

  .hero-actions {
    display: none;
  }

  .hero-copy {
    display: none;
  }

  .hero-card {
    grid-template-columns: 1fr;
    bottom: 22px;
    gap: 9px;
    padding: 15px 18px;
    box-shadow: 0 18px 42px rgba(45, 28, 10, 0.16);
  }

  .hero-card span {
    margin-bottom: 2px;
    font-size: 13px;
  }

  .hero-card p {
    font-size: 15px;
    line-height: 1.28;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .intro-media {
    min-height: auto;
  }

  .image-frame-tall,
  .image-frame-tall img {
    width: 100%;
    min-height: 320px;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -40px auto 0;
    padding: 20px;
  }

  .timeline-item,
  .info-card {
    padding: 18px;
  }

  .info-card {
    min-height: 124px;
  }

  .heritage-grid,
  .visit-grid,
  .timeline,
  .ticket-type-grid,
  .ticket-summary,
  .legal-grid,
  .gallery-grid,
  .moriarty-facts,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item img {
    height: clamp(220px, 66vw, 285px);
    aspect-ratio: auto;
  }

  .gallery-item {
    grid-template-rows: clamp(220px, 66vw, 285px) auto;
  }

  .gallery-item figcaption {
    position: static;
    background: var(--white);
  }

  .moriarty-media {
    min-height: auto;
  }

  .moriarty-media .image-frame:first-child img,
  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }

  .moriarty-inset {
    position: relative;
    left: auto;
    bottom: auto;
    width: 82%;
    margin: -34px auto 0;
  }

  .contact-card,
  .contact-form,
  .ticket-panel {
    padding: 22px;
  }

  .ticket-panel {
    display: block;
  }

  .ticket-panel-head {
    display: grid;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .ticket-panel-head strong {
    text-align: left;
  }

  .ticket-points {
    margin-top: 18px;
  }

  .ticket-points p,
  .ticket-summary p {
    padding: 12px 14px;
  }

  .ticket-type {
    min-height: auto;
    grid-template-columns: 1fr minmax(116px, 0.72fr);
    grid-template-rows: auto;
    align-items: center;
  }

  .ticket-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-weekdays,
  .calendar-days {
    grid-template-columns: repeat(7, minmax(28px, 1fr));
    gap: 4px;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-image,
  .hero-content.is-visible > * {
    animation: none;
  }

  .hero-content > * {
    opacity: 1;
  }
}

/* Stripe Checkout confirmation */
.confirmation-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(185, 144, 79, 0.16), transparent 36%),
    var(--paper);
}

.confirmation-header {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 18px max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.9);
}

.confirmation-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(34px, 7vw, 90px) 20px;
}

.confirmation-card {
  width: min(100%, 780px);
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--gold-soft);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
}

.confirmation-card h1 {
  max-width: 680px;
  margin: 8px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 500;
  line-height: 1.03;
}

.confirmation-lead {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.confirmation-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 24px;
  border: 1px solid var(--gold-soft);
  background: var(--gold-soft);
}

.confirmation-details div {
  min-width: 0;
  padding: 14px 16px;
  background: var(--white);
}

.confirmation-details dt {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.confirmation-details dd {
  overflow-wrap: anywhere;
  margin: 5px 0 0;
  font-weight: 600;
}

.confirmation-keep {
  margin: 0 0 26px;
  padding: 15px 17px;
  border-left: 2px solid var(--gold);
  background: rgba(185, 144, 79, 0.09);
}

.confirmation-processing .section-kicker,
.confirmation-pending .section-kicker {
  color: #8a621e;
}

.confirmation-error .section-kicker {
  color: #8b3a31;
}

@media (max-width: 620px) {
  .confirmation-header {
    min-height: 78px;
  }

  .confirmation-main {
    min-height: calc(100vh - 78px);
    padding: 22px 14px;
  }

  .confirmation-card {
    padding: 24px 18px;
  }

  .confirmation-details {
    grid-template-columns: 1fr;
  }
}
