:root {
  --color-white: #ffffff;
  --color-ivory: #f8f6f1;
  --color-warm-gray: #edeae4;
  --color-text: #151515;
  --color-muted: #73706b;
  --color-line: #e4e0d9;
  --color-burgundy: #621f2a;
  --color-success: #38634d;
  --color-error: #a93b35;
  --color-charcoal: #24211f;
  --color-moss: #59664e;
  --font-sans: "Noto Sans KR", "Malgun Gothic", Dotum, Arial, sans-serif;
  --content-max: 1280px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(98, 31, 42, 0.34);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--color-burgundy);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--color-white);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--content-max), calc(100% - 48px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  min-width: 94px;
  font-weight: 700;
}

.logo span {
  font-size: 22px;
}

.logo small {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  color: currentColor;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
}

.desktop-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.mobile-nav a:hover::after {
  transform: scaleX(1);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--color-burgundy);
  color: var(--color-white);
  border-color: var(--color-burgundy);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.68);
}

.button-quiet {
  min-height: 40px;
  padding: 0 16px;
  color: currentColor;
  border-color: currentColor;
  background: transparent;
}

.site-header.is-scrolled .button-quiet,
.site-header.is-open .button-quiet {
  color: var(--color-burgundy);
  border-color: rgba(98, 31, 42, 0.42);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: currentColor;
  place-items: center;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 700px;
  height: 88svh;
  max-height: 820px;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 8, 7, 0.64) 0%, rgba(10, 8, 7, 0.3) 42%, rgba(10, 8, 7, 0.05) 100%);
}

.hero-content {
  width: min(var(--content-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 92px;
  color: var(--color-white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-burgundy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 48px;
  line-height: 1.06;
}

.hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  padding: 116px 0;
}

.section-grid,
.reservation-layout {
  width: min(var(--content-max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}

.section-grid-balanced {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.section-copy h2,
.section-heading h2,
.final-cta h2,
.reservation-intro h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.22;
}

.section-copy p,
.section-heading p,
.reservation-intro p,
.step-card p,
.trust-grid p,
.product-card p {
  color: var(--color-muted);
}

.lead {
  font-size: 19px;
  color: var(--color-text) !important;
}

.editorial-image,
.wide-image {
  margin: 0;
}

.editorial-image img,
.wide-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.wide-image img {
  aspect-ratio: 5 / 4;
}

.editorial-image figcaption {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 13px;
}

.collection-section,
.experience-section,
.store-section,
.policy-page {
  background: var(--color-ivory);
}

.section-heading {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto 52px;
  text-align: center;
}

.step-grid,
.trust-grid {
  width: min(var(--content-max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.collection-slider {
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
}

.review-slider {
  width: min(var(--content-max), calc(100% - 48px));
  margin: 0 auto;
}

.collection-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 16px;
}

.slider-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-burgundy);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-burgundy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.slider-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.collection-grid,
.review-grid {
  display: grid;
  grid-auto-columns: calc((100% - 80px) / 5);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--color-burgundy) var(--color-line);
  scrollbar-width: thin;
}

.review-grid {
  grid-auto-columns: calc((100% - 60px) / 4);
}

.collection-grid::-webkit-scrollbar,
.review-grid::-webkit-scrollbar {
  height: 8px;
}

.collection-grid::-webkit-scrollbar-track,
.review-grid::-webkit-scrollbar-track {
  background: var(--color-line);
  border-radius: 999px;
}

.collection-grid::-webkit-scrollbar-thumb,
.review-grid::-webkit-scrollbar-thumb {
  background: var(--color-burgundy);
  border-radius: 999px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
}

.product-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--color-warm-gray);
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.product-content h3,
.step-card h3,
.trust-grid h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.material {
  margin: 0;
  color: var(--color-moss) !important;
  font-size: 12px;
  font-weight: 800;
}

.text-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 8px;
  padding: 0;
  color: var(--color-burgundy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font-weight: 800;
}

.product-card .text-button {
  align-self: flex-start;
  margin-top: auto;
}

.instagram-section {
  overflow: hidden;
  background: var(--color-ivory);
}

.instagram-gallery-shell {
  width: 100%;
  margin: 0 auto;
}

.instagram-controls {
  display: none;
}

.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.instagram-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--color-warm-gray);
}

.instagram-card img,
.instagram-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.instagram-card:hover img,
.instagram-card:hover video {
  filter: brightness(0.88);
  transform: scale(1.035);
}

.instagram-media-count {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(18, 14, 12, 0.64);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 800;
}

.instagram-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 56px 20px;
  color: var(--color-muted);
  text-align: center;
}

.instagram-actions {
  display: flex;
  justify-content: center;
  margin: 28px 0 0;
}

.instagram-more-button {
  min-width: 180px;
  border-color: var(--color-burgundy);
  background: var(--color-white);
  color: var(--color-burgundy);
}

.instagram-more-button[hidden] {
  display: none;
}

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

.review-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-charcoal);
  scroll-snap-align: start;
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease, transform 420ms ease;
}

.review-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--color-white);
  background: linear-gradient(180deg, rgba(15, 12, 10, 0.08) 0%, rgba(15, 12, 10, 0.72) 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.review-overlay h3 {
  margin: 8px 0 10px;
  font-size: 21px;
  line-height: 1.3;
}

.review-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.review-overlay .material {
  color: rgba(255, 255, 255, 0.78) !important;
}

.review-card:hover img,
.review-card:focus img,
.review-card.is-review-open img {
  filter: brightness(0.48);
  transform: scale(1.04);
}

.review-card:hover .review-overlay,
.review-card:focus .review-overlay,
.review-card.is-review-open .review-overlay {
  opacity: 1;
  transform: translateY(0);
}

.craft-section {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-white) 64%, var(--color-ivory) 64%, var(--color-ivory) 100%);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-burgundy);
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
}

