/* ============================================
   CastelVerdi — Premium Home Décor
   Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --bg: #f8f6f3;
  --bg-white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #5c5c5c;
  --text-light: #9a9a9a;
  --green: #5a7a5a;
  --green-light: #7a9a7a;
  --green-pale: #eef2ee;
  --border: #e2ddd8;
  --border-light: #ede9e4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 2px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 { font-weight: 400; line-height: 1.2; }

.serif { font-family: var(--font-serif); }

.text-xs  { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.text-sm  { font-size: 0.875rem; }
.text-md  { font-size: 1rem; }
.text-lg  { font-size: 1.25rem; }
.text-xl  { font-size: 1.5rem; }
.text-2xl { font-size: 2rem; }
.text-3xl { font-size: 2.75rem; }
.text-4xl { font-size: 3.5rem; }

.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }

.text-center { text-align: center; }
.text-muted   { color: var(--text-mid); }
.text-light   { color: var(--text-light); }
.text-green   { color: var(--green); }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 8rem 0; }

.grid { display: grid; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-6 { gap: 3rem; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 246, 243, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition);
  font-weight: 500;
}

.nav-wa-btn:hover { background: #4a6a4a; }

.nav-wa-btn svg { width: 14px; height: 14px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  margin-top: 70px;
  height: calc(100vh - 70px);
  min-height: 600px;
  max-height: 900px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 40%, #c8c4b8 100%);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

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

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.08;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--text-dark);
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: white;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 2rem;
  background: var(--green);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-green:hover {
  background: #4a6a4a;
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-light), transparent);
}

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

/* ============================================
   COLLECTIONS / FEATURED GRID
   ============================================ */

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #e8e4dc;
  border-radius: var(--radius);
}

.collection-card:first-child {
  grid-row: span 2;
}

.collection-img {
  width: 100%;
  padding-bottom: 120%;
  background: linear-gradient(135deg, #d8d4cc 0%, #c4c0b4 100%);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.collection-card:first-child .collection-img {
  padding-bottom: 240%;
}

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

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

.collection-info {
  padding: 1.2rem;
  background: var(--bg-white);
}

.collection-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.collection-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 0.5rem;
  transition: color var(--transition);
}

.collection-link:hover { color: var(--green); }

.collection-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.collection-link:hover svg { transform: translateX(3px); }

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
}

.section-title em { font-style: italic; }

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-top: 0.75rem;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
}

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

/* ============================================
   PRODUCT CARDS
   ============================================ */

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

.product-card {
  cursor: pointer;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
  border: 1px solid var(--border-light);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-bottom: 110%;
}

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

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

.product-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ede9e2 0%, #ddd9d0 100%);
}

.product-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.25;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: var(--text-dark);
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  z-index: 2;
}

.product-badge.badge-new {
  background: var(--green);
}

.product-badge.badge-promo {
  background: #a05a3a;
}

.product-info {
  padding: 1rem 1.1rem 1.2rem;
}

