/* ═══════════════════════════════════════════════════════════════
   GreenCarp — style.css
   Full site stylesheet: global + components + about page
   Font: Playfair Display (display) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --primary:       #1a2f1a;
  --primary-light: #2c4a2c;
  --primary-mid:   #3d6b3d;
  --accent:        #d4a373;
  --accent-light:  #e9c99f;
  --bg:            #f7f4ef;
  --bg-dark:       #ede9e0;
  --text:          #111111;
  --text-muted:    #6b7280;
  --white:         #ffffff;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --transition:    all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  position: relative;
}

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

a, button { transition: var(--transition); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }

/* ─── HEADER ─────────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  box-shadow: 0 2px 40px rgba(0,0,0,0.07);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  z-index: 2000;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: var(--transition);
}

header.scrolled .logo-img { height: 54px; }

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

header.scrolled nav ul li a { color: var(--text); }

header nav ul li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

header nav ul li > a {
  padding: 1.5rem 1rem;
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

header.scrolled nav ul li > a { color: var(--text); }

header nav ul li > a::after {
  content: '';
  position: absolute;
  bottom: 1.2rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: right;
}

header nav ul li:hover > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(247, 244, 239, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  width: 900px;
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  z-index: 1001;
  margin-top: -10px;
}

header nav ul li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-col h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 0.5rem;
}

.mega-col ul {
  display: flex !important;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
}

.mega-col ul li { width: 100%; }

.mega-col ul li a {
  padding: 0 !important;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  display: block;
  transition: var(--transition);
}

.mega-col ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.mega-col ul li a::after { display: none; }

.header-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 2001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

header.scrolled .mobile-menu-toggle span { background: var(--text); }

/* ─── HERO (homepage) ────────────────────────────────────────── */
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 4rem;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 10s linear;
}

.hero:hover .hero-bg img { transform: scale(1.05); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 0.9;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ─── BUTTONS (global) ───────────────────────────────────────── */
.btn {
  padding: 1.2rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

/* ─── CATEGORIES (homepage) ──────────────────────────────────── */
.categories {
  padding: clamp(4rem, 10vw, 8rem) 4rem;
  background: var(--bg);
}

.category-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 450px 450px;
  gap: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.cat-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.cat-camping { grid-row: span 2; }

.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7));
}

.category-content {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  z-index: 2;
  color: var(--white);
}

.category-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.cat-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 2.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
}

.cat-overlay h3 { font-size: 2rem; margin-bottom: 0.5rem; }

