/* ============================================================
   BIRCHBARK RABBITRY — Main Stylesheet
   Colors: #c44167 (rose red), #928d51 (sage gold), 
           #f5f0e8 (warm cream), #3d2b1f (dark bark)
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --rose:       #c44167;
  --rose-dark:  #a3304f;
  --rose-light: #f0d4dc;
  --sage:       #928d51;
  --sage-dark:  #726e3e;
  --sage-light: #e8e5cc;
  --cream:      #f5f0e8;
  --cream-dark: #ede5d5;
  --bark:       #3d2b1f;
  --bark-mid:   #6b4c38;
  --bark-light: #9c7a62;
  --white:      #fffdf9;
  --text:       #3d2b1f;
  --text-mid:   #6b4c38;
  --text-light: #9c7a62;
  --shadow:     rgba(61,43,31,0.12);
  --shadow-md:  rgba(61,43,31,0.2);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Lato', sans-serif;

  --radius:    12px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-dark); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--bark);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

.script { font-family: var(--font-script); color: var(--rose); }
.tagline { font-family: var(--font-script); font-size: 1.3rem; color: var(--bark-mid); }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ── Texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── Header & Navigation ── */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.site-logo img {
  height: 70px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bark);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font-script);
  font-size: 0.95rem;
  color: var(--rose);
}

/* Navigation */
.site-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bark-mid);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--rose);
  background: var(--rose-light);
}

/* Dropdown */
.nav-item { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px var(--shadow-md);
  min-width: 200px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 200;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark);
  transition: all var(--transition);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,43,31,0.85) 0%,
    rgba(61,43,31,0.6) 50%,
    rgba(196,65,103,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  color: var(--white);
}

.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--rose-light);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,253,249,0.85);
  max-width: 550px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

/* Birch tree decorative element */
.hero-birch {
  position: absolute;
  right: -2%;
  bottom: 0;
  height: 90%;
  width: auto;
  opacity: 0.08;
  pointer-events: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,65,103,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,253,249,0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--rose);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-sage:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}

.btn-outline-dark:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-md);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rose);
  background: var(--rose-light);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--bark);
  margin-bottom: 0.5rem;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--rose);
  display: block;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--sage));
  border-radius: 2px;
  margin: 1rem auto;
}

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

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

.gallery-caption {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Feature strips ── */
.feature-strip {
  background: var(--bark);
  color: var(--white);
  padding: 1.5rem 0;
}

.feature-strip-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.feature-icon {
  font-size: 1.5rem;
}

/* ── Two-column content ── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }

.content-text h2 { margin-bottom: 1rem; }
.content-text p { margin-bottom: 1.25rem; }

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-md);
}

.content-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
}

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

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bark);
}

.testimonial-detail {
  font-size: 0.8rem;
  color: var(--text-light);
}

.stars {
  color: var(--sage);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* ── Banner sections ── */
.banner-section {
  background: linear-gradient(135deg, var(--bark) 0%, var(--bark-mid) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23928d51' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.banner-section h2 { color: var(--white); position: relative; }
.banner-section p { color: rgba(255,253,249,0.8); max-width: 600px; margin: 1rem auto 2rem; position: relative; }

/* ── Forms ── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,65,103,0.1);
}

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

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--bark) 0%, var(--bark-mid) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,253,249,0.8); font-size: 1.1rem; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,253,249,0.6); margin-bottom: 1rem; }
.breadcrumb a { color: var(--rose-light); }
.breadcrumb a:hover { color: var(--white); }

/* ── Rabbit profile cards ── */
.rabbit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}

.rabbit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px var(--shadow-md);
}

.rabbit-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.rabbit-card-body { padding: 1.5rem; }

.rabbit-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bark);
  margin-bottom: 0.25rem;
}

.rabbit-card-breed {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.rabbit-card-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.genetics-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin: 0.2rem;
}

.badge-vienna { background: #e8d5f0; color: #6b3fa0; }
.badge-broken { background: var(--rose-light); color: var(--rose-dark); }
.badge-harlequin { background: #fde8cc; color: #8b5e00; }
.badge-dilute { background: #d5e8f0; color: #1a6b8a; }

/* ── Litter cards ── */
.litter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.litter-header {
  background: linear-gradient(135deg, var(--bark), var(--bark-mid));
  padding: 1.25rem 1.5rem;
  color: var(--white);
}

.litter-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.litter-meta {
  font-size: 0.8rem;
  color: rgba(255,253,249,0.7);
}

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

.litter-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.litter-body { padding: 1.25rem 1.5rem; }

.status-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.status-available { background: #d4f5e4; color: #1a6b45; }
.status-reserved { background: #fde8cc; color: #8b5e00; }
.status-pending { background: var(--rose-light); color: var(--rose-dark); }

/* ── Footer ── */
.site-footer {
  background: var(--bark);
  color: rgba(255,253,249,0.8);
  padding: 4rem 0 2rem;
}

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

.footer-brand {}
.footer-logo { height: 60px; width: auto; margin-bottom: 1rem; filter: brightness(2); }
.footer-tagline { font-family: var(--font-script); font-size: 1.1rem; color: var(--rose-light); margin-bottom: 1rem; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,253,249,0.65); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,253,249,0.15);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,253,249,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--rose-light); }

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,253,249,0.65);
}

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

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,253,249,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,253,249,0.7);
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

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

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

/* ── Lightbox ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  text-align: center;
}

/* ── Notice / alert ── */
.notice {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.notice-success { background: #d4f5e4; color: #1a6b45; border-left: 4px solid #1a6b45; }
.notice-error { background: var(--rose-light); color: var(--rose-dark); border-left: 4px solid var(--rose); }
.notice-info { background: #d5e8f0; color: #1a6b8a; border-left: 4px solid #1a6b8a; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-split { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open { display: block; }
  .nav-toggle { display: flex; }

  .site-nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    border-top: 2px solid var(--cream-dark);
    box-shadow: 0 10px 30px var(--shadow-md);
    gap: 0.25rem;
  }

  .nav-dropdown { display: none; }

  .content-split { grid-template-columns: 1fr; }
  .content-split.reverse { direction: ltr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: 70vh; }
  .hero-buttons { flex-direction: column; }
  .btn { text-align: center; justify-content: center; }
  .feature-strip-inner { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Utility classes ── */
.text-center { text-align: center; }
.text-rose { color: var(--rose); }
.text-sage { color: var(--sage); }
.text-bark { color: var(--bark); }
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-white { background: var(--white); }
.bg-bark { background: var(--bark); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
