/* ============================================
   ASILAS SERAMIK — Modern Ceramic Website
   ============================================ */

:root {
  --color-bg: #0f0e0d;
  --color-bg-elevated: #1a1917;
  --color-bg-card: #222120;
  --color-surface: #2a2826;
  --color-cream: #f5f0e8;
  --color-cream-muted: #c8c0b4;
  --color-terracotta: #c4704a;
  --color-terracotta-light: #d4896a;
  --color-terracotta-dark: #a35a38;
  --color-clay: #8b6f5e;
  --color-sage: #6b8f71;
  --color-gold: #c9a96e;
  --color-text: #f5f0e8;
  --color-text-muted: #9a948a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 60px rgba(196, 112, 74, 0.15);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-height: 80px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-tile {
  width: 48px;
  height: 48px;
  background: var(--color-terracotta);
  border-radius: 4px;
  animation: tileFlip 1.2s ease-in-out infinite;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--color-cream);
}

@keyframes tileFlip {
  0%, 100% { transform: rotateY(0deg) scale(1); }
  50% { transform: rotateY(180deg) scale(0.9); }
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(15, 14, 13, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(245, 240, 232, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--color-terracotta);
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-text em {
  font-style: italic;
  color: var(--color-terracotta-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-cream-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-cream);
}

.nav-cta {
  background: var(--color-terracotta);
  color: var(--color-cream) !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--color-terracotta-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  transition: var(--transition);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-cream);
  border-color: var(--color-terracotta);
}

.btn-primary:hover {
  background: var(--color-terracotta-light);
  border-color: var(--color-terracotta-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(245, 240, 232, 0.3);
}

.btn-outline:hover {
  border-color: var(--color-cream);
  background: rgba(245, 240, 232, 0.05);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 40px) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-tile-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 112, 74, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 112, 74, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(196, 112, 74, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(107, 143, 113, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, transparent 30%, transparent 70%, var(--color-bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(196, 112, 74, 0.15);
  border: 1px solid rgba(196, 112, 74, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-terracotta-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-accent {
  font-style: italic;
  color: var(--color-terracotta-light);
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-cream);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-terracotta);
  display: inline;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 240, 232, 0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-terracotta), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Section Common ---- */
.section-header {
  margin-bottom: 64px;
  max-width: 600px;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--color-terracotta-light);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- Products ---- */
.products {
  padding: 120px 0;
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  background: var(--color-bg-card);
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 112, 74, 0.3);
  box-shadow: var(--shadow-glow);
}

.product-card-bg {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: hsla(var(--card-hue), 40%, 45%, 0.12);
  filter: blur(60px);
  transition: transform var(--transition);
}

.product-card:hover .product-card-bg {
  transform: scale(1.5);
}

.product-card-icon {
  width: 56px;
  height: 56px;
  color: var(--color-terracotta-light);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.product-card-icon svg {
  width: 100%;
  height: 100%;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.product-card-link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-terracotta-light);
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}

.product-card-link:hover {
  color: var(--color-cream);
}

/* ---- About ---- */
.about {
  padding: 120px 0;
  position: relative;
  background: var(--color-bg-elevated);
}

.about-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4704a' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-visual {
  position: relative;
}

.about-tile-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  aspect-ratio: 1;
  max-width: 420px;
}

.mosaic-cell {
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  animation: mosaicFade 3s ease-in-out infinite;
  animation-delay: calc(var(--delay) * 0.3s);
}

.mosaic-cell--accent {
  background: var(--color-terracotta);
}

@keyframes mosaicFade {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-terracotta);
  color: var(--color-cream);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

.about-text {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  color: var(--color-terracotta);
  font-size: 0.8rem;
  margin-top: 4px;
}

.about-features strong {
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}

.about-features span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ---- Gallery ---- */
.gallery {
  padding: 120px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--tall-left {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-item--tall-right {
  grid-column: 4;
  grid-row: 1 / 3;
}

.gallery-item--top-mid {
  grid-column: 2;
  grid-row: 1;
}

.gallery-item--top-right {
  grid-column: 3;
  grid-row: 1;
}

.gallery-item--wide {
  grid-column: 2 / 4;
  grid-row: 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg,
      hsla(var(--g-hue), 30%, 25%, 0.9) 0%,
      hsla(var(--g-hue), 25%, 15%, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: transform var(--transition);
  position: relative;
}

.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.03) 39px,
      rgba(255,255,255,0.03) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.03) 39px,
      rgba(255,255,255,0.03) 40px
    );
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.03);
}

.gallery-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 100px 0;
  background:
    linear-gradient(135deg, var(--color-terracotta-dark) 0%, var(--color-terracotta) 50%, var(--color-clay) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--color-cream);
}

.cta-banner .btn-primary {
  background: var(--color-cream);
  color: var(--color-terracotta-dark);
  border-color: var(--color-cream);
}

.cta-banner .btn-primary:hover {
  background: white;
  border-color: white;
}

/* ---- Contact ---- */
.contact {
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  color: var(--color-text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 28px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(196, 112, 74, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-terracotta-light);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-list strong {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-list span,
.contact-list a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.contact-list a:hover {
  color: var(--color-terracotta-light);
}

.contact-form {
  background: var(--color-bg-card);
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-cream-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-cream);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239a948a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-bg-elevated);
  padding: 80px 0 0;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-tagline {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul {
  display: grid;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-terracotta-light);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream-muted);
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--color-terracotta);
  color: var(--color-cream);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ---- Reveal Animations ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item--tall-left,
  .gallery-item--tall-right {
    grid-column: auto;
    grid-row: span 2;
  }

  .gallery-item--top-mid,
  .gallery-item--top-right {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item--wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 14, 13, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 16px 24px;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item--tall-left,
  .gallery-item--tall-right,
  .gallery-item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-scroll {
    display: none;
  }
}
