/* ─────────────────────────────────────────────
   KAZMIERZANKA LOUNGE — Editorial / Bold
   Emerald Green + Cream · Playfair + Inter
   ───────────────────────────────────────────── */

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

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --cream-50:  #fefdf8;
  --cream-100: #fef9c3;
  --cream-200: #fef3c7;
  --cream-300: #f5f0e1;
  --cream-400: #e8e0cc;
  --ink-900:   #1a1a1a;
  --ink-700:   #2d2d2d;
  --ink-500:   #555555;
  --ink-300:   #888888;
  --ink-200:   #b0b0b0;
  --serif:     'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:      'Inter', system-ui, -apple-system, sans-serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--ink-900);
  background-color: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--emerald-900);
  color: var(--cream-50);
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  font-size: 0.875rem;
  font-weight: 500;
}
.skip-link:focus {
  top: 0;
}

/* ── SECTION EYEBROW ── */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 12px;
}

/* ── SECTION HEADING ── */
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink-900);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-800);
  color: var(--cream-50);
  border-color: var(--emerald-800);
}
.btn-primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 95, 70, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-700);
  border-color: var(--ink-300);
}
.btn-ghost:hover {
  border-color: var(--emerald-700);
  color: var(--emerald-800);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-400);
  transition: box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--emerald-800);
  color: var(--cream-100);
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.logo-accent {
  font-weight: 400;
  color: var(--ink-500);
}

.logo-text--light .logo-accent {
  color: var(--cream-400);
}

.logo-mark--light {
  background: var(--cream-200);
  color: var(--emerald-800);
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-700);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
  color: var(--emerald-800);
  background: rgba(6, 95, 70, 0.06);
}

.nav-cta {
  background: var(--emerald-800) !important;
  color: var(--cream-50) !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--emerald-700) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 6px;
}
.nav-toggle:hover {
  background: var(--cream-300);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink-700);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger { top: 50%; margin-top: -7px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 0;
  transform: translateX(-50%) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding-top: 72px;
  background: var(--cream-50);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 60px 0 0;
}

/* Hero content — asymmetric offset */
.hero-content {
  padding-right: 24px;
  padding-bottom: 60px;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--emerald-600);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink-900);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero-headline em {
  font-style: italic;
  color: var(--emerald-800);
}

.hero-dek {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-500);
  margin-bottom: 36px;
  max-width: 520px;
}

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

/* Hero image stack */
.hero-visual {
  position: relative;
}

.hero-image-stack {
  position: relative;
  padding-left: 40px;
}

.hero-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-img-main {
  width: 100%;
  aspect-ratio: 4/5;
}

.hero-img-accent {
  position: absolute;
  bottom: -32px;
  left: -40px;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  border: 4px solid var(--cream-50);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.hero-img:hover img {
  transform: scale(1.03);
}

.hero-tag {
  position: absolute;
  top: -16px;
  right: 20px;
  background: var(--emerald-800);
  color: var(--cream-100);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3);
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-400, #34d399);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Hero bar */
.hero-bar {
  background: var(--emerald-900);
  margin-top: 0;
}

.hero-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-600);
}

.stat-value {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream-100);
}

.stat-link {
  transition: color 0.2s;
}
.stat-link:hover {
  color: var(--cream-200);
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--cream-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--emerald-700);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
}

.about-content {
  max-width: 520px;
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-500);
  margin-bottom: 18px;
}

.about-content p:first-of-type {
  font-size: 1.125rem;
  color: var(--ink-700);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-400);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-700);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(6, 95, 70, 0.08);
  border-radius: 8px;
  color: var(--emerald-700);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════ */
.products {
  padding: 120px 0;
  background: var(--cream-300);
}

.products-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.products-header .section-dek {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-500);
  margin-top: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: stretch;
}

.product-card {
  background: var(--cream-50);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.product-card--featured {
  grid-column: span 7;
}

.product-card:not(.product-card--featured) {
  grid-column: span 5;
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/3.8;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--emerald-800);
  color: var(--cream-100);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
}

.product-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.product-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-500);
  flex: 1;
}