.step-image {
  margin: 0;
}

.step-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--color-warm-gray);
}

.step-card-content {
  flex: 1;
  padding: 26px;
}

.step-card span {
  color: var(--color-burgundy);
  font-size: 14px;
  font-weight: 800;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid article {
  display: flex;
  flex-direction: column;
  padding: 34px 0 0;
  border-top: 1px solid var(--color-line);
}

.trust-image {
  margin: 24px 0 0;
}

.trust-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: var(--color-warm-gray);
}

.store-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
}

.store-list div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
}

.store-list dt {
  color: var(--color-burgundy);
  font-weight: 800;
}

.store-list dd {
  margin: 0;
  color: var(--color-muted);
}

.store-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 460px;
  margin: 26px 0 0;
}

.store-photo {
  margin: 0;
}

.store-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: var(--color-warm-gray);
}

.map-panel {
  min-height: 430px;
  background: var(--color-warm-gray);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: grayscale(1) contrast(0.9);
}

.final-cta {
  min-height: 430px;
  padding: 88px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background-position: center;
  background-size: cover;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.reservation-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  align-items: start;
}

.reservation-intro {
  position: sticky;
  top: 112px;
}

.selected-product-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--color-burgundy);
  background: var(--color-ivory);
  color: var(--color-text) !important;
}

.reservation-form {
  display: grid;
  gap: 20px;
  padding: 36px;
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

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

.form-field label,
.checkbox-label {
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-text);
  min-height: 50px;
  padding: 12px 14px;
}

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

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--color-error);
}

.field-help,
.field-error {
  margin: 0;
  font-size: 13px;
}

.field-help {
  color: var(--color-muted);
}

.field-error {
  min-height: 18px;
  color: var(--color-error);
}

.privacy-box {
  padding: 20px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.checkbox-label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--color-burgundy);
}

.privacy-box p:not(.field-error) {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

.submit-button {
  width: 100%;
  min-height: 54px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  color: var(--color-success);
}

.form-status.is-error {
  color: var(--color-error);
}

.form-status strong {
  display: block;
  color: inherit;
}

.site-footer {
  width: min(var(--content-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 56px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 14px;
}

.site-footer strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 8px;
  font-size: 18px;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
  color: var(--color-burgundy);
}

.policy-wrap {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 120px;
}

.policy-wrap h1 {
  margin: 30px 0;
  font-size: 48px;
  line-height: 1.2;
}

.policy-wrap section {
  padding: 28px 0;
  border-top: 1px solid var(--color-line);
}

.policy-wrap h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 76px;
  }
}

@media (max-width: 1180px) {
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-grid,
  .review-grid {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .section-grid,
  .reservation-layout {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-text);
    border-bottom: 1px solid var(--color-line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(-100% - var(--header-height) - 12px));
    transition: opacity 160ms ease, transform 200ms ease, visibility 200ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section-grid,
  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .reservation-intro {
    position: static;
  }

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

@media (max-width: 767px) {
  :root {
    --header-height: 66px;
  }

  .header-inner,
  .hero-content,
  .section-grid,
  .reservation-layout,
  .collection-slider,
  .review-slider,
  .instagram-gallery-shell,
  .step-grid,
  .trust-grid,
  .section-heading,
  .site-footer,
  .policy-wrap {
    width: min(100% - 40px, var(--content-max));
  }

  .header-inner {
    gap: 12px;
  }

  .logo span {
    font-size: 20px;
  }

  .logo small {
    display: none;
  }

  .button-quiet {
    min-width: 88px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero {
    min-height: 650px;
    height: 86svh;
  }

  .hero-image {
    object-position: left center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(10, 8, 7, 0.2) 0%, rgba(10, 8, 7, 0.42) 36%, rgba(10, 8, 7, 0.76) 100%);
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-cta,
  .site-footer,
  .site-footer nav {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 80px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .final-cta h2,
  .reservation-intro h2,
  .policy-wrap h1 {
    font-size: 32px;
  }

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

  .collection-grid {
    grid-auto-columns: 100%;
  }

  .review-grid {
    grid-auto-columns: minmax(250px, 86%);
  }

  .instagram-controls {
    display: flex;
  }

  .instagram-gallery {
    grid-template-columns: none;
    grid-auto-columns: 100%;
    grid-auto-flow: column;
    gap: 20px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-behavior: smooth;
    scroll-padding-left: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--color-burgundy) var(--color-line);
    scrollbar-width: thin;
  }

  .instagram-gallery::-webkit-scrollbar {
    height: 8px;
  }

  .instagram-gallery::-webkit-scrollbar-track {
    background: var(--color-line);
    border-radius: 999px;
  }

  .instagram-gallery::-webkit-scrollbar-thumb {
    background: var(--color-burgundy);
    border-radius: 999px;
  }

  .instagram-card {
    border-radius: 8px;
    scroll-snap-align: start;
  }

  .instagram-actions {
    display: none;
  }

  .product-content,
  .step-card-content,
  .reservation-form {
    padding: 24px;
  }

  .store-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 320px;
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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