/* ===========================
   Orient Forest Beauty Studio
   styles.css
   =========================== */

/* --- Variables --- */
:root {
  --green-dark:   #2C4A1E;
  --green-mid:    #3D6B2E;
  --green-sage:   #7A9E6B;
  --green-light:  #C8DDB8;
  --cream:        #F9F5EF;
  --warm-white:   #FEFCF8;
  --gold:         #B8884A;
  --gold-light:   #D4AA72;
  --text-dark:    #1A2514;
  --text-mid:     #4A5E3A;
  --text-muted:   #7A8C6A;
  --border:       #DDD8CC;
  --shadow:       0 4px 24px rgba(44, 74, 30, 0.10);
  --shadow-sm:    0 2px 8px rgba(44, 74, 30, 0.08);
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   0.25s ease;
  --font-body:    'Lato', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Cormorant Garamond', 'Garamond', Georgia, serif;
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--warm-white);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--green-mid);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-mid); }

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

/* ===========================
   HEADER & NAV
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
/* Fallback text logo (kept for compatibility) */
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.03em;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* Lucide icons */
.card-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--green-dark);
  stroke-width: 1.5;
}
.hero-badge-icon svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.5;
}
.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  stroke-width: 1.5;
}
.feature-box-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-dark);
  stroke-width: 1.5;
}
.btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  vertical-align: middle;
  margin-right: 5px;
  display: inline-block;
}

/* Desktop nav */
.main-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}
.main-nav a {
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-mid);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--green-dark);
  border-bottom-color: var(--gold);
}

/* Hamburger (CSS-only) */
#menu-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
    padding: 16px 0 24px;
  }
  #menu-toggle:checked ~ .main-nav { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 0 24px;
  }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block;
    padding: 12px 14px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
  }
  .main-nav li:last-child a { border-bottom: none; }
  .main-nav a.active {
    background: rgba(44, 74, 30, 0.07);
    border-left-color: var(--gold);
    color: var(--green-dark);
    font-weight: 700;
  }
  #menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Anchor offset for sticky header */
section[id] { scroll-margin-top: 90px; }

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section-sm { padding: 52px 0; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  margin-bottom: 16px;
}
.section-intro {
  font-size: 1.1rem;
  max-width: 560px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  min-width: 150px;
  text-align: center;
  border-radius: var(--radius);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 74, 30, 0.22);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 74, 30, 0.18);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #fff;
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 136, 74, 0.28);
}

/* ===========================
   CARDS
   =========================== */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 10px; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  background: linear-gradient(135deg, #1a2e10 0%, #2C4A1E 40%, #3D6B2E 70%, #5a7a4a 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(184, 136, 74, 0.12) 0%, transparent 70%),
    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='%23ffffff' fill-opacity='0.03'%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");
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { color: #fff; }
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 460px;
}
.hero-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.40);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-box-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-box-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(20, 30, 14, 0.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.hero-box-review {
  grid-column: 1 / -1;
  background: rgba(20, 30, 14, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  color: #fff;
}
.hero-badge-icon { font-size: 1.8rem; }
.hero-badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.hero-badge-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 24px;
    text-align: center;
  }
  .hero-bg { min-height: unset; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-boxes { max-width: 100%; }
  .hero-box-img { height: 160px; }
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, #1a2e10 0%, #2C4A1E 60%, #3D6B2E 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::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='%23ffffff' fill-opacity='0.03'%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");
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===========================
   SECTION DIVIDERS
   =========================== */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 32px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ===========================
   SERVICES CARDS
   =========================== */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-card-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 28px 24px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-card-icon { font-size: 2rem; }
.service-card-header h3 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0;
}
.service-card-body { padding: 24px; }
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  gap: 12px;
}
.service-item:last-child { border-bottom: none; }
.service-item-name { color: var(--text-mid); font-size: 0.95rem; }
.service-item-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.service-item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  white-space: nowrap;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--green-light);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.testimonial-text {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 20px;
  padding-top: 24px;
}
.testimonial-author strong { color: var(--green-dark); }
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }

/* ===========================
   TEAM
   =========================== */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green-light), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.team-info { padding: 20px 18px 24px; }
.team-info h3 { margin-bottom: 4px; font-size: 1.2rem; }
.team-role {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.team-info p { font-size: 0.9rem; }

/* ===========================
   VALUES / FEATURE BOXES
   =========================== */
.feature-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.feature-box-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.feature-box-content h4 { margin-bottom: 6px; }
.feature-box-content p { font-size: 0.92rem; }

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-info-item h4 { margin-bottom: 4px; font-size: 0.9rem; }
.contact-info-item p,
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td {
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--green-dark); }

/* Contact Form */
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 40px 36px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 7px;
}
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(61, 107, 46, 0.12);
  background: #fff;
}
textarea { resize: vertical; min-height: 120px; }

/* ===========================
   BANNER / CTA STRIP
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(184, 136, 74, 0.18) 0%, transparent 70%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.78); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btn-gold {
  font-size: 0.9rem;
  padding: 15px 40px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.82);
  padding: 56px 0 28px;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.site-footer .logo-img {
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 14px;
}
.footer-brand .logo-main { color: #fff; font-size: 1.4rem; }
.footer-brand .logo-sub { color: var(--gold-light); }
.footer-brand p {
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 240px;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col p {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ===========================
   MISC / HELPERS
   =========================== */
.bg-cream  { background: var(--cream); }
.bg-white  { background: #fff; }
.bg-green  { background: var(--green-dark); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }

/* ===========================
   GALLERY
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(44,74,30,0.85) 0%, transparent 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 300px; }
}