/* ═══════════════════════════════════════════
   EDITORIAL BREAK
   ═══════════════════════════════════════════ */
.editorial-break {
  padding: 120px 0;
  background: var(--emerald-900);
  text-align: center;
}

.editorial-quote {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 12rem;
  line-height: 0.6;
  color: var(--emerald-700);
  position: absolute;
  top: -20px;
  left: -20px;
  user-select: none;
  opacity: 0.4;
}

.editorial-quote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--cream-100);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.quote-attribution {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-600);
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery {
  padding: 120px 0 100px;
  background: var(--cream-50);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--tall {
  grid-column: span 4;
  aspect-ratio: 5/6.5;
}

.gallery-item--wide {
  grid-column: span 8;
  aspect-ratio: 16/7;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
  grid-column: span 4;
  aspect-ratio: 5/4;
}

/* ═══════════════════════════════════════════
   VISIT
   ═══════════════════════════════════════════ */
.visit {
  padding: 120px 0;
  background: var(--cream-300);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-info address {
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: 32px;
  padding: 24px;
  background: var(--cream-50);
  border-radius: 10px;
  border-left: 3px solid var(--emerald-700);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.visit-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visit-detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-300);
}

.visit-detail-value {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--emerald-800);
  transition: color 0.2s;
}

.visit-detail-value:hover {
  color: var(--emerald-600);
  text-decoration: underline;
  text-decoration-color: var(--emerald-300, #6ee7b7);
  text-underline-offset: 4px;
}

.visit-hours-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 16px;
}

.visit-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visit-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-400);
  font-size: 0.9375rem;
}

.hours-day {
  font-weight: 500;
  color: var(--ink-700);
}

.hours-time {
  color: var(--ink-500);
}

.visit-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
  min-height: 360px;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: var(--cream-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-dek {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-500);
  margin-bottom: 32px;
}

.contact-direct {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-direct li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink-700);
  padding: 14px 20px;
  background: var(--cream-300);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.contact-direct li a:hover {
  background: var(--emerald-800);
  color: var(--cream-100);
  transform: translateX(4px);
}

.contact-direct li a svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Form */
.contact-form-wrap {
  background: var(--cream-300);
  border-radius: 14px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.form-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-300);
}

.form-group input,
.form-group textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink-900);
  background: var(--cream-50);
  border: 1.5px solid var(--cream-400);
  border-radius: 8px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-300);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(6, 95, 70, 0.08);
  border: 1px solid rgba(6, 95, 70, 0.2);
  border-radius: 8px;
  color: var(--emerald-800);
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-success.visible {
  display: flex;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--ink-900);
  color: var(--cream-300);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .logo-text {
  color: var(--cream-100);
  font-size: 1.375rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-300);
  max-width: 320px;
  margin-top: 4px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: var(--ink-300);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-nav a:hover {
  color: var(--cream-100);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 0;
  font-size: 0.8125rem;
  color: var(--ink-500);
}

.footer-address {
  color: var(--ink-500);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
    padding-top: 40px;
  }

  .hero-content {
    padding-right: 0;
    order: 2;
  }

  .hero-visual {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-image-stack {
    padding-left: 0;
  }

  .hero-img-accent {
    left: -16px;
    bottom: -20px;
  }

  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content {
    max-width: 100%;
  }

  .product-card--featured,
  .product-card:not(.product-card--featured) {
    grid-column: span 12;
  }

  .gallery-item--tall,
  .gallery-item--wide,
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    grid-column: span 6;
    aspect-ratio: 4/3;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 253, 248, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 999;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    font-size: 1.125rem;
    padding: 14px 16px;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 12px;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-img-accent {
    width: 60%;
    left: -8px;
    bottom: -16px;
  }

  .hero-bar-inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .products,
  .about,
  .gallery,
  .visit,
  .contact {
    padding: 80px 0;
  }

  .editorial-break {
    padding: 80px 20px;
  }

  .gallery-item--tall,
  .gallery-item--wide,
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    grid-column: span 12;
    aspect-ratio: 4/3;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-img-accent {
    display: none;
  }

  .about-image-accent {
    display: none;
  }
}