.cat-overlay p {
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ─── PRODUCTS (homepage) ────────────────────────────────────── */
.products { padding: 4rem 4rem 8rem; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.section-title span {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.section-title h2 { font-size: 3rem; }

.view-all {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
  font-size: 0.9rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card { transition: var(--transition); }

.product-image {
  aspect-ratio: 4/5;
  background: #eee;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-info h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.product-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price { font-weight: 700; font-size: 1rem; }

/* ─── WHATSAPP BUTTON ─────────────────────────────────── */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  background: #25d366;
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─── STORY (homepage) ───────────────────────────────────────── */
.story {
  padding: clamp(4rem, 8vw, 10rem) 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 8rem);
  align-items: center;
  background: var(--white);
  max-width: 1400px;
  margin: 6rem auto;
  border-radius: 8px;
  position: relative;
  z-index: 5;
}

.story-image, .story-content { min-width: 0; }

.story-image {
  position: relative;
  width: 100%;
}

.story-image img {
  width: 100%; height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-content { max-width: 550px; }

.story-content h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  margin-bottom: 2.5rem;
  color: var(--primary);
}

.story-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* ─── WHY SECTION (homepage variant) ────────────────────────── */
.why-section {
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.why-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,128,0,0.08), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover::before { opacity: 1; }

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.why-icon {
  width: 64px; height: 64px;
  margin-bottom: 1.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #4CAF50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
}

.why-card:hover .why-icon { transform: scale(1.1) rotate(3deg); }

.why-icon svg { width: 28px; height: 28px; }

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: var(--primary);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── PAGE HERO (generic inner pages) ───────────────────────── */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 30% 20%, #2c4a2c, #1a2f1a 60%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.15;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.page-hero p { color: rgba(255,255,255,0.8); }

/* ─── CONTACT INFO ───────────────────────────────────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: 8px;
  text-align: center;
}

.contact-info-card .icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-info-card a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info-card a:hover { color: var(--accent); }

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  padding: 1rem 4rem;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  max-width: 1400px;
  margin: 0 auto;
}

.breadcrumb-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-list li a {
  color: var(--text);
  text-decoration: none;
}

.breadcrumb-list li a:hover { color: var(--primary); }

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb-list li:last-child {
  color: var(--primary);
  font-weight: 500;
}

/* ─── CONTACT PAGE ────────────────────────────────────────── */
.contact-section {
  padding: clamp(4rem, 8vw, 8rem) 4rem;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.contact-detail {
  padding: 1.5rem;
  background: var(--bg-dark);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.contact-detail h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid var(--bg-dark);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

/* ─── SHOP PAGE ───────────────────────────────────────────── */
.shop-section {
  padding: clamp(4rem, 8vw, 8rem) 4rem;
}

.shop-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.filters {
  display: flex;
  gap: 0.8rem;
}

/* ─── LEGAL PAGE ──────────────────────────────────────────── */
.legal-page {
  padding-top: 10rem;
}

.legal-page h1 {
  font-family: 'Playfair Display', serif;
}

.legal-page h3 {
  font-size: 1.3rem;
  color: var(--primary);
}

.legal-page p {
  color: var(--text-muted);
  line-height: 1.8;
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.text-link {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  font-size: 0.9rem;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  padding: 6rem 4rem 4rem;
  border-top: 1px solid #ddd;
  background: var(--primary);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  max-width: 400px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.footer-links ul { list-style: none; }

.footer-links ul li { margin-bottom: 0.8rem; }

.footer-links ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* ─── FOOTER SOCIAL ICONS ─────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--accent); }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes expandLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 600px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  z-index: 5000;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  animation: cookieSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.active { display: flex; }

.cookie-content p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  white-space: nowrap;
}

.cookie-actions .btn { padding: 1rem 2rem; font-size: 0.85rem; }

.cookie-actions .btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.1);
}

.cookie-actions .btn-secondary:hover { background: rgba(0,0,0,0.05); }
.cookie-actions .btn-primary { background: var(--primary); color: var(--white); }

@keyframes cookieSlideUp {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ─── MOBILE NAV ─────────────────────────────────────────────── */
#mobile-overlay { display: none; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — Specific Styles
   ═══════════════════════════════════════════════════════════════ */

/* ─── ABOUT HERO ─────────────────────────────────────────────── */
.about-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,20,10,0.95) 0%, rgba(10,20,10,0.4) 50%, transparent 100%),
    linear-gradient(to right, rgba(10,20,10,0.6) 0%, transparent 60%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5rem 6rem;
  max-width: 700px;
}

.about-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s var(--ease) forwards;
}

.eyebrow-line {
  width: 36px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}

.about-hero-title em {
  font-style: italic;
  color: var(--accent);
}

.about-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s var(--ease) forwards;
}

/* Floating stats card */
.about-hero-card {
  position: absolute;
  right: 5rem;
  bottom: 5rem;
  z-index: 3;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 1s var(--ease) forwards;
}

.hero-card-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.hero-card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.hero-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-card-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-card-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Scroll cue */
.about-hero-scroll {
  position: absolute;
  left: 5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 0.8s 1.4s var(--ease) forwards;
}

.scroll-line {
  width: 50px; height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ─── MARQUEE ─────────────────────────────────────────────────── */
.gc-marquee {
  background: var(--accent);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.gc-marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.gc-marquee-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0 2rem;
}

.gc-dot {
  color: var(--primary-mid) !important;
  opacity: 0.5;
  padding: 0 !important;
}

/* ─── STORY SECTION ──────────────────────────────────────────── */
.gc-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  padding: 9rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gc-story-img-col {
  position: relative;
}

.gc-story-img-frame {
  position: relative;
}

.gc-story-img-frame img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 36px 36px 0 var(--bg-dark);
}

.gc-story-badge {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 120px; height: 120px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 4px solid var(--bg);
}

.gc-story-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  line-height: 1;
}

.gc-story-badge span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 0.25rem;
}

.gc-story-text-col { padding-bottom: 2rem; }

