/*
Theme Name: DineForge
Theme URI: https://dineforge.com
Description: Precision-crafted cutlery for refined dining and modern hospitality.
Version: 1.0.0
Author: DineForge Studio
Author URI: https://dineforge.com
License: Proprietary
License URI: https://dineforge.com/license
Text Domain: dineforge
Domain Path: /languages
Tags: luxury, hospitality, restaurant, cutlery, elegant, modern, responsive, custom-menu, theme-options, custom-colors, featured-images, threaded-comments, translation-ready, blog, e-commerce
*/

:root {
  --bg: #f7f3ee;
  --bg-elevated: #ffffff;
  --text: #1c1b1a;
  --muted: #5b564f;
  --gold: #b99052;
  --silver: #9e9a94;
  --border: rgba(185, 144, 82, 0.2);
  --shadow: rgba(16, 14, 12, 0.12);
  --nav-bg: rgba(247, 243, 238, 0.92);
  --nav-border: rgba(185, 144, 82, 0.18);
  --serif: "Cormorant Garamond", serif;
  --sans: "IBM Plex Sans", sans-serif;
  --max-width: 1180px;
}

body[data-theme="dark"] {
  --bg: #0b0b0c;
  --bg-elevated: #101114;
  --text: #f2eee7;
  --muted: #c9c4bc;
  --gold: #c8a96a;
  --silver: #b9c0c8;
  --border: rgba(200, 169, 106, 0.25);
  --shadow: rgba(0, 0, 0, 0.5);
  --nav-bg: rgba(10, 10, 12, 0.92);
  --nav-border: rgba(200, 169, 106, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.02), transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

body[data-theme="light"]::before {
  opacity: 0.18;
}

main, header, footer {
  position: relative;
  z-index: 1;
}

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

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

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

.section {
  padding: 120px 0;
}

.section-tight {
  padding: 90px 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.tone-card {
  padding: 32px;
  border-radius: 22px;
  background: var(--bg-elevated);
  box-shadow: 0 30px 60px var(--shadow);
  border: 1px solid rgba(185, 144, 82, 0.12);
}

.tone-list {
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--bg-elevated);
  border: 1px solid rgba(185, 144, 82, 0.12);
  box-shadow: 0 20px 40px var(--shadow);
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.cta-panel {
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(185, 144, 82, 0.12), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(185, 144, 82, 0.2);
  display: grid;
  gap: 18px;
}

.panel-image {
  min-height: 360px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 60px var(--shadow);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.stat-item {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(185, 144, 82, 0.18);
  background: var(--bg-elevated);
}

.stat-item span {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.stat-item small {
  color: var(--muted);
  font-size: 0.9rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  z-index: 20;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.5s ease;
  border-bottom: 1px solid transparent;
  background: transparent;
  transform: translateY(-100%);
}

.navbar.nav-reveal {
  transform: translateY(0);
}

.navbar.nav-solid {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(10px);
}

.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-bottom: 8px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: background 0.3s ease, transform 0.3s ease;
}

.mobile-menu-toggle:hover span {
  background: var(--gold);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
}

.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.cart-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.cart-icon span {
  font-size: 0.7rem;
  color: var(--gold);
}

.page-hero {
  padding-top: 160px;
  padding-bottom: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 60px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 500;
  max-width: 460px;
  line-height: 1.05;
}

.hero-text {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 380px;
  margin-top: 24px;
}

.hero-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-image: url('assets/images/hero-fork.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  transform: perspective(900px) rotateY(-6deg);
}

.hero-item::before {
  content: "";
  position: absolute;
  inset: -30% -40%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.25) 35%, transparent 60%);
  animation: sweep 6s ease-in-out infinite;
}

.hero-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.hero-item .hero-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--serif);
  font-size: 1.4rem;
  z-index: 1;
}

@keyframes sweep {
  0% {
    transform: translateX(-40%);
  }
  50% {
    transform: translateX(30%);
  }
  100% {
    transform: translateX(80%);
  }
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(24px);
  transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease;
}

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

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.craft-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.craft-card:nth-child(1) {
  background-image: url('assets/images/craft-forged-balance.jpeg');
}

.craft-card:nth-child(2) {
  background-image: url('assets/images/craft-steel-temper.jpeg');
}

.craft-card:nth-child(3) {
  background-image: url('assets/images/craft-precision-edge.jpeg');
}

.craft-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent 0%, rgba(255, 255, 255, 0.18) 40%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 1.5s ease;
}

.craft-card:hover::after {
  transform: translateX(100%);
}

