/* ============================================
   MEBLE STRUSZCZYK — style.css
   Paleta: ciepły drewniany
   ============================================ */

:root {
  --c-dark:    #1A1F3C;
  --c-wood:    #7D1F2E;
  --c-light:   #E8A09A;
  --c-cream:   #F0F4FF;
  --c-bg:      #FAFBFF;
  --c-white:   #FFFFFF;
  --c-gray:    #6B7280;
  --c-border:  #DDE3F0;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;

  --max-w: 1140px;
  --radius: 4px;
  --transition: 0.25s ease;
}
/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--c-bg); color: var(--c-dark); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header--light .section-title,
.section-header--light .section-desc { color: var(--c-cream); }
.section-header--light .section-pretitle { color: var(--c-light); }

.section-pretitle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-light);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--c-gray);
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--c-wood);
  color: var(--c-cream);
  border-color: var(--c-wood);
}
.btn--primary:hover {
  background: var(--c-dark);
  border-color: var(--c-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(245,234,216,0.5);
}
.btn--ghost:hover {
  background: rgba(245,234,216,0.1);
  border-color: var(--c-cream);
}

.btn--full { width: 100%; text-align: center; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--c-bg);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; flex-direction: column; gap: 1px; }
.nav__logo-main {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-cream);
  transition: color var(--transition);
  line-height: 1;
}
.nav.scrolled .nav__logo-main { color: var(--c-dark); }
.nav__logo-sub {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-light);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(245,234,216,0.85);
  transition: color var(--transition);
}
.nav.scrolled .nav__links a { color: var(--c-dark); }
.nav__links a:hover { color: var(--c-light); }
.nav__cta {
  background: var(--c-wood) !important;
  color: var(--c-cream) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 13px !important;
}
.nav__cta:hover { background: var(--c-dark) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-cream);
  transition: background var(--transition);
}
.nav.scrolled .nav__burger span { background: var(--c-dark); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--c-bg);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--c-border);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 0;
  font-size: 16px;
  color: var(--c-dark);
  border-bottom: 1px solid var(--c-border);
}
.nav__mobile a:last-child { border-bottom: none; color: var(--c-wood); font-weight: 700; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: #0F2D5E;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(192,57,43,0.04) 2px,
    rgba(192,57,43,0.04) 60px
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 24px 60px;
}
.hero__pretitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-light);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 600;
  color: var(--c-cream);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--c-light);
}
.hero__sub {
  font-size: 18px;
  color: rgba(245,234,216,0.7);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--c-light));
  margin: 0 auto;
  animation: scrollline 1.8s ease-in-out infinite;
}
@keyframes scrollline {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ---- TRUST ---- */
.trust {
  background: #F0F4FF;
  padding: 40px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--c-border);
}
.trust__item:last-child { border-right: none; }
.trust__item strong {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.trust__item span {
  font-size: 13px;
  color: var(--c-gray);
  font-weight: 300;
}

/* ---- OFERTA ---- */
.oferta {
  padding: 96px 0;
  background: var(--c-bg);
}
.oferta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.oferta__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.oferta__card:hover {
  border-color: var(--c-light);
  transform: translateY(-3px);
}
.oferta__icon {
  width: 48px;
  height: 48px;
  color: var(--c-wood);
  margin-bottom: 20px;
}
.oferta__icon svg { width: 100%; height: 100%; }
.oferta__card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 12px;
}
.oferta__card p {
  font-size: 15px;
  color: var(--c-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.oferta__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-wood);
  letter-spacing: .02em;
  transition: color var(--transition);
}
.oferta__link:hover { color: var(--c-dark); }

/* ---- REALIZACJE ---- */
.realizacje {
  padding: 96px 0;
  background: #0F2D5E;
}
.realizacje__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.realizacje__item {
  border-radius: 6px;
  overflow: hidden;
  background: var(--c-wood);
}
.realizacje__item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.realizacje__placeholder {
  background: rgba(124,92,62,0.3);
  border: 1px dashed rgba(176,141,106,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--c-light);
  font-size: 13px;
  font-style: italic;
}
.realizacje__item--large .realizacje__placeholder { min-height: 360px; }
.realizacje__caption {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.realizacje__caption strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-cream);
}
.realizacje__caption span {
  font-size: 12px;
  color: var(--c-light);
}

/* ---- PROCES ---- */
.proces {
  padding: 96px 0;
  background: var(--c-cream);
}
.proces__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.proces__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: var(--c-border);
  z-index: 0;
}
.proces__step { position: relative; z-index: 1; }
.proces__num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 600;
  color: var(--c-wood);
  line-height: 1;
  margin-bottom: 16px;
  background: var(--c-cream);
  display: inline-block;
  padding-right: 8px;
}
.proces__body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 10px;
}
.proces__body p {
  font-size: 14px;
  color: var(--c-gray);
  line-height: 1.65;
}

/* ---- OPINIE ---- */
.opinie {
  padding: 96px 0;
  background: var(--c-bg);
}
.opinie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.opinie__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 32px 28px;
}
.opinie__stars {
  color: var(--c-wood);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.opinie__card p {
  font-size: 15px;
  color: var(--c-gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.opinie__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}
.opinie__author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-dark);
}
.opinie__author span {
  font-size: 12px;
  color: var(--c-light);
}

/* ---- O NAS ---- */
.o-nas {
  padding: 96px 0;
  background: var(--c-cream);
}
.o-nas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.o-nas__placeholder {
  background: rgba(124,92,62,0.15);
  border: 1px dashed var(--c-light);
  border-radius: 8px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-light);
  font-size: 14px;
  font-style: italic;
}
.o-nas__text .section-title { text-align: left; margin-bottom: 20px; }
.o-nas__text p {
  font-size: 16px;
  color: var(--c-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.o-nas__list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.o-nas__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--c-dark);
}
.o-nas__list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-wood);
  flex-shrink: 0;
}