.gc-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.gc-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.gc-label--light { color: var(--accent-light); }
.gc-label--light::before { background: var(--accent-light); }

.gc-story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 2rem;
}

.gc-story-title em {
  font-style: italic;
  color: var(--text);
}

.gc-story-text-col p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

/* ─── GC BUTTONS ─────────────────────────────────────────────── */
.gc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  margin-top: 1rem;
}

.gc-btn-dark {
  background: var(--primary);
  color: var(--white);
}

.gc-btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26,47,26,0.3);
}

.gc-btn-sand {
  background: var(--accent);
  color: var(--primary);
}

.gc-btn-sand:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212,163,115,0.4);
}

.gc-btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.gc-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}

/* ─── STATS STRIP ────────────────────────────────────────────── */
.gc-stats {
  background: var(--primary);
  padding: 6rem 5rem;
}

.gc-stats-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 3rem;
}

.gc-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gc-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  color: var(--accent);
  line-height: 1;
}

.gc-stat-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.gc-stat-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.55;
  max-width: 190px;
}

/* ─── CATEGORIES ─────────────────────────────────────────────── */
.gc-cats {
  padding: 9rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gc-cats-header {
  margin-bottom: 4rem;
}

.gc-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.gc-section-title--light { color: var(--white); }

.gc-section-sub {
  font-size: 1rem;
  color: var(--text-muted);
}

.gc-cats-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.gc-cat-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--bg-dark);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.gc-cat-card--large {
  grid-row: span 2;
  background: var(--primary);
  color: var(--white);
}

.gc-cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--accent), var(--primary-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.gc-cat-card:hover::before { transform: scaleX(1); }

.gc-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  z-index: 1;
}

.gc-cat-card--large:hover {
  box-shadow: 0 20px 50px rgba(26,47,26,0.4);
}

.gc-cat-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.gc-cat-card--large .gc-cat-icon { color: var(--accent); }
.gc-cat-card:not(.gc-cat-card--large) .gc-cat-icon { color: var(--primary); }

.gc-cat-icon svg { width: 36px; height: 36px; }

.gc-cat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.gc-cat-card--large h3 { color: var(--white); font-size: 1.9rem; }
.gc-cat-card:not(.gc-cat-card--large) h3 { color: var(--primary); }

.gc-cat-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.gc-cat-card--large p { color: rgba(255,255,255,0.6); }
.gc-cat-card:not(.gc-cat-card--large) p { color: var(--text-muted); }

.gc-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.3s var(--ease);
}

.gc-cat-card--large .gc-cat-link { color: var(--accent); }
.gc-cat-card:not(.gc-cat-card--large) .gc-cat-link { color: var(--primary); }

.gc-cat-link:hover { gap: 1rem; }

/* ─── WHY US (about page) ────────────────────────────────────── */
.gc-why {
  position: relative;
  padding: 9rem 5rem;
  overflow: hidden;
}

.gc-why-bg {
  position: absolute;
  inset: 0;
  background: var(--primary);
  z-index: 0;
}

.gc-why-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,163,115,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(61,107,61,0.15) 0%, transparent 50%);
}

.gc-why-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}

.gc-why-head {
  margin-bottom: 4rem;
}

.gc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.gc-why-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.gc-why-item:nth-child(3n) { border-right: none; }
.gc-why-item:nth-child(4),
.gc-why-item:nth-child(5),
.gc-why-item:nth-child(6) { border-bottom: none; }

.gc-why-item:hover { background: rgba(255,255,255,0.04); }

.gc-why-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212,163,115,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.35s;
}

.gc-why-item:hover .gc-why-num { color: rgba(212,163,115,0.35); }

.gc-why-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.gc-why-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ─── SERVICE AREAS ──────────────────────────────────────────── */
.gc-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  padding: 9rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gc-service-text .gc-section-title { margin-bottom: 1.5rem; }

.gc-service-text .gc-section-title em {
  font-style: italic;
  color: var(--text-muted);
}

.gc-service-text > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.gc-service-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid var(--bg-dark);
  border-radius: 8px;
  overflow: hidden;
}

.gc-service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--bg-dark);
  background: var(--white);
  transition: background 0.3s;
}

.gc-service-row:last-child { border-bottom: none; }
.gc-service-row:hover { background: var(--bg); }

