/* ===========================
   SWEET PEACH PARTY CO
   Design System & Styles
   =========================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Colors - Warm peach/coral palette with fun accents */
  --peach-50: #fff8f3;
  --peach-100: #fdf0e8;
  --peach-200: #fbe0cf;
  --peach-300: #f7c4a8;
  --peach-400: #f2a47a;
  --peach-500: #e8855a;
  --peach-600: #d4693e;
  --peach-700: #b5522e;

  --cream: #fffbf6;
  --cream-dark: #f5efe8;

  --sage-100: #eef5ec;
  --sage-200: #d4e6cf;
  --sage-400: #8cb882;
  --sage-600: #5a8a50;

  --text-primary: #2d2319;
  --text-secondary: #6b5e52;
  --text-light: #9b8e82;
  --text-inverse: #fffbf6;

  --white: #ffffff;
  --black: #1a1410;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(45, 35, 25, 0.06);
  --shadow-md: 0 4px 16px rgba(45, 35, 25, 0.08);
  --shadow-lg: 0 8px 32px rgba(45, 35, 25, 0.1);
  --shadow-xl: 0 16px 48px rgba(45, 35, 25, 0.12);
  --shadow-glow: 0 0 40px rgba(232, 133, 90, 0.15);

  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1200px;
  --nav-height: 72px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
}

.center {
  text-align: center;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--peach-500);
  margin-bottom: var(--space-md);
}

.section-label.center {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: var(--space-3xl);
}

.section-description.center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--peach-500), var(--peach-400));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 133, 90, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 133, 90, 0.45);
  background: linear-gradient(135deg, var(--peach-600), var(--peach-500));
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--peach-600);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 251, 246, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 20px rgba(45, 35, 25, 0.06);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  transition: color var(--transition-base);
}

.navbar.scrolled .nav-brand {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.navbar.scrolled .nav-link {
  color: var(--text-secondary);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--peach-600);
  background: var(--peach-100);
}

.nav-cta {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white) !important;
}

.navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--peach-500), var(--peach-400)) !important;
  border-color: transparent;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.navbar.scrolled .nav-toggle span {
  background: var(--text-primary);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #3d2218 0%,
    #5a3425 20%,
    #8b4a30 40%,
    #c67350 60%,
    #e8956a 80%,
    #f2b89a 100%
  );
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(247, 196, 168, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(242, 164, 122, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    transparent 40%,
    transparent 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/* Floating confetti emojis */
.hero-confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.confetti {
  position: absolute;
  font-size: 2rem;
  opacity: 0.25;
  animation: confettiFloat 12s ease-in-out infinite;
}

.confetti-1 { top: 10%; left: 8%; animation-delay: 0s; font-size: 2.5rem; }
.confetti-2 { top: 20%; right: 12%; animation-delay: 2s; font-size: 1.8rem; }
.confetti-3 { top: 50%; left: 5%; animation-delay: 4s; font-size: 1.5rem; }
.confetti-4 { bottom: 25%; right: 8%; animation-delay: 1s; font-size: 2rem; }
.confetti-5 { bottom: 15%; left: 15%; animation-delay: 3s; font-size: 2.2rem; }
.confetti-6 { top: 35%; right: 5%; animation-delay: 5s; font-size: 1.6rem; }
.confetti-7 { bottom: 40%; left: 20%; animation-delay: 6s; font-size: 1.4rem; }
.confetti-8 { top: 15%; left: 50%; animation-delay: 7s; font-size: 2rem; }

@keyframes confettiFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  25% { transform: translateY(-20px) rotate(5deg); opacity: 0.35; }
  50% { transform: translateY(-10px) rotate(-3deg); opacity: 0.25; }
  75% { transform: translateY(-25px) rotate(8deg); opacity: 0.3; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  max-width: 700px;
}

.hero-logo-area {
  margin-bottom: var(--space-xl);
}

.hero-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
  animation: float 4s ease-in-out infinite;
  border-radius: 50%;
  background: rgba(255, 251, 246, 0.9);
  padding: 12px;
  object-fit: contain;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-title-accent {
  color: var(--peach-300);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* --- About Section --- */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-4xl);
  align-items: center;
}

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

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-image-frame img,
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-image-placeholder svg {
  width: 100%;
  height: 100%;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-decoration {
  position: absolute;
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-decoration-1 {
  width: 100%;
  height: 100%;
  top: 16px;
  left: 16px;
  background: var(--peach-100);
  border: 2px solid var(--peach-200);
}

.about-decoration-2 {
  width: 60px;
  height: 60px;
  top: -20px;
  right: -20px;
  background: var(--sage-200);
  border-radius: 50%;
  z-index: 2;
}

.about-content .section-label {
  margin-bottom: var(--space-sm);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--text-primary);
}

.about-text em {
  color: var(--peach-600);
  font-style: normal;
  font-weight: 500;
}

.about-signature {
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  color: var(--text-primary) !important;
  font-weight: 600;
  margin-top: var(--space-xl) !important;
}

/* --- Inventory Section --- */
.inventory {
  background: var(--cream);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.inventory-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.inventory-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.inventory-card-image {
  position: relative;
  background: linear-gradient(135deg, #f9f5f0, #f0ebe5);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.inventory-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-base);
}

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

.inventory-placeholder {
  width: 100%;
  max-width: 300px;
}

.inventory-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: linear-gradient(135deg, var(--peach-500), var(--peach-400));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.inventory-card-body {
  padding: var(--space-xl) var(--space-xl) var(--space-2xl);
}

.inventory-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.inventory-card-qty {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.inventory-card-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
}

.inventory-card-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--peach-600);
}

.inventory-card-price .price-unit {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Pricing table for arches */
.inventory-pricing-table {
  margin-top: var(--space-md);
}

.pricing-row {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--peach-200);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row .size {
  font-weight: 500;
  color: var(--text-primary);
  min-width: 70px;
}

.pricing-row .dots {
  flex: 1;
  border-bottom: 2px dotted var(--peach-200);
  margin: 0 var(--space-md);
  height: 1px;
}

.pricing-row .price {
  font-weight: 700;
  color: var(--peach-600);
  font-size: 1.1rem;
}

.arch-cover-note {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* --- Banners Section --- */
.banners {
  background: linear-gradient(180deg, var(--white) 0%, var(--peach-50) 100%);
}

.banners-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.banners-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.banners-features {
  list-style: none;
  margin-bottom: var(--space-2xl);
}

.banners-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 1rem;
  color: var(--text-secondary);
}

.feature-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--peach-100);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.banners-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  transition: transform var(--transition-base);
}

.banner-card:hover {
  transform: rotate(-1deg) scale(1.02);
}

.banner-card-2:hover {
  transform: rotate(1deg) scale(1.02);
}

.banner-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.banner-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.banner-card:hover .banner-image-wrapper img {
  transform: scale(1.03);
}

.banner-label {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* --- Banner Pricing --- */
.banner-pricing {
  margin-top: var(--space-4xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.banner-pricing-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2xl);
}

.banner-sizes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.banner-size-card {
  background: linear-gradient(135deg, var(--peach-50), var(--peach-100));
  border: 1px solid var(--peach-200);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.banner-size {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.banner-size-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--peach-600);
}

.banner-includes {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.banner-extras {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.banner-extras-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.banner-extras-list {
  display: flex;
  flex-direction: column;
}

.banner-extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px dashed var(--peach-200);
}

.banner-extra-row:last-child {
  border-bottom: none;
}

.extra-name {
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.extra-detail {
  font-size: 0.85rem;
  color: var(--text-light);
}

.extra-price {
  font-weight: 700;
  color: var(--peach-600);
  font-size: 1.05rem;
  white-space: nowrap;
  margin-left: var(--space-xl);
}

.banner-disclaimer {
  color: var(--text-light);
  font-size: 0.85rem;
  font-style: italic;
}
/* --- FAQ Section --- */
.faq {
  background: var(--cream);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--peach-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-xl);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--peach-600);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--peach-500);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-answer p {
  padding: 0 var(--space-xl) var(--space-xl);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- Contact Section --- */
.contact {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 50%, var(--peach-50) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.contact-checklist {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.contact-checklist h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.contact-checklist ul {
  list-style: none;
  margin-bottom: var(--space-md);
}

.contact-checklist li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 0;
  color: var(--text-secondary);
}

.check {
  color: var(--sage-400);
  font-weight: 700;
  font-size: 1rem;
}

.contact-note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

.social-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}

.social-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.social-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.social-link {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--peach-100);
  color: var(--peach-600);
  transition: all var(--transition-base);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.social-link:hover {
  background: var(--peach-500);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 133, 90, 0.3);
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--text-inverse);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  margin-bottom: var(--space-xl);
}

.footer-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  filter: brightness(1.2);
}

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--peach-400);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .banners-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    gap: var(--space-xs);
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    color: var(--text-secondary) !important;
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--peach-600) !important;
    background: var(--peach-100) !important;
  }

  .nav-cta {
    background: linear-gradient(135deg, var(--peach-500), var(--peach-400)) !important;
    color: var(--white) !important;
    text-align: center;
    justify-content: center;
    margin-top: var(--space-md);
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

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

  .banners-showcase {
    flex-direction: row;
  }

  .banner-card {
    flex: 1;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .banners-showcase {
    flex-direction: column;
  }

  .inventory-card-image {
    min-height: 180px;
    padding: var(--space-md);
  }

  .inventory-card-image img {
    max-height: 160px;
  }
}

/* Mobile menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
