/* ==========================================
   FLORETUM VAULT - Luxury Botanical Tailoring
   Style System: Emerald Green, Rose Gold, Dark Moss, Ivory
   Fonts: Playfair Display & Inter
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&display=swap');

:root {
  --emerald: #064E3B;
  --emerald-light: #0B6E53;
  --emerald-dark: #033326;
  --rose-gold: #E11D48;
  --rose-gold-hover: #BE123C;
  --rose-gold-light: #FB7185;
  --rose-gold-accent: #D4AF37;
  --dark-moss: #022C22;
  --dark-moss-card: #043E31;
  --ivory: #FFFDF9;
  --ivory-muted: #F5F0E6;
  --ivory-card: #FAF6EE;
  --text-dark: #0D1F1B;
  --text-body: #2C3E3A;
  --text-muted: #64748B;
  --border-light: rgba(6, 78, 59, 0.12);
  --border-gold: rgba(212, 175, 55, 0.3);
  --shadow-sm: 0 4px 12px rgba(2, 44, 34, 0.05);
  --shadow-md: 0 10px 30px rgba(2, 44, 34, 0.1);
  --shadow-lg: 0 20px 40px rgba(2, 44, 34, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--dark-moss);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.gold-text {
  color: var(--rose-gold);
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(225, 29, 72, 0.08);
  color: var(--rose-gold);
  border: 1px solid rgba(225, 29, 72, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--emerald);
  color: var(--ivory);
  box-shadow: 0 4px 15px rgba(6, 78, 59, 0.25);
}

.btn-primary:hover {
  background: var(--dark-moss);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 44, 34, 0.35);
}

.btn-rose {
  background: linear-gradient(135deg, var(--rose-gold) 0%, #BE123C 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--dark-moss);
  border: 1px solid var(--emerald);
}

.btn-outline:hover {
  background: var(--emerald);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--rose-gold-accent);
}

.btn-outline-gold:hover {
  background: var(--rose-gold-accent);
  color: var(--dark-moss);
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-moss);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--rose-gold);
}

.logo-icon {
  width: 38px;
  height: 38px;
  fill: var(--emerald);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-moss);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--rose-gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--dark-moss);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-moss) 0%, var(--emerald-dark) 100%);
  color: var(--ivory);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(225, 29, 72, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(6, 78, 59, 0.4) 0%, transparent 50%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-subtitle {
  color: var(--rose-gold-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-subtitle::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--rose-gold-light);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-gold-accent);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 253, 249, 0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.hero-image-wrapper img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-card-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: rgba(2, 44, 34, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  color: var(--ivory);
  box-shadow: var(--shadow-lg);
}

.hero-card-badge strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  display: block;
  color: var(--rose-gold-accent);
}

.hero-card-badge p {
  font-size: 0.82rem;
  color: rgba(255,253,249,0.8);
}

/* Feature Grid & Cards */
.section-title-wrap {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: 2.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.product-card {
  background: var(--ivory-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(225, 29, 72, 0.3);
}

.product-img-box {
  position: relative;
  height: 340px;
  overflow: hidden;
  background-color: var(--dark-moss);
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(2, 44, 34, 0.85);
  color: var(--ivory);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.product-details {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rose-gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(6, 78, 59, 0.08);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-moss);
}

/* Category Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border-light);
  background: var(--ivory-card);
  color: var(--dark-moss);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--emerald);
  color: var(--ivory);
  border-color: var(--emerald);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
}

/* Botanical Heritage Section */
.heritage-section {
  background: var(--dark-moss);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

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

.heritage-content h2 {
  color: var(--ivory);
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}

.heritage-content p {
  color: rgba(255, 253, 249, 0.85);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.heritage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item h3 {
  color: var(--rose-gold-accent);
  font-size: 2.2rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 0.82rem;
  color: rgba(255, 253, 249, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reviews Carousel / Cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--ivory-card);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--rose-gold-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  color: var(--text-body);
}

.review-author h4 {
  font-size: 1.05rem;
  color: var(--dark-moss);
}

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

/* Floating Label Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-box {
  background: var(--ivory-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.floating-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.floating-input,
.floating-select,
.floating-textarea {
  width: 100%;
  padding: 1.2rem 1rem 0.4rem 1rem;
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

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

.floating-label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.floating-textarea ~ .floating-label {
  top: 1.2rem;
  transform: translateY(0);
}

.floating-input:focus,
.floating-select:focus,
.floating-textarea:focus,
.floating-input:not(:placeholder-shown),
.floating-select:valid,
.floating-textarea:not(:placeholder-shown) {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.floating-input:focus ~ .floating-label,
.floating-select:focus ~ .floating-label,
.floating-textarea:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label,
.floating-select:valid ~ .floating-label,
.floating-textarea:not(:placeholder-shown) ~ .floating-label {
  top: 0.45rem;
  transform: translateY(0);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rose-gold);
}

.contact-info-box {
  background: var(--dark-moss);
  color: var(--ivory);
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-box h3 {
  color: var(--ivory);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 24px;
  height: 24px;
  fill: var(--rose-gold-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.map-container {
  height: 240px;
  background: var(--dark-moss-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay-card {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 78, 59, 0.6) 0%, rgba(2, 44, 34, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.map-pin {
  width: 40px;
  height: 40px;
  background: var(--rose-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 0.8rem;
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7); }
  70% { transform: scale(1.08); box-shadow: 0 0 0 15px rgba(225, 29, 72, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

/* Legal Pages Styling */
.legal-header {
  background: var(--dark-moss);
  color: var(--ivory);
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.legal-header h1 {
  color: var(--ivory);
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

.legal-content {
  background: var(--ivory);
  padding: 4rem 0;
}

.legal-box {
  background: var(--ivory-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.legal-box h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem 0;
  color: var(--emerald);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(6, 78, 59, 0.15);
}

.legal-box h2:first-child {
  margin-top: 0;
}

.legal-box h3 {
  font-size: 1.2rem;
  margin: 1.4rem 0 0.6rem 0;
  color: var(--dark-moss);
}

.legal-box p {
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
  color: var(--text-body);
}

.legal-box ul {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-box li {
  margin-bottom: 0.5rem;
}

.legal-callout {
  background: rgba(6, 78, 59, 0.05);
  border-left: 4px solid var(--rose-gold);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Consent Status Container Styling */
#consent-status-container {
  background: var(--dark-moss);
  color: var(--ivory);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  margin: 2rem 0;
}

.consent-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.consent-badge.accepted {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  border: 1px solid #10B981;
}

.consent-badge.rejected {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border: 1px solid #EF4444;
}

.consent-id-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--rose-gold-light);
  margin: 1rem 0;
  display: inline-block;
  border: 1px dashed rgba(225, 29, 72, 0.4);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(2, 44, 34, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--ivory);
  padding: 1.5rem 0;
  z-index: 9999;
  border-top: 1px solid var(--border-gold);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text p {
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.9);
}

.cookie-text a {
  color: var(--rose-gold-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--ivory);
  width: 90%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  max-height: 90vh;
  overflow-y: auto;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Footer */
.footer {
  background: var(--dark-moss);
  color: var(--ivory);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-brand p {
  color: rgba(255, 253, 249, 0.75);
  margin-top: 1rem;
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 1.4rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--rose-gold);
  margin-top: 0.4rem;
}

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

.footer-links a {
  color: rgba(255, 253, 249, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--rose-gold-light);
  padding-left: 4px;
}

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

/* Media Queries */
@media (max-width: 992px) {
  .hero-grid,
  .heritage-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

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

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