.gc-service-city {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary);
}

.gc-service-city svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.gc-service-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  background: var(--bg-dark);
  color: var(--text-muted);
}

.gc-service-badge--fast {
  background: rgba(26,47,26,0.1);
  color: var(--primary);
}

/* Service visual */
.gc-service-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.gc-service-circles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,47,26,0.12);
}

.gc-circle--1 { width: 200px; height: 200px; }
.gc-circle--2 { width: 320px; height: 320px; animation: pulse-ring 3s 0.5s ease-out infinite; }
.gc-circle--3 { width: 420px; height: 420px; animation: pulse-ring 3s 1s ease-out infinite; }

.gc-service-map-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--bg-dark);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.gc-map-pin {
  width: 52px; height: 52px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.gc-map-pin svg { width: 26px; height: 26px; }

.gc-service-map-card strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.gc-service-map-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── CTA ────────────────────────────────────────────────────── */
.gc-cta {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

.gc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(212,163,115,0.12) 0%, transparent 55%),
    radial-gradient(circle at 90% 50%, rgba(61,107,61,0.2) 0%, transparent 50%);
}

.gc-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 9rem 3rem;
  text-align: center;
}

.gc-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.gc-cta-inner h2 em {
  font-style: italic;
  color: var(--accent);
}

.gc-cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
}

