/* =====================================================
   RAYHUEN FLORES NATURALES — Design System CSS
   Jardín de Rayhuen | Est. 2002 | Villa Ballester
   ===================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --linen-cream: #FAF7F2;
  --pure-petal: #FFFFFF;
  --forest-deep: #1B3A2D;
  --sage-whisper: #6B7B6E;
  --whisper-vine: rgba(45, 87, 64, 0.08);
  --botanical-gold: #C4973B;
  --botanical-gold-hover: #B08530;
  --botanical-gold-light: rgba(196, 151, 59, 0.1);
  --whisper-shadow: rgba(27, 58, 45, 0.04);
  --deep-shadow: rgba(27, 58, 45, 0.08);

  /* Typography */
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --breath-xs: clamp(0.75rem, 2vw, 1rem);
  --breath-sm: clamp(1.5rem, 3vw, 2rem);
  --breath-md: clamp(2rem, 5vw, 3rem);
  --breath-lg: clamp(3rem, 8vw, 5rem);
  --breath-xl: clamp(4rem, 10vw, 8rem);
  --section-gap: clamp(4rem, 10vw, 8rem);

  /* Radii */
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 9999px;

  /* Container */
  --container-max: 1400px;
  --container-padding: clamp(1.5rem, 5vw, 4rem);

  /* Transitions */
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--forest-deep);
  background-color: var(--linen-cream);
  line-height: 1.6;
  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;
  transition: color var(--duration-fast) ease;
}

ul, ol {
  list-style: none;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding: var(--section-gap) 0;
}

.surface-white {
  background-color: var(--pure-petal);
}

.surface-cream {
  background-color: var(--linen-cream);
}

/* Grid Systems */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.grid-2-asymmetric {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.grid-2-reverse {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.grid-3-asym {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}

/* ---------- Typography ---------- */
.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest-deep);
  letter-spacing: -0.02em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
  margin-bottom: var(--breath-sm);
}

.subsection-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest-deep);
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.25;
}

.label-caps {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--botanical-gold);
  display: inline-block;
  margin-bottom: var(--breath-xs);
}

.subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--sage-whisper);
  max-width: 55ch;
  line-height: 1.65;
}

.body-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--forest-deep);
  line-height: 1.6;
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform var(--duration-fast) var(--spring),
              background-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background-color: var(--botanical-gold);
  color: var(--pure-petal);
}

.btn-primary:hover {
  background-color: var(--botanical-gold-hover);
  transform: translateY(-2px) scale(1.02);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
}

.btn-secondary {
  background-color: transparent;
  color: var(--forest-deep);
  border: 1.5px solid var(--forest-deep);
}

.btn-secondary:hover {
  background-color: var(--forest-deep);
  color: var(--pure-petal);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--botanical-gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--duration-normal) var(--spring);
}

.btn-text::after {
  content: '→';
  transition: transform var(--duration-normal) var(--spring);
}

.btn-text:hover {
  gap: 0.75rem;
}

.btn-text:hover::after {
  transform: translateX(4px);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--whisper-vine);
  transition: box-shadow var(--duration-normal) ease;
}

.header.scrolled {
  box-shadow: 0 4px 30px var(--whisper-shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1001;
}

.logo-accent {
  color: var(--botanical-gold);
  font-style: italic;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-whisper);
  display: block;
  margin-top: -0.15rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-whisper);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  transition: color var(--duration-fast) ease,
              background-color var(--duration-fast) ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--forest-deep);
  background-color: var(--whisper-vine);
}

.nav-cta {
  margin-left: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--forest-deep);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--spring),
              opacity var(--duration-fast) ease,
              background-color var(--duration-fast) ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Subpage Header ---------- */
.subpage-header {
  position: relative;
  background-color: var(--forest-deep);
  color: var(--pure-petal);
  padding: clamp(6.5rem, 14vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
  text-align: center;
  overflow: hidden;
}

.subpage-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 20%, rgba(196, 151, 59, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.subpage-header .display-title {
  color: var(--pure-petal);
  margin-bottom: var(--breath-xs);
}

.subpage-header .subtitle {
  color: rgba(250, 247, 242, 0.8);
  margin: 0 auto;
}

/* ---------- Cards ---------- */
.card {
  background: var(--pure-petal);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 16px 48px var(--whisper-shadow);
  transition: transform var(--duration-normal) var(--spring),
              box-shadow var(--duration-normal) ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px var(--deep-shadow);
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--breath-sm);
}

/* ---------- Product / Service Cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.product-card {
  background: var(--pure-petal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--whisper-shadow);
  transition: transform var(--duration-normal) var(--spring),
              box-shadow var(--duration-normal) ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px var(--deep-shadow);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.product-card-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card-body {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-card-desc {
  color: var(--sage-whisper);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-card-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--botanical-gold);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--pure-petal);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 12px 40px var(--whisper-shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--botanical-gold-light);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--forest-deep);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-whisper);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.gallery-item:nth-child(1) {
  grid-row: 1 / 3;
}

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

/* ---------- Footer ---------- */
.footer {
  background-color: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pure-petal);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 30ch;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--botanical-gold);
  margin-bottom: 1.25rem;
}

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

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

.footer-links a:hover {
  color: var(--pure-petal);
}

