* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #222;
}

.site {
  background: #fff;
  min-height: 100vh;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 0.5px solid #ddd;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-left,
.nav-right {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  margin-right: 4px;
  align-self: center;
}
nav a,
.lang-btn {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #222;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-weight: 400;
  background: transparent;
  border: 0;
  padding: 0;
}
.nav-logo-link {
  line-height: 0;
  align-items: center;
}
.nav-logo-link img {
  display: block;
  width: auto;
  height: 36px;
}
.mobile-nav-toggle,
.mobile-nav-logo,
.mobile-nav-mail,
.mobile-drawer,
.mobile-drawer-backdrop {
  display: none;
}
.mobile-nav-toggle {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #222;
}
.mobile-nav-logo {
  font-size: 16px;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  line-height: 0;
}
.mobile-nav-logo img {
  display: block;
  width: auto;
  height: 40px;
}
.mobile-nav-mail {
  width: 24px;
  height: 24px;
  color: #222;
}
.mobile-nav-mail svg {
  width: 100%;
  height: 100%;
  display: block;
}
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.74);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 109;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(248px, 76vw);
  height: 100vh;
  background: #fff;
  border-right: 0.5px solid #ececec;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 110;
}
.mobile-drawer-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 48px 22px 28px;
}
.mobile-drawer-lang {
  margin-bottom: 30px;
}
.mobile-drawer-menu {
  display: grid;
  gap: 24px;
}
.mobile-drawer-menu a,
.mobile-drawer-social a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #222;
}
.mobile-drawer-menu a {
  font-size: 13px;
}
.mobile-drawer-menu a.is-active {
  color: #999;
}
.mobile-drawer-social {
  margin-top: auto;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.mobile-drawer-social a {
  font-size: 11px;
}
.mobile-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mobile-social-link svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}
.mobile-drawer-logo {
  display: inline-flex;
  align-self: flex-start;
  line-height: 0;
}
.mobile-drawer-logo img {
  display: block;
  width: auto;
  height: 28px;
}
body.is-mobile-drawer-open {
  overflow: hidden;
}
body.is-mobile-drawer-open .mobile-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}
body.is-mobile-drawer-open .mobile-drawer {
  transform: translateX(0);
}
.nav-left a.is-active {
  color: #999;
}
nav a:hover,
.lang-btn:hover {
  opacity: 0.4;
}

