/* FloraVision - Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');
:root {
  --white:        #FAFAF8;
  --white-pure:   #FFFFFF;
  --green-deep:   #2D4A3E;
  --green-mid:    #3D6B5A;
  --green-light:  #6B9E8A;
  --green-pale:   #E8EDE6;
  --green-mist:   #F2F5F1;
  --gold:         #C9A84C;
  --gold-light:   #E8D49A;
  --ink:          #1A1A18;
  --ink-light:    #4A4A46;
  --ink-muted:    #8A8A84;
  --error-red:    #C44536;
  --error-bg:     #FDF2F0;
  --rule:         rgba(45, 74, 62, 0.12);
  --rule-gold:    rgba(201, 168, 76, 0.3);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --shadow-sm:  0 1px 4px rgba(26, 26, 24, 0.06);
  --shadow-md:  0 4px 16px rgba(26, 26, 24, 0.08);
  --shadow-lg:  0 12px 40px rgba(26, 26, 24, 0.10);
  --shadow-xl:  0 24px 64px rgba(26, 26, 24, 0.12);
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--white);
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; }
.display-serif { font-family: var(--font-display); font-style: italic; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -0.3px;
}
.nav-brand-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 2px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-deep);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green-deep); }
.nav-links a.active::after { width: 100%; }

/* Focus states for accessibility */
.nav-links a:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-cta {
  background: var(--green-deep);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--green-mid) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════ */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 40px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 99;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--green-deep);
}

.mobile-menu-cta {
  background: var(--green-deep) !important;
  color: var(--white) !important;
  padding: 16px 24px !important;
  border-radius: var(--radius-sm);
  text-align: center;
  border: none !important;
  margin-top: 16px;
}

/* Footer - shared restrained botanical archive treatment */
.footer-illustrated {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--green-deep) 0%, var(--green-deep) 72%, #23382f 100%);
}
.footer-content {
  position: relative;
  z-index: 2;
  padding: 88px 40px 120px;
}
.footer-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-top-rule {
  width: 112px;
  height: 1px;
  background: var(--rule-gold);
  margin: 0 auto 18px;
  flex-basis: 100%;
}
.footer-brand-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white-pure);
}
.footer-brand-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 2px;
  flex-shrink: 0;
}
.footer-links-block {
  display: flex;
  gap: 30px;
}
.footer-links-block a {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  transition: color 0.2s ease;
}
.footer-links-block a:hover {
  color: var(--gold-light);
}
.footer-copy-text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.34);
}
.footer-silhouette {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 210px;
  background-image: url('../images/botanical-silhouettes.svg');
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 210px;
  opacity: 0.08;
  pointer-events: none;
}
.hairline {
  border: none;
  height: 1px;
  background: var(--rule);
  margin: 0;
}
.hairline-gold {
  border: none;
  height: 1px;
  background: var(--rule-gold);
}
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}
.label-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--green-mid);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

/* Focus states for all buttons */
.btn:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 4px;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--white-pure);
  padding: 14px 28px;
  box-shadow: 0 2px 8px rgba(45, 74, 62, 0.25);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 74, 62, 0.30);
  color: var(--white-pure);
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.btn-outline {
  background: transparent;
  color: var(--green-deep);
  padding: 13px 27px;
  border: 1px solid var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-pale);
  transform: translateY(-1px);
}
.btn-lg {
  font-size: 15px;
  padding: 16px 36px;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.anim-fade-up { animation: fadeUp 0.6s ease both; }
.anim-fade-in { animation: fadeIn 0.6s ease both; }
.anim-scale-in { animation: scaleIn 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

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

@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .footer-content-inner { flex-direction: column; text-align: center; }
}