.footer-info p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-info a {
  color: var(--botanical-gold);
  font-weight: 600;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast) ease,
              transform var(--duration-fast) var(--spring);
}

.footer-social a:hover {
  background: var(--botanical-gold);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--pure-petal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.footer-bottom a {
  color: var(--botanical-gold);
  font-weight: 600;
}

.footer-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 160px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(1.05);
}

/* ---------- Floating Actions ---------- */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform var(--duration-fast) var(--spring),
              box-shadow var(--duration-fast) ease;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

.btn-whatsapp {
  background-color: #25D366;
  animation: pulse-whatsapp 3s ease-in-out infinite;
}

.btn-whatsapp svg {
  fill: white;
}

@keyframes pulse-whatsapp {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.btn-whatsapp:hover {
  animation: none;
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.btn-instagram svg {
  fill: white;
}

.btn-scrolltop {
  background-color: var(--forest-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--duration-normal) ease,
              visibility var(--duration-normal) ease,
              transform var(--duration-normal) var(--spring);
}

.btn-scrolltop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-scrolltop svg {
  fill: var(--pure-petal);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- Hero Section with Background Image ---------- */
.hero-section {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 58, 45, 0.82) 0%,
    rgba(27, 58, 45, 0.65) 40%,
    rgba(27, 58, 45, 0.40) 70%,
    rgba(27, 58, 45, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--breath-xl);
  padding-bottom: var(--breath-xl);
}

/* Hero text color overrides — white on dark background */
.hero-title {
  color: var(--pure-petal);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.hero-btn-secondary {
  color: var(--pure-petal);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-btn-secondary:hover {
  background-color: var(--pure-petal);
  color: var(--forest-deep);
  border-color: var(--pure-petal);
}

.hero-stats {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.hero-stats .stat-number {
  color: var(--pure-petal);
}

.hero-stats .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

/* Counter animation enhancement */
.counter {
  display: inline-block;
  min-width: 2ch;
  font-variant-numeric: tabular-nums;
}

/* ---------- Hero Image Styling ---------- */
.hero-image-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
  /* Passepartout: white mat + gold frame */
  padding: 10px;
  background: var(--pure-petal);
  border: 2.5px solid var(--botanical-gold);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(196, 151, 59, 0.15);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.5px solid var(--botanical-gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-badge-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--botanical-gold);
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sage-whisper);
  line-height: 1.3;
}

/* ---------- Stats Row ---------- */
.stats-row {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: var(--breath-md);
  border-top: 1px solid var(--whisper-vine);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--forest-deep);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--sage-whisper);
  font-weight: 500;
}

/* ---------- Feature Alternating ---------- */
.feature-alt-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px var(--whisper-shadow);
}

.feature-alt-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.feature-alt-img:hover img {
  transform: scale(1.03);
}

/* ---------- Contact Form ---------- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--forest-deep);
  background-color: var(--pure-petal);
  border: 1.5px solid var(--whisper-vine);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--botanical-gold);
  box-shadow: 0 0 0 3px var(--botanical-gold-light);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--sage-whisper);
  opacity: 0.7;
}

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

/* ---------- Instagram Feed Mockup ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 45, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ---------- Breadcrumb Area Spacer ---------- */
.page-spacer {
  height: 72px;
}

/* ---------- Page Header / Banner ---------- */
.page-header {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: left;
}

/* ---------- Divider Ornament ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: var(--breath-md) 0;
}

.ornament-line {
  height: 1px;
  width: 60px;
  background: var(--whisper-vine);
}

.ornament-leaf {
  color: var(--botanical-gold);
  font-size: 1.25rem;
  opacity: 0.6;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .grid-2,
  .grid-2-asymmetric,
  .grid-2-reverse {
    grid-template-columns: 1fr;
    gap: var(--breath-md);
  }

  .grid-3-asym {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1) {
    grid-row: auto;
  }

  .gallery-item:nth-child(4) {
    grid-column: auto;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: var(--linen-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 1100;
    padding-top: 72px;
    padding-bottom: 2rem;

    /* Smooth transition */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity var(--duration-normal) ease,
                transform var(--duration-normal) var(--spring),
                visibility var(--duration-normal) ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    display: block;
    font-size: 1.35rem;
    padding: 1rem 2.5rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
    border-radius: var(--radius-md);
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: var(--whisper-vine);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .menu-toggle {
    display: flex;
    z-index: 1200;
  }

  .header {
    z-index: 1200;
  }

  .logo {
    z-index: 1200;
  }

  .header .nav-cta.btn-primary {
    display: none;
  }

  .grid-2,
  .grid-2-asymmetric,
  .grid-2-reverse,
  .grid-3-asym {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

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

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

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .floating-actions {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .hero-image-container {
    height: 350px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 0;
  }

  .hero-content {
    padding-top: var(--breath-lg);
    padding-bottom: var(--breath-lg);
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(27, 58, 45, 0.85) 0%,
      rgba(27, 58, 45, 0.70) 50%,
      rgba(27, 58, 45, 0.50) 100%
    );
  }

  .display-title br {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    bottom: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
  }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn-whatsapp {
    animation: none;
  }
}

/* Focus Visible */
*:focus-visible {
  outline: 2px solid var(--botanical-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--forest-deep);
  color: var(--pure-petal);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Selection ---------- */
::selection {
  background: var(--botanical-gold-light);
  color: var(--forest-deep);
}