.gc-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  header { padding: 1rem 2rem; }
  header.scrolled { padding: 0.8rem 2rem; }

  .mobile-menu-toggle { display: flex; }

  header nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 400px;
    height: 100vh;
    background: var(--white);
    padding: 8rem 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 2000;
    overflow-y: auto;
    visibility: hidden;
  }

  header nav.active { right: 0; visibility: visible; }

  header nav ul { flex-direction: column; gap: 2rem; }
  header nav ul li > a { font-size: 1.5rem; padding: 0; color: var(--text) !important; }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    padding: 1.5rem 0;
    box-shadow: none;
    border: none;
    background: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }

  header nav ul li:hover .mega-menu { display: grid; }

  /* About page tablet adjustments */
  .about-hero-content { padding: 0 3rem 5rem; }
  .about-hero-card { right: 3rem; bottom: 3rem; }
  .about-hero-scroll { display: none; }

  .gc-story { grid-template-columns: 1fr; gap: 5rem; padding: 6rem 3rem; }
  .gc-story-badge { bottom: -2rem; right: -1rem; }

  .gc-stats { padding: 5rem 3rem; }
  .gc-stats-inner { grid-template-columns: repeat(2, 1fr); }

  .gc-cats { padding: 6rem 3rem; }
  .gc-cats-grid { grid-template-columns: 1fr 1fr; }
  .gc-cat-card--large { grid-row: span 1; grid-column: span 2; }

  .gc-why { padding: 6rem 3rem; }
  .gc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .gc-why-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .gc-why-item:nth-child(2n) { border-right: none; }
  .gc-why-item:nth-child(4),
  .gc-why-item:nth-child(5),
  .gc-why-item:nth-child(6) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gc-why-item:nth-child(5),
  .gc-why-item:nth-child(6) { border-bottom: none; }

  .gc-service { grid-template-columns: 1fr; gap: 4rem; padding: 6rem 3rem; }
  .gc-service-visual { height: 300px; }

  .story { grid-template-columns: 1fr; padding: 5rem 2rem; }
  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  header nav#main-nav { display: none !important; }

  #mobile-overlay {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
  }

  #mobile-overlay.active { right: 0; }

  .mobile-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f2f2f2;
  }

  .mobile-close-btn {
    background: none; border: none;
    font-size: 2rem; color: #000; cursor: pointer;
  }

  .mobile-nav-container {
    flex: 1; position: relative; overflow: hidden;
  }

  .mobile-nav-list {
    list-style: none; padding: 0; margin: 0;
  }

  .mobile-nav-list li { border-bottom: 1px solid #f2f2f2; }

  .mobile-nav-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    color: #111;
    text-decoration: none;
    font-weight: 500;
  }

  .mobile-drill-trigger::after {
    content: '';
    width: 10px; height: 10px;
    border-right: 1.5px solid #000;
    border-bottom: 1.5px solid #000;
    transform: rotate(-45deg);
  }

  .mobile-view {
    position: absolute;
    top: 0; left: 100%;
    width: 100%; height: 100%;
    background: #fff;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    display: flex;
    flex-direction: column;
  }

  .mobile-nav-container.drilled .mobile-view { left: 0; }

  .mobile-back-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid #f2f2f2;
  }

  .mobile-back-btn {
    background: none; border: none;
    font-size: 1.8rem; color: #000; cursor: pointer; padding: 0; line-height: 1;
  }

  .view-title { font-size: 1.1rem; font-weight: 600; color: #000; }
  .view-all-link { font-weight: 700 !important; color: var(--primary) !important; letter-spacing: 1px; }

  /* About page mobile */
  .about-hero { min-height: 85vh; }
  .about-hero-content { padding: 0 1.8rem 4rem; }
  .about-hero-card { display: none; }
  .about-hero-scroll { display: none; }

  .gc-story { padding: 5rem 1.8rem; gap: 3rem; }
  .gc-story-badge { width: 90px; height: 90px; bottom: -1.5rem; right: -0.5rem; }
  .gc-story-badge strong { font-size: 1.4rem; }

  .gc-stats { padding: 4rem 1.8rem; }
  .gc-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

  .gc-cats { padding: 5rem 1.8rem; }
  .gc-cats-grid { grid-template-columns: 1fr; }
  .gc-cat-card--large { grid-column: span 1; }

  .gc-why { padding: 5rem 1.8rem; }
  .gc-why-grid { grid-template-columns: 1fr; }
  .gc-why-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .gc-why-item:last-child { border-bottom: none !important; }

  .gc-service { padding: 5rem 1.8rem; gap: 3rem; }
  .gc-service-visual { height: 250px; }

  .gc-cta-inner { padding: 6rem 1.8rem; }
  .gc-cta-btns { flex-direction: column; align-items: center; }
  .gc-btn { width: 100%; justify-content: center; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .section-title h2 { font-size: 2.2rem; }

  .hero { min-height: 70vh; padding: 4rem 2rem; align-items: flex-end; }
  .hero-content h1 { font-size: min(2.5rem, 10vw); margin-bottom: 2.5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .category-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .cat-card { height: 350px; grid-row: span 1 !important; }
  .product-grid { grid-template-columns: 1fr; }

  footer { padding: 4rem 1.8rem 3rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .contact-info-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding: 1rem 1.8rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .shop-section { padding: 3rem 1.8rem; }

  .page-hero { padding: 6rem 2rem 3rem; min-height: 35vh; }
}

/* ═══════════════════════════════════════════════════════════════
   INDEX PAGE — Homepage-Specific Styles
   ═══════════════════════════════════════════════════════════════ */

/* ─── HERO ENHANCEMENTS (index only) ────────────────────────── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10,20,10,0.75) 0%, rgba(10,20,10,0.2) 65%, transparent 100%),
    linear-gradient(to top, rgba(10,20,10,0.5) 0%, transparent 50%);
}

.hero-content {
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ─── HOME STATS STRIP ───────────────────────────────────────── */
.home-stats {
  background: var(--white);
  border-bottom: 1px solid var(--bg-dark);
}

.home-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.home-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 2rem;
  text-align: center;
}

.home-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.home-stat-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-stat-divider {
  width: 1px;
  height: 50px;
  background: var(--bg-dark);
  flex-shrink: 0;
}

/* ─── HOME STORY SPLIT ───────────────────────────────────────── */
.home-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 8rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.home-story-img {
  position: relative;
}

.home-story-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 36px 36px 0 var(--bg-dark);
  display: block;
}

.home-story-badge {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 110px;
  height: 110px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  border: 4px solid var(--bg);
}

.home-story-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  line-height: 1;
}

.home-story-badge span {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 0.2rem;
}

.home-story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.home-story-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.home-testimonials {
  background: var(--bg-dark);
  padding: 7rem 5rem;
}

.home-testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.testimonial-stars {
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── HOME CTA BANNER ────────────────────────────────────────── */
.home-cta {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(212,163,115,0.12) 0%, transparent 55%),
    radial-gradient(circle at 90% 50%, rgba(61,107,61,0.2) 0%, transparent 50%);
}

.home-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 8rem 3rem;
  text-align: center;
}

.home-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
}