.product-category {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.product-name {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.product-price span {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 0.2rem;
}

.product-cta {
  display: none;
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  background: var(--text-dark);
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  width: 100%;
  text-align: center;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.product-card:hover .product-cta { display: block; }
.product-cta:hover { background: var(--green); }

/* ============================================
   MARQUEE / TICKER
   ============================================ */

.marquee-section {
  padding: 1rem 0;
  background: var(--text-dark);
  color: white;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ============================================
   BRAND STORY
   ============================================ */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.story-img-main {
  width: 100%;
  padding-bottom: 130%;
  background: linear-gradient(160deg, #d4cfc4 0%, #b8b4a8 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.story-img-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  padding-bottom: 55%;
  background: var(--green-pale);
  border-radius: var(--radius);
  border: 8px solid var(--bg);
  overflow: hidden;
}

.story-img-accent img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content { }

.story-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green);
  padding-left: 1.5rem;
  border-left: 2px solid var(--green);
  margin: 2rem 0;
  line-height: 1.7;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.story-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.story-feature-icon {
  width: 32px;
  height: 32px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-feature-icon svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.story-feature-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.story-feature-text span {
  font-size: 0.78rem;
  color: var(--text-mid);
}

/* ============================================
   INSTAGRAM GALLERY
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--border);
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-img {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-item:nth-child(1) .gallery-img,
.gallery-item:nth-child(4) .gallery-img {
  padding-bottom: 50%;
}

.gallery-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(26,26,26,0.35);
}

.gallery-overlay svg {
  width: 28px;
  height: 28px;
  color: white;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay svg { opacity: 1; }

/* ============================================
   CATALOGUE PAGE
   ============================================ */

.page-hero {
  margin-top: 70px;
  padding: 5rem 0 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.breadcrumb a { color: var(--text-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--border); }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: var(--transition);
  background: var(--bg-white);
  font-family: var(--font-sans);
}

.filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.filter-btn.active {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: white;
}

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

.product-card-cat {
  cursor: pointer;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--border-light);
}

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

.product-card-cat .product-img-wrap {
  padding-bottom: 100%;
}

.load-more-wrap {
  text-align: center;
  margin-top: 4rem;
  padding-bottom: 2rem;
}

/* ============================================
   PRODUCT MODAL
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-white);
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: sticky;
  top: 0;
  right: 0;
  float: right;
  margin: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition);
  border: 1px solid var(--border);
  cursor: pointer;
}

.modal-close:hover { background: var(--bg); }
.modal-close svg { width: 16px; height: 16px; color: var(--text-dark); }

.modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 400px;
}

.modal-images {
  position: relative;
}

.modal-img-main {
  width: 100%;
  padding-bottom: 100%;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.modal-img-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.modal-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.modal-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.modal-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
  margin-left: 0.25rem;
}

.modal-divider {
  height: 1px;
  background: var(--border-light);
  margin: 1.5rem 0;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
}

.modal-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-mid);
}

.modal-feature svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

.modal-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #25D366;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  margin-top: auto;
  width: 100%;
  font-family: var(--font-sans);
}

.modal-wa-btn:hover {
  background: #20b859;
  transform: translateY(-1px);
}

.modal-wa-btn svg { width: 20px; height: 20px; }

.modal-note {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  margin-top: 70px;
  padding: 6rem 0 5rem;
  background: linear-gradient(160deg, var(--bg) 0%, #ece8e0 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(90,122,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.1;
}

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

.about-hero-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

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

.value-card {
  padding: 2.5rem 2rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  text-align: center;
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.value-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.value-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.value-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  transform: translateX(-3.5px);
}

.timeline-year {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.timeline-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  margin-bottom: 1rem;
  transition: box-shadow var(--transition);
}

.contact-info-item:hover { box-shadow: var(--shadow-sm); }

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; color: var(--green); }

.contact-info-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-info-value a {
  color: var(--text-dark);
  transition: color var(--transition);
}

.contact-info-value a:hover { color: var(--green); }

.contact-wa-block {
  padding: 2.5rem;
  background: var(--text-dark);
  border-radius: var(--radius);
  color: white;
  text-align: center;
}

.contact-wa-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.contact-wa-text {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: #25D366;
  color: white;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.contact-wa-btn:hover {
  background: #20b859;
  transform: translateY(-2px);
}

.contact-wa-btn svg { width: 20px; height: 20px; }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.25rem;
}

.footer-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.footer-social a svg { width: 15px; height: 15px; }

.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   UTILITIES
   ============================================ */

.divider {
  height: 1px;
  background: var(--border-light);
  margin: 0;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  font-weight: 500;
}

.hidden { display: none !important; }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   SKELETON LOADING
   ============================================ */

.skeleton {
  background: linear-gradient(90deg, #ede9e2 25%, #e4e0d8 50%, #ede9e2 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes skeleton-loading {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card:first-child { grid-row: span 1; }
  .collection-card:first-child .collection-img { padding-bottom: 120%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav-wa-btn span { display: none; }
  .hero { min-height: 500px; max-height: 700px; }
  .hero-title { font-size: 2.4rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .collections-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-img-accent { display: none; }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-img-main { padding-bottom: 80%; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 3; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .section-header-split { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .catalogue-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
