/* ============================================
   FISHWARE OUTFITTERS — Stylesheet
   Emerald Green + Cream Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --emerald-900: #064E3B;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10B981;
  --emerald-100: #D1FAE5;
  --emerald-50:  #ECFDF5;

  --amber-600:  #D97706;
  --amber-500:  #F59E0B;
  --amber-100:  #FEF3C7;

  --cream:      #F5F0E8;
  --cream-light:#FAF7F2;
  --cream-dark: #E8E0D0;

  --text-primary:   #1A2E28;
  --text-secondary: #4A5D56;
  --text-muted:     #7A8D86;

  --white: #FFFFFF;
  --shadow-sm:  0 1px 3px rgba(10,74,50,0.06), 0 1px 2px rgba(10,74,50,0.04);
  --shadow-md:  0 4px 16px rgba(10,74,50,0.08), 0 2px 6px rgba(10,74,50,0.05);
  --shadow-lg:  0 12px 40px rgba(10,74,50,0.10), 0 4px 12px rgba(10,74,50,0.06);
  --shadow-xl:  0 20px 60px rgba(10,74,50,0.12), 0 8px 20px rgba(10,74,50,0.07);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --font-display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--cream);
  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;
}

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

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

@media (min-width: 1024px) {
  .container { padding: 0 48px; }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-600);
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

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

.text-emerald { color: var(--emerald-600); }
.text-cream { color: var(--cream); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(5,150,105,0.3);
}

.btn-primary:hover {
  background: var(--emerald-700);
  box-shadow: 0 6px 20px rgba(5,150,105,0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--white);
  color: var(--text-primary);
  border: 1.5px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--emerald-600);
  color: var(--emerald-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-directions {
  margin-top: 24px;
  background: var(--amber-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217,119,6,0.3);
}

.btn-directions:hover {
  background: #b8620a;
  box-shadow: 0 6px 20px rgba(217,119,6,0.4);
  transform: translateY(-2px);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245,240,232,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,224,208,0.6);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(250,247,242,0.95);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
}

.logo-accent {
  color: var(--emerald-600);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--emerald-600);
  background: var(--emerald-50);
}

.nav-cta {
  display: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-600);
  border: 1.5px solid var(--emerald-600);
  padding: 8px 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--emerald-600);
  color: var(--white);
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: var(--emerald-50);
}

.mobile-toggle svg {
  color: var(--text-primary);
}

/* --- Mobile Nav --- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26,46,40,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.mobile-nav-inner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--cream-light);
  padding: 96px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: var(--emerald-50);
  color: var(--emerald-600);
}

.mobile-nav-contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-contact a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.mobile-nav-contact a:hover {
  color: var(--emerald-600);
}

/* --- Hero --- */
.hero {
  padding-top: 72px;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0 80px;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    padding: 80px 0 100px;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-700);
  background: var(--white);
  border: 1px solid var(--emerald-100);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--emerald-600);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 600/750;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-float {
  position: absolute;
  bottom: -20px;
  left: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
  z-index: 2;
}

.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--emerald-700);
  box-shadow: var(--shadow-sm);
}

.hero-img-accent {
  position: absolute;
  top: 40px;
  right: -20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
  z-index: 1;
}

.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wave {
  margin-top: -1px;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* --- About --- */
.about {
  background: var(--cream-light);
  padding: 80px 0;
}

@media (min-width: 768px) {
  .about { padding: 100px 0; }
}

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

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
  }
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 560/420;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -24px;
  right: -16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-light);
  aspect-ratio: 280/200;
  max-width: 55%;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-tag { margin-bottom: 16px; }

.about-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--emerald-100);
}

.about-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- Products --- */
.products {
  background: var(--cream);
  padding: 80px 0 100px;
}

@media (min-width: 768px) {
  .products { padding: 100px 0 120px; }
}

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

.products-header .section-tag { margin-bottom: 16px; }

.products-header .section-title { margin-bottom: 16px; }

.products-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232,224,208,0.5);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-img {
  overflow: hidden;
  aspect-ratio: 400/300;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Why Us --- */
.why-us {
  background: var(--emerald-900);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .why-us { padding: 100px 0; }
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

@media (min-width: 1024px) {
  .why-us-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

.why-us-content .section-tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--emerald-100);
}

.why-us-content .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.why-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 36px;
}

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

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217,119,6,0.15);
  border: 1px solid rgba(217,119,6,0.3);
  border-radius: 50%;
}

.why-us-visual {
  position: relative;
}

.why-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 500/620;
}

.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-quote-card {
  position: absolute;
  bottom: -24px;
  left: -16px;
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  z-index: 2;
}

.quote-icon {
  margin-bottom: 10px;
}

.why-quote-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

/* --- Gallery --- */
.gallery {
  background: var(--cream-light);
  padding: 80px 0 100px;
}

@media (min-width: 768px) {
  .gallery { padding: 100px 0 120px; }
}

.gallery-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}

.gallery-header .section-tag { margin-bottom: 16px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
  }
  .gallery-item--large {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
  }
  .gallery-item--wide {
    grid-column: 7 / 13;
    grid-row: 2 / 3;
  }
  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 1;
  }
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.01);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Contact --- */
.contact {
  background: var(--cream);
  padding: 80px 0 100px;
}

@media (min-width: 768px) {
  .contact { padding: 100px 0 120px; }
}

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

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.contact-info .section-tag { margin-bottom: 16px; }

.contact-info .section-title { margin-bottom: 16px; }

.contact-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 8px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: var(--radius-md);
}

.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.contact-detail a {
  color: var(--emerald-600);
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--emerald-700);
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrap {
  max-width: 100%;
}

@media (min-width: 1024px) {
  .contact-form-wrap { max-width: 520px; }
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232,224,208,0.5);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 639px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--cream-light);
  transition: var(--transition);
  outline: none;
}

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

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

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

/* Form Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}

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

.success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-50);
  border-radius: 50%;
  margin-bottom: 4px;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
}

.form-success p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  background: var(--emerald-900);
  color: rgba(255,255,255,0.8);
}

.footer-inner {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
  }
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

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

@media (max-width: 639px) {
  .footer-links { grid-template-columns: 1fr; }
}

.footer-col strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  transition: var(--transition);
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--emerald-100);
  padding-left: 4px;
}

.footer-col p {
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s 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; }