.home-cta-inner h2 em {
  font-style: italic;
  color: var(--accent);
}

.home-cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
}

.home-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE: INDEX-SPECIFIC ────────────────────────────── */
@media (max-width: 1024px) {
  .home-story {
    grid-template-columns: 1fr;
    gap: 5rem;
    padding: 6rem 3rem;
  }

  .home-story-badge {
    bottom: -2rem;
    right: -1rem;
  }

  .home-stats-inner {
    padding: 3rem;
    gap: 0;
  }

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

  .home-testimonials {
    padding: 5rem 3rem;
  }
}

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

  .hero-content h1 { font-size: min(2.8rem, 11vw); }
  .hero-desc { font-size: 0.9rem; }

  .home-stats-inner {
    flex-wrap: wrap;
    padding: 2.5rem 2rem;
    gap: 1.5rem;
  }

  .home-stat {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .home-stat-divider { display: none; }

  .home-story {
    padding: 5rem 1.8rem;
    gap: 3.5rem;
  }

  .home-story-badge {
    width: 85px;
    height: 85px;
    right: -0.5rem;
    bottom: -1.5rem;
  }

  .home-story-badge strong { font-size: 1.3rem; }

  .home-testimonials {
    padding: 4rem 1.8rem;
  }

  .home-cta-inner {
    padding: 6rem 1.8rem;
  }

  .home-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .home-cta-btns .gc-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SHOP PAGE — Shop-Specific Styles
   ═══════════════════════════════════════════════════════════════ */

/* ─── SHOP HERO ─────────────────────────────────────────────── */
.shop-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 5rem 4rem;
  overflow: hidden;
}

.shop-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.shop-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10,20,10,0.8) 0%, rgba(10,20,10,0.4) 60%, transparent 100%),
    linear-gradient(to top, rgba(10,20,10,0.6) 0%, transparent 50%);
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.shop-breadcrumb a:hover {
  color: var(--accent);
}

.shop-bc-sep {
  color: rgba(255,255,255,0.3);
}

.shop-breadcrumb span:last-child {
  color: var(--white);
}

.shop-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.shop-hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

.shop-hero-content p {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.7;
}

/* ─── SHOP TOOLBAR / FILTER TABS ───────────────────────────── */
.shop-toolbar {
  background: var(--white);
  border-bottom: 1px solid var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 90;
}

.shop-toolbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.shop-filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.shop-tab {
  background: none;
  border: 1.5px solid var(--bg-dark);
  border-radius: 100px;
  padding: 0.55rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.shop-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.shop-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.shop-result-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.shop-result-count span {
  font-weight: 700;
  color: var(--primary);
}

/* ─── SHOP CATALOG ─────────────────────────────────────────── */
.shop-catalog {
  background: var(--bg);
  padding: 4rem 0;
}

.shop-catalog-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5rem;
}

.shop-catalog .product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ─── SHOP CTA ─────────────────────────────────────────────── */
.shop-cta {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

.shop-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(212,163,115,0.12) 0%, transparent 55%),
    radial-gradient(circle at 90% 50%, rgba(61,107,61,0.2) 0%, transparent 50%);
}

.shop-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  padding: 7rem 3rem;
  text-align: center;
}

.shop-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.shop-cta-inner h2 em {
  font-style: italic;
  color: var(--accent);
}

.shop-cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.shop-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE: SHOP-SPECIFIC ─────────────────────────────── */
@media (max-width: 1024px) {
  .shop-hero { padding: 5rem 3rem 3.5rem; min-height: 40vh; }
  .shop-toolbar-inner { padding: 1rem 3rem; }
  .shop-catalog-inner { padding: 0 3rem; }
  .shop-catalog .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .shop-hero {
    min-height: 45vh;
    padding: 5rem 1.8rem 3rem;
  }

  .shop-hero-content h1 { font-size: min(2.5rem, 10vw); }

  .shop-toolbar-inner {
    padding: 1rem 1.8rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .shop-catalog { padding: 3rem 0; }
  .shop-catalog-inner { padding: 0 1.8rem; }
  .shop-catalog .product-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .shop-cta-inner { padding: 5rem 1.8rem; }
  .shop-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .shop-cta-btns .gc-btn {
    width: 100%;
    justify-content: center;
  }
}