:root {
  --black: #000000;
  --charcoal: #1a1a1a;
  --dropdown-bg: #2b2b2b;
  --gold: #c5a059;
  --gold-muted: #a8894f;
  --white: #ffffff;
  --scandic-red: #e20613;
  --btn-bg: #3d3429;
  --text-muted: #cccccc;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  padding-top: var(--header-height, 88px);
}

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

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

.site-header {
  background: var(--black);
  border-bottom: 1px solid #1f1f1f;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.65rem 1.5rem 0.55rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 2rem;
  align-items: start;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-logo {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--scandic-red);
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-tagline {
  color: var(--gold);
  font-size: 0.78rem;
}

.header-divider {
  width: 100%;
  height: 1px;
  background: #333;
}

.header-inner--contact {
  padding-top: 0.35rem;
  padding-bottom: 0.55rem;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-contact a {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  transition: color 0.2s;
}

.header-contact a:hover {
  color: var(--white);
}

.header-contact .divider {
  color: #444;
  font-size: 0.75rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.15rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--gold);
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-item:focus-within > .nav-link {
  color: var(--white);
}

.nav-link .chevron {
  font-size: 0.65rem;
  opacity: 0.8;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: var(--dropdown-bg);
  border: 1px solid #3a3a3a;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--gold);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.dropdown a:hover {
  background: #3a3a3a;
  color: var(--white);
}

.btn-book {
  background: var(--btn-bg);
  color: var(--white);
  border: none;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-book:hover {
  background: #52483b;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid #333;
  color: var(--gold);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

main {
  min-height: 50vh;
}

.page-hero {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, #111 0%, var(--black) 100%);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--gold);
}

.page-hero p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--text-muted);
}

.page-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-content h2 {
  color: var(--gold);
  font-weight: 500;
  margin-top: 2rem;
}

.page-content p {
  color: var(--text-muted);
}

.placeholder-note {
  border: 1px dashed #333;
  padding: 2rem;
  text-align: center;
  color: #888;
  margin-top: 2rem;
}

/* Hero image slider */
.hero-slider {
  position: relative;
  background: #111;
  overflow: hidden;
}

.hero-slider-viewport {
  position: relative;
  aspect-ratio: 21 / 9;
  max-height: 520px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.hero-slider-overlay h1 {
  margin: 0;
  padding: 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  color: var(--gold);
  text-align: center;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.hero-slider-intro {
  text-align: center;
  padding: 1.25rem 2rem;
  max-width: min(680px, calc(100% - 2rem));
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 4px;
}

.hero-slider-intro h1 {
  padding: 0;
}

.hero-slider-intro p {
  margin: 0.75rem auto 0;
  max-width: 640px;
  color: #ddd;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero-slider-prev,
.hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--gold);
}

.hero-slider-prev {
  left: 1rem;
}

.hero-slider-next {
  right: 1rem;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.hero-slider-dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.hero-slider-dot.is-active,
.hero-slider-dot:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* Content sections */
.page-content--wide {
  max-width: 760px;
}

.page-hero--compact {
  padding: 2rem 1.5rem 1.5rem;
}

.page-hero--compact h1 {
  margin: 0;
}

.menu-viewer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.menu-frame {
  width: 100%;
  height: calc(100vh - var(--header-height, 88px) - 10rem);
  min-height: 520px;
  border: 1px solid #333;
  background: #111;
}

.menu-pdf-pages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-pdf-page {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #333;
  background: #fff;
}

.menu-loading,
.menu-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.menu-download {
  margin: 1rem 0 0;
  text-align: right;
  font-size: 0.9rem;
}

.page-hero-image {
  margin: 0;
  max-height: 420px;
  overflow: hidden;
  background: #111;
}

.page-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.page-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--gold);
}

.room-nav {
  background: var(--charcoal);
  border-bottom: 1px solid #333;
}

.room-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.room-nav-inner::-webkit-scrollbar {
  display: none;
}

.room-nav-link {
  flex-shrink: 0;
  padding: 0.85rem 1.1rem;
  color: var(--gold);
  font-size: 0.82rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.room-nav-link:hover {
  color: var(--white);
}

.room-nav-link.is-active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.content-section {
  margin-bottom: 2.5rem;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 500;
}

.content-section p {
  margin: 0 0 1rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.content-cta {
  margin-top: 1.5rem;
}

.content-cta--top {
  margin-top: 0;
  margin-bottom: 2rem;
}

.content-cta--center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.booking-section {
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
}

.booking-form {
  margin-top: 1.5rem;
}

.booking-field,
.booking-form fieldset.booking-field {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
}

.booking-form fieldset.booking-field legend,
.booking-field > label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.95rem;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="number"],
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem;
  background: #111;
  border: 1px solid #333;
  color: var(--white);
  font: inherit;
}

.booking-form .flatpickr-input[readonly],
.booking-form .flatpickr-input[readonly] + input,
.booking-form input.flatpickr-input,
.booking-form input.flatpickr-input.form-control {
  width: 100%;
  padding: 0.75rem;
  background: #111;
  border: 1px solid #333;
  color: var(--white);
  font: inherit;
  cursor: pointer;
}

.booking-submit-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 3rem;
}

.booking-loader {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.booking-spinner {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid #444;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: booking-spin 0.8s linear infinite;
  flex-shrink: 0;
}

.booking-form textarea {
  resize: vertical;
  min-height: 140px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(197, 160, 89, 0.45);
  outline-offset: 1px;
}

.booking-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.booking-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.booking-radio input {
  accent-color: var(--gold);
}

.booking-help {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.booking-field-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-message {
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.booking-message.error {
  background: #3a1515;
  color: #ffb3b3;
}

.booking-message.success {
  background: #153a1f;
  color: #b3ffbf;
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

.booking-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .booking-field-grid {
    grid-template-columns: 1fr;
  }
}

.hero-slider--single .hero-slider-prev,
.hero-slider--single .hero-slider-next,
.hero-slider--single .hero-slider-dots {
  display: none;
}

/* History page */
.history-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.history-intro-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.history-founder {
  margin: 0;
  padding: 0.75rem;
  background: #111;
  border: 1px solid #333;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

.history-founder img {
  display: block;
  width: 126px;
  height: auto;
  filter: sepia(0.25);
}

.history-founder figcaption {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--gold-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

.history-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.history-intro-text p:last-child {
  margin-bottom: 0;
}

.history-banner {
  margin: 3rem calc(-1 * min(1.5rem, 5vw));
  overflow: hidden;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.history-banner img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.history-body {
  max-width: 760px;
}

.history-body p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.history-body p:last-child {
  margin-bottom: 0;
}

.history-drawing {
  float: right;
  width: min(240px, 42%);
  margin: 0.25rem 0 1.25rem 2rem;
  padding: 0.65rem;
  background: #f4ecd8;
  border: 1px solid #5c4a32;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.history-drawing-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}

.history-drawing img {
  width: 100%;
  display: block;
}

.history-drawing-trigger:hover img,
.history-drawing-trigger:focus-visible img {
  opacity: 0.92;
}

.history-drawing-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.history-drawing figcaption {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: #5c4a32;
  text-align: center;
  font-style: italic;
}

body.modal-open {
  overflow: hidden;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.image-modal[hidden] {
  display: none;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.image-modal-dialog {
  position: relative;
  z-index: 1;
  max-width: min(960px, 100%);
  max-height: calc(100vh - 3rem);
}

.image-modal-image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 3rem);
  width: auto;
  height: auto;
  margin: 0 auto;
  background: #f4ecd8;
  border: 1px solid #5c4a32;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.image-modal-close {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  transform: translateY(-100%);
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #444;
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.image-modal-close:hover,
.image-modal-close:focus-visible {
  background: rgba(0, 0, 0, 0.95);
  border-color: var(--gold);
  outline: none;
}

.content-link {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.content-link:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.content-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold-muted);
  background: var(--charcoal);
  color: var(--text-muted);
}

/* Homepage Instagram feed */
.instagram-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--gold);
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
}

.instagram-feed {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.instagram-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--charcoal);
  border: 1px solid #2a2a2a;
  overflow: hidden;
}

.instagram-card:nth-child(even) .instagram-card-media {
  order: 2;
}

.instagram-card:nth-child(even) .instagram-card-body {
  order: 1;
}

.instagram-card-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}

.instagram-card-media img,
.instagram-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-card-body {
  padding: 2rem;
}

.instagram-card-date {
  font-size: 0.8rem;
  color: var(--gold-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.instagram-card-caption {
  color: var(--text-muted);
  white-space: pre-line;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.instagram-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.instagram-card-link:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.instagram-loading,
.instagram-error,
.instagram-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.instagram-error {
  color: #e88;
}

.instagram-follow {
  text-align: center;
  margin-top: 3rem;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #405de6;
  color: var(--white);
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-instagram:hover {
  background: #364fc7;
}

/* Footer */
.site-footer {
  background: var(--black);
  border-top: 1px solid #1f1f1f;
  padding: 2.5rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem 3rem;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 190px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-nav-icon {
  display: inline-flex;
  opacity: 0.85;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-instagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.footer-instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 56px);
  gap: 0.35rem;
}

.footer-instagram-item {
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: #111;
  position: relative;
  border: 1px solid #2a2a2a;
}

.footer-instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, opacity 0.3s;
}

.footer-instagram-item:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

.footer-instagram-item .play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 0.85rem;
  pointer-events: none;
}

.btn-instagram--footer {
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 1.75rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid #1f1f1f;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .header-right {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid #222;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    display: none;
    z-index: 101;
  }

  .header-right.is-open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid #1a1a1a;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    background: #111;
    padding-left: 1rem;
    display: none;
  }

  .nav-item.is-open .dropdown {
    display: block;
  }

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

  .instagram-card:nth-child(even) .instagram-card-media,
  .instagram-card:nth-child(even) .instagram-card-body {
    order: unset;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-nav-icon {
    display: none;
  }

  .footer-instagram {
    align-items: center;
  }

  .footer-bottom {
    margin-top: 1.5rem;
  }

  .hero-slider-viewport {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }

  .hero-slider-prev,
  .hero-slider-next {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.5rem;
  }

  .hero-slider-prev {
    left: 0.5rem;
  }

  .hero-slider-next {
    right: 0.5rem;
  }

  .page-hero-image img {
    height: 240px;
  }

  .history-intro-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .history-founder {
    transform: none;
  }

  .history-banner {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .history-drawing {
    float: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1.5rem;
  }

  .history-body {
    text-align: left;
  }
}