.page-hero {
  padding: 72px 40px 48px;
  border-bottom: 0.5px solid #eee;
}
.page-kicker {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 18px;
}
.page-title {
  max-width: 760px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.page-copy {
  max-width: 620px;
  font-size: 13px;
  line-height: 1.9;
  color: #777;
}

.contact-shell {
  padding: 46px 40px 56px;
  border-bottom: 0.5px solid #eee;
}
.contact-heading {
  max-width: 820px;
  margin-bottom: 42px;
}
.contact-title {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.contact-intro {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.85;
  color: #5d5d5d;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: 48px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 26px;
}
.contact-fields {
  display: grid;
  gap: 18px;
}
.contact-field {
  display: grid;
  gap: 10px;
}
.contact-label,
.contact-date-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a1a1a1;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0.5px solid #e6e6e6;
  border-radius: 18px;
  background: #faf9f6;
  padding: 15px 18px;
  font: inherit;
  font-size: 14px;
  color: #222;
  outline: none;
  appearance: none;
  transition: border-color 0.24s ease, background 0.24s ease;
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #cfcfcf;
  background: #fff;
}
.contact-field-schedule {
  gap: 12px;
}
.contact-schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-date-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 0.5px solid #ece9e2;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfaf7 0%, #f6f4ef 100%);
}
.contact-date-card input {
  background: #fff;
}
.contact-actions {
  display: grid;
  gap: 10px;
}
.contact-submit {
  width: fit-content;
  min-width: 180px;
  border: 0;
  border-radius: 999px;
  background: #161616;
  color: #fff;
  padding: 13px 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.contact-note {
  max-width: 520px;
  font-size: 12px;
  line-height: 1.75;
  color: #8a8a8a;
}
.contact-sidebar {
  display: grid;
  gap: 28px;
  padding-top: 8px;
}
.contact-sidebar-block {
  display: grid;
  gap: 10px;
}
.contact-side-copy {
  max-width: 280px;
  font-size: 13px;
  line-height: 1.85;
  color: #4f4f4f;
}

.about-intro {
  padding: 46px 40px 34px;
  border-bottom: 0.5px solid #eee;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}
.lang-btn {
  color: #b6b6b6;
  transform: translateY(8px);
}
.lang-btn.is-active {
  color: #222;
}
.about-lead {
  max-width: 1120px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: #222;
  text-transform: uppercase;
}
.about-copy {
  max-width: 760px;
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: -0.01em;
  color: #555;
}

/* HERO */
.hero {
  padding: 60px 40px 40px;
}
.breadcrumb {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb span {
  margin: 0 7px;
  color: #ccc;
}
.hero-desc {
  max-width: 480px;
  font-size: 12px;
  line-height: 1.9;
  color: #222;
  letter-spacing: 0.01em;
}

/* STRIP */
.strip {
  padding: 24px 40px 64px;
  overflow-x: auto;
  scrollbar-width: none;
}
.strip::-webkit-scrollbar {
  display: none;
}
.strip-inner {
  display: flex;
  gap: 18px;
  min-width: max-content;
}
.thumb-item {
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.thumb-img {
  width: 317px;
  height: 250px;
  object-fit: cover;
  display: block;
  image-rendering: auto;
  transition: transform 0.35s ease;
}
.thumb-item:hover .thumb-img {
  transform: scale(1.02);
}
.thumb-title {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  margin-top: 8px;
  max-width: 317px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* FOOTER BAR */
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  border-top: 0.5px solid #eee;
  margin-top: 20px;
}
.footer-bar span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
}
.footer-bar .divider {
  margin: 0 8px;
}
.footer-nums {
  display: flex;
  gap: 12px;
}
.dot {
  color: #ddd;
}

/* GRID */
.grid-section {
  padding: 2px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.standalone-grid {
  padding-top: 2px;
  padding-bottom: 2px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #f0ede8;
  border: 0;
  padding: 0;
  appearance: none;
}
.grid-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  image-rendering: auto;
  transition: transform 0.5s ease;
}
.grid-item:hover img {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.985);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open {
  display: flex;
}
.lightbox-stage {
  width: 100%;
  height: 100%;
  padding: 36px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.lightbox-meta {
  width: 100%;
  padding: 8px 40px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
}
.lightbox-mobile-stack {
  display: none;
}
.lightbox-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 820px) minmax(0, 1fr);
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.lightbox-current {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.34s cubic-bezier(0.23, 0.82, 0.32, 1), opacity 0.26s ease;
  will-change: transform, opacity;
}
.lightbox-image {
  max-width: min(100%, 920px);
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
  image-rendering: auto;
  transition: opacity 0.26s ease, transform 0.34s cubic-bezier(0.23, 0.82, 0.32, 1);
  will-change: transform, opacity;
}
.lightbox-peek {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: min(46vh, 430px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.36s cubic-bezier(0.23, 0.82, 0.32, 1), filter 0.24s ease;
  will-change: transform, opacity, filter;
}
.lightbox-peek.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-peek-prev {
  justify-content: flex-end;
  transform: translateX(-14px) scale(0.96);
}
.lightbox-peek-next {
  justify-content: flex-start;
  transform: translateX(14px) scale(0.96);
}
.lightbox-peek.is-visible.lightbox-peek-prev,
.lightbox-peek.is-visible.lightbox-peek-next {
  transform: translateX(0) scale(1);
}
.lightbox-peek-image {
  width: 124%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.82;
  image-rendering: auto;
  transition: transform 0.36s cubic-bezier(0.23, 0.82, 0.32, 1), opacity 0.26s ease;
  will-change: transform, opacity;
}
.lightbox-peek-prev .lightbox-peek-image {
  object-position: right center;
}
.lightbox-peek-next .lightbox-peek-image {
  object-position: left center;
}
.lightbox-peek-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s ease;
  will-change: opacity;
}
.lightbox-peek-prev .lightbox-peek-fade {
  background: none;
}
.lightbox-peek-next .lightbox-peek-fade {
  background: none;
}
.lightbox.is-animating .lightbox-peek-image {
  opacity: 0.82;
}
.lightbox.is-animating .lightbox-peek-fade {
  opacity: 0;
}
.lightbox.is-animating.is-moving-next .lightbox-current {
  animation: lightbox-current-next 360ms cubic-bezier(0.23, 0.82, 0.32, 1) both;
}
.lightbox.is-animating.is-moving-prev .lightbox-current {
  animation: lightbox-current-prev 360ms cubic-bezier(0.23, 0.82, 0.32, 1) both;
}
.lightbox.is-animating.is-moving-next .lightbox-peek-prev {
  animation: lightbox-peek-prev-in 360ms cubic-bezier(0.23, 0.82, 0.32, 1) both;
}
.lightbox.is-animating.is-moving-next .lightbox-peek-next {
  animation: lightbox-peek-next-reset 360ms cubic-bezier(0.23, 0.82, 0.32, 1) both;
}
.lightbox.is-animating.is-moving-prev .lightbox-peek-next {
  animation: lightbox-peek-next-in 360ms cubic-bezier(0.23, 0.82, 0.32, 1) both;
}
.lightbox.is-animating.is-moving-prev .lightbox-peek-prev {
  animation: lightbox-peek-prev-reset 360ms cubic-bezier(0.23, 0.82, 0.32, 1) both;
}
.lightbox.is-animating.is-moving-next .lightbox-peek-prev .lightbox-peek-image {
  animation: lightbox-peek-image-prev-in 360ms cubic-bezier(0.23, 0.82, 0.32, 1) both;
}
.lightbox.is-animating.is-moving-next .lightbox-peek-next .lightbox-peek-image {
  animation: lightbox-peek-image-next-reset 360ms cubic-bezier(0.23, 0.82, 0.32, 1) both;
}
.lightbox.is-animating.is-moving-prev .lightbox-peek-next .lightbox-peek-image {
  animation: lightbox-peek-image-next-in 360ms cubic-bezier(0.23, 0.82, 0.32, 1) both;
}
.lightbox.is-animating.is-moving-prev .lightbox-peek-prev .lightbox-peek-image {
  animation: lightbox-peek-image-prev-reset 360ms cubic-bezier(0.23, 0.82, 0.32, 1) both;
}

@keyframes lightbox-current-next {
  0% { transform: translateX(54px) scale(0.992); opacity: 0.58; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes lightbox-current-prev {
  0% { transform: translateX(-54px) scale(0.992); opacity: 0.58; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes lightbox-peek-prev-in {
  0% { transform: translateX(54px) scale(0.985); opacity: 0.18; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes lightbox-peek-next-in {
  0% { transform: translateX(-54px) scale(0.985); opacity: 0.18; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes lightbox-peek-prev-reset {
  0% { transform: translateX(-12px) scale(0.99); opacity: 0.82; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes lightbox-peek-next-reset {
  0% { transform: translateX(12px) scale(0.99); opacity: 0.82; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes lightbox-peek-image-prev-in {
  0% { transform: translateX(6%); opacity: 0.36; }
  100% { transform: translateX(0); opacity: 0.82; }
}

@keyframes lightbox-peek-image-next-in {
  0% { transform: translateX(-6%); opacity: 0.36; }
  100% { transform: translateX(0); opacity: 0.82; }
}

@keyframes lightbox-peek-image-prev-reset {
  0% { transform: translateX(-2%); opacity: 0.86; }
  100% { transform: translateX(0); opacity: 0.82; }
}

@keyframes lightbox-peek-image-next-reset {
  0% { transform: translateX(2%); opacity: 0.86; }
  100% { transform: translateX(0); opacity: 0.82; }
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: transparent;
  color: #222;
  cursor: pointer;
  z-index: 4;
}
.lightbox-close {
  top: 24px;
  right: 40px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  color: transparent;
}
.lightbox-prev {
  left: 12px;
}
.lightbox-next {
  right: 12px;
}

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

/* INFO SECTION */
.info-section {
  padding: 40px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-top: 0.5px solid #eee;
}
.main-info-section {
  padding-top: 34px;
  padding-bottom: 42px;
}
.info-section-page {
  border-top: 0;
  padding-top: 36px;
}
.info-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 8px;
}
.info-val {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #333;
  line-height: 1.7;
}
.info-val a {
  color: inherit;
  text-decoration: none;
}
.info-val a:hover {
  opacity: 0.55;
}

.about-story,
.contact-grid {
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-story {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0.5px solid #eee;
  padding-top: 40px;
}
.story-block,
.contact-card {
  padding: 24px 0 0;
}
.story-copy {
  max-width: 480px;
  font-size: 14px;
  line-height: 1.95;
  color: #444;
}

/* BRAND FOOTER */
.brand-footer {
  padding: 30px 40px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 0.5px solid #eee;
}
.main-brand-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 184px;
  align-items: start;
  padding: 44px 40px 28px;
}
.brand-name {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1;
}
.brand-logo-image {
  display: block;
  width: auto;
  height: 104px;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  text-align: right;
  line-height: 2;
}
.main-brand-footer .brand-name {
  align-self: start;
  transform: none;
  margin: 0;
}
.main-brand-footer .brand-sub {
  align-self: start;
  line-height: 1.6;
  transform: none;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  nav {
    padding: 14px 20px 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .mobile-nav-toggle,
  .mobile-nav-logo,
  .mobile-nav-mail,
  .mobile-drawer,
  .mobile-drawer-backdrop {
    display: flex;
  }
  nav {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    align-items: center;
    gap: 12px;
  }
  .mobile-nav-logo {
    justify-self: center;
  }
  .mobile-nav-logo img {
    height: 32px;
  }
  .mobile-nav-mail {
    justify-self: end;
  }
  .nav-left,
  .nav-right {
    display: none;
  }
  .page-hero {
    padding: 44px 20px 32px;
  }
  .contact-shell {
    padding: 28px 20px 34px;
  }
  .contact-title {
    font-size: 26px;
    margin-bottom: 14px;
  }
  .contact-intro {
    font-size: 13px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-schedule {
    grid-template-columns: 1fr;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 13px;
  }
  .about-intro {
    padding: 28px 20px 24px;
  }
  .lang-switch {
    margin-bottom: 20px;
  }
  .about-lead {
    font-size: 26px;
    line-height: 1.24;
  }
  .about-copy {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.82;
  }
  .page-title {
    font-size: 26px;
  }
  .hero {
    padding: 40px 20px 30px;
  }
  .breadcrumb {
    margin-bottom: 18px;
    gap: 6px;
  }
  .hero-desc {
    max-width: none;
    font-size: 13px;
    line-height: 1.75;
  }
  .strip {
    padding: 18px 20px 32px;
    overflow: visible;
  }
  .strip-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    min-width: 0;
  }
  .thumb-item {
    min-width: 0;
  }
  .thumb-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .thumb-title {
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.45;
  }
  .footer-bar {
    padding: 14px 20px;
  }
  .grid-section {
    grid-template-columns: 1fr;
    padding: 2px 20px 40px;
  }
  .standalone-grid {
    padding: 2px 2px 24px;
  }
  .lightbox-stage {
    padding: 64px 0 24px;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .lightbox-meta {
    padding: 0 20px;
    font-size: 10px;
    gap: 12px;
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 2;
    background: transparent;
    pointer-events: none;
  }
  .lightbox-mobile-stack {
    width: 100%;
    display: grid;
    gap: 14px;
    padding: 0 20px 20px;
  }
  .lightbox-mobile-stack img {
    width: 100%;
    height: auto;
    display: block;
  }
  .lightbox-carousel {
    display: none;
  }
  .lightbox-peek {
    height: min(34vh, 250px);
  }
  .lightbox-peek-image {
    width: 152%;
  }
  .lightbox-image {
    max-height: calc(100vh - 150px);
  }
  .lightbox-close {
    top: 18px;
    right: 20px;
    z-index: 3;
  }
  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
  .info-section {
    grid-template-columns: 1fr;
    padding: 30px 20px 40px;
    gap: 24px;
  }
  .main-info-section {
    padding-top: 24px;
    padding-bottom: 28px;
  }
  .about-story,
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
  }
  .about-story {
    padding-top: 28px;
  }
  .brand-footer {
    padding: 20px 20px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .main-brand-footer {
    min-height: auto;
    align-items: flex-start;
  }
  .brand-name {
    font-size: 36px;
  }
  .brand-logo-image {
    height: 72px;
  }
  .brand-sub {
    text-align: left;
  }
}