/* ---- KONTAKT ---- */
.kontakt {
  padding: 96px 0;
  background: var(--c-bg);
}
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.kontakt__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.kontakt__icon {
  width: 40px;
  height: 40px;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-wood);
}
.kontakt__icon svg { width: 18px; height: 18px; }
.kontakt__item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kontakt__item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.kontakt__item span {
  font-size: 15px;
  color: var(--c-wood);
  font-weight: 400;
}
.kontakt__item small {
  font-size: 12px;
  color: var(--c-gray);
}
.kontakt__hours {
  background: var(--c-cream);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--c-border);
}
.kontakt__hours strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.kontakt__hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  font-size: 14px;
}
.kontakt__hours-grid span:nth-child(odd) { color: var(--c-gray); }
.kontakt__hours-grid span:nth-child(even) { color: var(--c-dark); font-weight: 700; }

/* ---- FORMULARZ ---- */
.kontakt__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-dark);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--c-wood);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--c-gray); }
.form__note {
  font-size: 12px;
  color: var(--c-gray);
  margin-top: -4px;
}
.form__success {
  display: none;
  padding: 14px 18px;
  background: #EAF3DE;
  border: 1px solid #97C459;
  border-radius: var(--radius);
  color: #3B6D11;
  font-size: 14px;
  text-align: center;
}
.form__success.show { display: block; }

/* ---- STOPKA ---- */
.footer {
  background: var(--c-dark);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,234,216,0.1);
}
.footer__brand .nav__logo-main { color: var(--c-cream); font-family: var(--font-head); font-size: 20px; display: block; margin-bottom: 12px; }
.footer__brand p { font-size: 14px; color: rgba(245,234,216,0.5); line-height: 1.65; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links strong { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--c-light); margin-bottom: 4px; }
.footer__links a { font-size: 14px; color: rgba(245,234,216,0.6); transition: color var(--transition); }
.footer__links a:hover { color: var(--c-cream); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact strong { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--c-light); margin-bottom: 4px; }
.footer__contact span { font-size: 14px; color: rgba(245,234,216,0.6); }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(245,234,216,0.3);
}
.footer__bottom a { color: var(--c-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2) { border-right: none; }

  .oferta__grid { grid-template-columns: repeat(2, 1fr); }
  .realizacje__grid { grid-template-columns: 1fr 1fr; }
  .realizacje__item--large { grid-column: span 2; grid-row: span 1; }
  .proces__steps { grid-template-columns: repeat(2, 1fr); }
  .proces__steps::before { display: none; }
  .opinie__grid { grid-template-columns: 1fr; }
  .o-nas__grid { grid-template-columns: 1fr; gap: 32px; }
  .kontakt__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .oferta__grid { grid-template-columns: 1fr; }
  .realizacje__grid { grid-template-columns: 1fr; }
  .realizacje__item--large { grid-column: span 1; }
  .proces__steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero__btns { flex-direction: column; align-items: center; }
}

.nav__logo {
  display: flex;
  flex-direction: row; 
  align-items: center;
  gap: 12px;
}
.nav__logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.footer__brand-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0; /* usuń poprzedni margin */
}


/* ---- REALIZACJE — zdjęcia ---- */
.realizacje__item {
  cursor: pointer;
  position: relative;
}
.realizacje__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.realizacje__item--large img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  
}
.realizacje__item:not(.realizacje__item--large) img {
  min-height: 200px;
}
.realizacje__item:hover img {
  transform: scale(1.03);
}
.realizacje__item::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.realizacje__item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 10, 0.92);
  cursor: pointer;
}
.lightbox__box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox__img-wrap {
  position: relative;
  max-width: 80vw;
  max-height: 82vh;
}
.lightbox__img-wrap img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--c-cream);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 3;
}
.lightbox__close:hover { opacity: 1; }

.lightbox__arrow {
  background: rgba(245,234,216,0.1);
  border: 1px solid rgba(245,234,216,0.2);
  color: var(--c-cream);
  font-size: 40px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.lightbox__arrow:hover { background: rgba(245,234,216,0.2); }
.lightbox__arrow:disabled {
  opacity: 0.2;
  cursor: default;
}

.lightbox__caption {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-cream);
  font-size: 15px;
  text-align: center;
  white-space: nowrap;
}
.lightbox__counter {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-light);
  font-size: 12px;
  letter-spacing: .06em;
}

.lightbox__img-wrap {
  position: relative;
  width: 80vw;
  max-width: 900px;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.opinie__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}

.opinie__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-wood);
  color: var(--c-cream);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.opinie__google {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
}

.opinie__google span {
  font-size: 11px;
  color: var(--c-gray);
}

/* ---- LIGHTBOX MOBILE ---- */
@media (max-width: 600px) {
  .lightbox__box {
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    gap: 0;
    justify-content: center;
  }

  .lightbox__img-wrap {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .lightbox__img-wrap img {
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .lightbox__arrow {
    display: none;
  }

  .lightbox__swipe-hint {
    display: flex;
  }
}

.lightbox__swipe-hint {
  display: none;
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.5);
  color: var(--c-cream);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 20px;
  pointer-events: none;
  animation: hintfade 3s ease forwards;
  white-space: nowrap;
  z-index: 10;
}

.lightbox__swipe-hint svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes hintfade {
  0%   { opacity: 0; }
   20% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; }
}

@media (max-width: 600px) {
  .hero {
    min-height: 100svh;
    align-items: flex-start;
  }

  .hero__content {
    padding: 100px 24px 40px;
  }
}