/* ============================================
   Hometown Nutrition of Pelahatchie
   Premium Dark Luxury — Teal + Slate Grey
   ============================================ */

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

:root {
  --bg-primary: #0a0f14;
  --bg-secondary: #0f1619;
  --bg-tertiary: #141c22;
  --bg-card: #111920;
  --bg-card-hover: #162028;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --gold-300: #fde68a;
  --gold-400: #f5c842;
  --gold-500: #d4a017;
  --gold-600: #b8860b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
  list-style: none;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--slate-50);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.938rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: var(--slate-50);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--slate-200);
  border: 1.5px solid var(--slate-700);
}

.btn--outline:hover {
  border-color: var(--teal-500);
  color: var(--teal-400);
  background: rgba(13, 148, 136, 0.08);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--bg-primary);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 15, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 148, 136, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--slate-50);
  transition: color var(--transition);
}

.nav__logo:hover {
  color: var(--gold-400);
}

.nav__logo-text {
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-400);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.nav__link:hover {
  color: var(--slate-100);
  background: rgba(255, 255, 255, 0.06);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: var(--slate-50);
  font-weight: 500;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-300);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 15, 20, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--slate-300);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu__link:hover {
  color: var(--gold-400);
}

.mobile-menu__link--cta {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: var(--slate-50);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: var(--radius-xl);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 200, 66, 0.1);
  border: 1px solid rgba(245, 200, 66, 0.2);
  border-radius: var(--radius-xl);
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--gold-400);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.hero__headline {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__headline-accent {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--slate-400);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate-50);
}

.hero__stat-label {
  font-size: 0.813rem;
  color: var(--slate-500);
  letter-spacing: 0.02em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--slate-700);
}

.hero__image-wrapper {
  position: relative;
}

.hero__image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(10, 15, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__image-badge span {
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--slate-200);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: float 2.5s ease-in-out infinite;
}

.hero__scroll-indicator span {
  font-size: 0.688rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate-600);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal-600), transparent);
}

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

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-500);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius-xl);
  background: rgba(13, 148, 136, 0.06);
}

.section-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-header__title-accent {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header__desc {
  font-size: 1.063rem;
  color: var(--slate-400);
  line-height: 1.75;
}

/* ── About ── */
.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.about__bg-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about__tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.about__tag {
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-400);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-xl);
  background: rgba(13, 148, 136, 0.06);
}

.about__headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.about__body {
  font-size: 1.063rem;
  color: var(--slate-400);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.about__highlight {
  padding: 28px 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  transition: all var(--transition);
}

.about__highlight:hover {
  background: var(--bg-card-hover);
  border-color: rgba(13, 148, 136, 0.2);
  transform: translateY(-4px);
}

.about__highlight-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(13, 148, 136, 0.12);
  color: var(--teal-400);
  margin-bottom: 16px;
}

.about__highlight-title {
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--slate-100);
  margin-bottom: 6px;
}

.about__highlight-text {
  font-size: 0.813rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ── Products ── */
.products {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(13, 148, 136, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 20, 0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__tag {
  padding: 6px 14px;
  background: rgba(13, 148, 136, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-50);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card__content {
  padding: 24px;
}

.product-card__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-100);
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.65;
}

.products__cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.products__cta p {
  font-size: 1rem;
  color: var(--slate-400);
  margin-bottom: 20px;
}

/* ── Why Us ── */
.why-us {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-us__desc {
  font-size: 1.063rem;
  color: var(--slate-400);
  line-height: 1.8;
  margin-bottom: 36px;
}

.why-us__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-us__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.938rem;
  color: var(--slate-300);
  line-height: 1.6;
}

.why-us__item-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.25);
  margin-top: 2px;
}

.why-us__image-stack {
  position: relative;
}

.why-us__image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.why-us__image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.why-us__image-float {
  position: absolute;
  bottom: -40px;
  left: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--bg-secondary);
}

.why-us__image-float img {
  width: 100%;
  height: auto;
  display: block;
}

.why-us__image-float-badge {
  padding: 12px 16px;
  background: rgba(10, 15, 20, 0.9);
  backdrop-filter: blur(12px);
}

.why-us__image-float-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal-400);
  letter-spacing: 0.03em;
}

/* ── Visit ── */
.visit {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.visit__inner {
  max-width: 900px;
  margin: 0 auto;
}

.visit__info {
  text-align: center;
}

.visit__details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 48px 0;
}

.visit__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.visit__detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.2);
  color: var(--teal-400);
}

.visit__detail-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
  margin-bottom: 4px;
}

.visit__detail-value {
  font-size: 0.938rem;
  color: var(--slate-200);
  line-height: 1.6;
}

.visit__detail-value a {
  color: var(--teal-400);
  transition: color var(--transition);
}

.visit__detail-value a:hover {
  color: var(--gold-400);
}

.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  position: relative;
}

.visit__map-link {
  display: block;
  position: relative;
}

.visit__map-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.visit__map-link:hover .visit__map-image {
  transform: scale(1.02);
}

.visit__map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(10, 15, 20, 0.55);
  backdrop-filter: blur(4px);
  color: var(--slate-50);
  font-weight: 500;
  font-size: 0.938rem;
  transition: all var(--transition);
}

.visit__map-link:hover .visit__map-overlay {
  background: rgba(10, 15, 20, 0.4);
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact__desc {
  font-size: 1.063rem;
  color: var(--slate-400);
  line-height: 1.8;
  margin-top: 20px;
}

.contact__form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__label {
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--slate-400);
  letter-spacing: 0.03em;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--slate-800);
  border-radius: var(--radius-sm);
  color: var(--slate-200);
  font-family: var(--font-body);
  font-size: 0.938rem;
  transition: all var(--transition);
  outline: none;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--slate-600);
}

.contact__input:focus,
.contact__textarea:focus {
  border-color: var(--teal-600);
  background: rgba(13, 148, 136, 0.06);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius-sm);
  color: var(--teal-400);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ── Footer ── */
.footer {
  padding: 80px 0 0;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--slate-50);
  margin-bottom: 16px;
}

.footer__logo:hover {
  color: var(--gold-400);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 280px;
}

.footer__links-title,
.footer__contact-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-300);
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--slate-500);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--teal-400);
}

.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.5;
}

.footer__contact a {
  color: var(--slate-500);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--teal-400);
}

.footer__contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal-600);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.813rem;
  color: var(--slate-600);
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__container {
    gap: 40px;
  }

  .hero__image {
    max-width: 520px;
  }

  .why-us__inner {
    gap: 48px;
  }

  .why-us__image-float {
    left: -20px;
    bottom: -24px;
  }

  .footer__inner {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

  .about__highlights {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .products__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-us__inner {
    grid-template-columns: 1fr;
  }

  .why-us__image-stack {
    max-width: 480px;
    margin: 0 auto;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 80px;
    min-height: auto;
  }

  .hero__headline {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .about,
  .products,
  .why-us,
  .visit,
  .contact {
    padding: 80px 0;
  }

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

  .visit__details {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }

  .contact__form {
    padding: 24px;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }
}

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

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