.craft-card .craft-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.drag-gallery {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.drag-track {
  display: flex;
  gap: 32px;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.drag-item {
  min-width: 280px;
  height: 380px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  transition: transform 0.4s ease;
}

.drag-item:nth-child(1) {
  background-image: url('assets/images/product-1.jpeg');
}

.drag-item:nth-child(2) {
  background-image: url('assets/images/product-2.jpeg');
}

.drag-item:nth-child(3) {
  background-image: url('assets/images/product-3.jpeg');
}

.drag-item:nth-child(4) {
  background-image: url('assets/images/product-4.jpeg');
}

.drag-item:nth-child(5) {
  background-image: url('assets/images/product-5.jpeg');
}

.drag-item.active {
  transform: translateY(-12px);
}

.drag-item span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.dining-context {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}

.dining-image {
  height: 420px;
  border-radius: 26px;
  background-image: url('assets/images/product-6.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.dining-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 60%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.product-tile {
  position: relative;
  padding: 24px;
  border-radius: 20px;
  background: var(--bg-elevated);
  overflow: hidden;
  transition: transform 0.4s ease;
  box-shadow: 0 18px 40px var(--shadow);
}

.product-tile:hover {
  transform: translateY(-8px);
}

.product-image {
  height: 240px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: -60% -60%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 35%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-tile:hover .product-image::after {
  opacity: 1;
  animation: sweep 1.4s ease;
}

.product-name {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 1.2rem;
  opacity: 1;
  transform: translateY(0);
}

.product-description {
  color: var(--muted);
  font-size: 0.95rem;
}

.product-meta {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  background: transparent;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.product-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(185, 144, 82, 0.08);
  transform: translateY(-1px);
}

.product-page {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.product-hero-image {
  height: 520px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  transition: transform 0.5s ease;
}

.product-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.18), transparent 60%);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  color: var(--text);
}

.button-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.accordion {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--muted);
  padding-right: 24px;
}

.accordion-item.open .accordion-content {
  max-height: 200px;
}

.editorial {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.editorial p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text);
  font-family: var(--sans);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.footer {
  background: var(--bg-elevated);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(185, 144, 82, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-column h4 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-bottom: 18px;
  color: var(--gold);
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-contact {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer p {
  color: var(--muted);
}

.footer-nav {
  display: grid;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.footer-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 106, 0.2);
  margin-top: 32px;
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: none;
  filter: grayscale(0.6) brightness(0.8);
}

@media (max-width: 768px) {
  .footer-map iframe {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .footer-map iframe {
    height: 160px;
  }
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(185, 144, 82, 0.12);
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.form-errors {
  background: rgba(200, 100, 100, 0.1);
  border: 1px solid rgba(200, 100, 100, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  color: #ffcccc;
}

.form-success {
  background: rgba(100, 200, 100, 0.1);
  border: 1px solid rgba(100, 200, 100, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  color: #ccffcc;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(185, 144, 82, 0.08);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.content-grid {
  display: grid;
  gap: 32px;
}

.content-card {
  padding: 32px;
  border-radius: 20px;
  background: var(--bg-elevated);
  box-shadow: 0 20px 40px var(--shadow);
  border: 1px solid rgba(185, 144, 82, 0.12);
}

.card-image {
  margin-bottom: 20px;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card-title a {
  color: var(--text);
  text-decoration: none;
}

.card-title a:hover {
  color: var(--gold);
}

.card-excerpt {
  color: var(--muted);
  margin-bottom: 16px;
}

.card-link {
  margin-top: 16px;
}

.collection-tag {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(185, 144, 82, 0.1);
  color: var(--gold);
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 8px;
}

.no-content {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.no-content h2 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text);
}

.page-header {
  margin-bottom: 48px;
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  margin-bottom: 16px;
}

.archive-description {
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .dining-context,
  .product-page,
  .editorial,
  .split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

  .navbar {
    padding: 16px 0;
  }

  .navbar .nav-inner {
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
  }

  .logo {
    order: 1;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .nav-icon {
    order: 3;
    margin-left: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--nav-border);
    padding: 20px 24px 20px 24px;
    flex-direction: column;
    gap: 16px;
    order: 3;
    width: unset;
    flex-wrap: unset;
    justify-content: unset;
    font-size: 0.95rem;
    z-index: 10;
  }

  .nav-links.mobile-menu-open {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .nav-icon {
    order: 4;
    margin-left: 0;
  }

  .nav-links a {
    padding: 8px 0;
    border-bottom: 1px solid transparent;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    border-bottom-color: var(--gold);
  }

  .page-hero {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .section {
    padding: 90px 0;
  }

  .hero-item {
    transform: none;
  }

  .drag-item {
    min-width: 200px;
    height: 300px;
  }

  .product-hero-image {
    height: 440px;
  }

  .dining-image {
    height: 380px;
  }

  body {
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .hero-grid,
  .dining-context,
  .product-page,
  .editorial,
  .split-grid {
    gap: 24px;
  }

  .page-hero {
    padding-top: 132px;
    padding-bottom: 88px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  .hero-title,
  .hero-text {
    max-width: none;
  }

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

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

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

  .theme-toggle {
    padding: 8px 12px;
    font-size: 0.7rem;
    max-width: 160px;
  }

  .theme-toggle-label {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 110px;
  }

  .product-image {
    height: 220px;
  }

  .product-hero-image {
    height: 360px;
  }

  .dining-image {
    height: 320px;
  }

  .craft-card {
    min-height: 260px;
  }

  .drag-item {
    min-width: 240px;
    height: 340px;
  }

  .accordion-content {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .hero-grid,
  .dining-context,
  .product-page,
  .editorial,
  .split-grid {
    gap: 20px;
  }

  .navbar {
    padding: 14px 0;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.82rem;
  }

  .page-hero {
    padding-top: 120px;
    padding-bottom: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-item .hero-label {
    left: 18px;
    bottom: 18px;
    font-size: 1.2rem;
  }

  .product-tile {
    padding: 20px;
  }

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

  .product-image {
    height: 200px;
  }

  .product-hero-image {
    height: 300px;
  }

  .dining-image {
    height: 260px;
  }

  .craft-card {
    min-height: 230px;
  }

  .drag-item {
    min-width: 180px;
    height: 280px;
  }

  .reveal {
    transform: translateY(16px);
  }
}
