/* ============================================
   Vétérinaires de Plein Air — style.css
   Palette : beige chaud / blanc / gris pierre / vert sage
   Typo : Cormorant Garamond (titres) + Inter (corps)
   ============================================ */

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

:root {
  --beige:       #F5F0E8;
  --beige-dark:  #EAE3D5;
  --white:       #FFFFFF;
  --stone:       #C8BFB0;
  --stone-dark:  #9A8F82;
  --charcoal:    #3A3530;
  --green:       #5C7A5E;
  --green-light: #EBF0EB;
  --green-dark:  #3E5740;
  --red-urgent:  #B84C3A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius: 4px;
  --shadow: 0 2px 16px rgba(58,53,48,0.08);
  --shadow-md: 0 4px 32px rgba(58,53,48,0.12);

  --max-width: 1140px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }
p  { margin-bottom: 1rem; color: #5A534C; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--beige-dark);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: .02em;
}
.nav-logo span {
  font-size: .7rem;
  color: var(--stone-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: .03em;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-links .dropdown {
  position: relative;
}
.nav-links .dropdown > a::after {
  content: ' ▾';
  font-size: .7rem;
  opacity: .6;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: .5rem 0;
  /* pont invisible au-dessus du menu pour combler le gap */
  margin-top: 0;
}
/* pseudo-élément qui comble l'espace entre le lien et le menu */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu { margin-top: 12px; }
.dropdown-menu a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .85rem;
  white-space: nowrap;
  transition: background .15s;
}
.dropdown-menu a:hover { background: var(--beige); }

.nav-tel {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--green);
  color: var(--white) !important;
  padding: .45rem 1rem;
  border-radius: 2rem;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s;
}
.nav-tel:hover { background: var(--green-dark) !important; color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: .3s;
}

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  color: var(--green-dark);
  padding: .6rem 1.1rem .6rem .6rem;
  border-radius: 1rem;
  border: 1.5px solid var(--green);
  box-shadow: 0 4px 20px rgba(58,53,48,.13);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.float-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(58,53,48,.18);
}
.float-cta .icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.float-cta .cta-num {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
}
.float-cta .label-small {
  font-size: .7rem;
  font-weight: 500;
  color: var(--stone-dark);
  display: block;
  line-height: 1;
}

/* ── HERO ── */
.hero {
  background: var(--beige);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-light) 0%, transparent 60%);
  opacity: .6;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: .75rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--stone-dark);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-img {
  aspect-ratio: 4/3;
  background: var(--stone);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--stone-dark);
  font-size: 1rem;
  overflow: hidden;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn-urgent {
  background: var(--red-urgent);
  color: var(--white);
  border-color: var(--red-urgent);
}
.btn-urgent:hover { background: #9C3E2D; border-color: #9C3E2D; }

/* ── SECTIONS ── */
.section { padding: 4rem 0; }
.section-alt { background: var(--beige); }
.section-green { background: var(--green-light); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: .6rem;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-img {
  aspect-ratio: 16/9;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--stone-dark);
  font-size: .9rem;
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-body h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: .4rem; }
.card-body p { font-size: .875rem; margin-bottom: 1rem; }
.card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.card-link::after { content: '→'; }
.card-link:hover { color: var(--green-dark); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--green-dark);
  color: var(--white);
  padding: 2.5rem 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.stat-item span { font-size: .8rem; opacity: .75; letter-spacing: .06em; text-transform: uppercase; }

/* ── HORAIRES TABLE ── */
.horaires-wrap {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.horaires-wrap table { width: 100%; border-collapse: collapse; }
.horaires-wrap th {
  background: var(--green-dark);
  color: var(--white);
  padding: .75rem 1.25rem;
  text-align: left;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.horaires-wrap td {
  padding: .65rem 1.25rem;
  font-size: .9rem;
  border-bottom: 1px solid var(--beige-dark);
}
.horaires-wrap tr:last-child td { border-bottom: none; }
.horaires-wrap tr:nth-child(even) td { background: var(--beige); }
.day-closed { color: var(--stone-dark); font-style: italic; }
.horaires-wrap tr.today td {
  background: var(--green-light) !important;
  font-weight: 600;
}
.horaires-wrap tr.today td:first-child::after {
  content: ' ← Aujourd\0027hui';
  font-size: .72rem;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: .03em;
}
.day-open { color: var(--green-dark); font-weight: 500; }

/* ── INFO GRID (contact, adresse…) ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-dark);
}
.info-card h3 { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--stone-dark); margin-bottom: .3rem; }
.info-card p { font-size: .95rem; font-weight: 500; margin: 0; color: var(--charcoal); }
.info-card a { color: var(--green-dark); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }

/* ── SPECIALTY PAGE ── */
.spec-hero {
  background: var(--beige);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.spec-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-light) 0%, transparent 50%);
  opacity: .5;
}
.spec-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.spec-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: .75rem;
}
.spec-badge .icon { font-size: 1.1rem; }

.spec-content { padding: 4rem 0; }
.spec-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.spec-body h2 {
  border-left: 3px solid var(--green);
  padding-left: 1rem;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}
.spec-body h2:first-child { margin-top: 0; }
.spec-list {
  margin: .5rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.spec-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .925rem;
  line-height: 1.5;
  color: #5A534C;
}
.spec-list li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--green);
  font-weight: 700;
  margin-top: .05em;
}
.spec-list li strong { color: var(--charcoal); }

.spec-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.sidebar-card {
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--green-dark);
}
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: .6rem; }
.sidebar-card .btn:last-child { margin-bottom: 0; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--green-dark);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-band p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }
.cta-band .btn-primary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.cta-band .btn-primary:hover {
  background: var(--beige);
  border-color: var(--beige);
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .9rem;
}
.footer-about p { font-size: .875rem; line-height: 1.7; }
.footer-links li + li { margin-top: .4rem; }
.footer-links a { font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-tel-big {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-inner,
  .spec-hero-inner,
  .spec-content-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .hero-img { aspect-ratio: 16/9; }
  .spec-sidebar { position: static; }

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

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: var(--white);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    z-index: 99;
  }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; transform: none; box-shadow: none; border: none; background: var(--beige); }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block !important; }

  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .stats-inner { gap: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── CONTACT BAND (style C) ── */
.contact-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.contact-band-item {
  padding: 1.25rem 1.25rem;
  border-right: 1px solid var(--beige-dark);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.cb-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .1rem;
}
.cb-icon { font-size: .95rem; }
.cb-lbl {
  font-size: .7rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--stone-dark);
  font-weight: 600;
}
.cb-val {
  font-size: .925rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}
.cb-sub {
  font-size: .78rem;
  color: var(--stone-dark);
}
.cb-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
}
.cb-link:hover { color: var(--green-dark); text-decoration: underline; }
.cb-badge {
  display: inline-block;
  background: rgba(184,76,58,.08);
  color: var(--red-urgent);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  margin-top: .1rem;
  width: fit-content;
}

@media (max-width: 700px) {
  .contact-band {
    grid-template-columns: 1fr 1fr;
  }
  .contact-band-item:nth-child(2) { border-right: none; }
  .contact-band-item:nth-child(3),
  .contact-band-item:nth-child(4) {
    border-top: 1px solid var(--beige-dark);
    border-right: none;
  }
  .contact-band-item:nth-child(3) { border-right: 1px solid var(--beige-dark); }
}

/* ── PARALLAX BAND ── */
.parallax-band {
  width: 100%;
  height: 380px;
  background-image: url('../images/hero.jpg');
  background-attachment: scroll;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--stone);
  overflow: hidden;
  position: relative;
}
.parallax-band-inner {
  position: absolute;
  inset: -60px 0;
  background-image: url('../images/hero.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}

@media (max-width: 768px) {
  .parallax-band { height: 240px; }
  .parallax-band-inner { inset: -30px 0; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--charcoal);
  color: rgba(255,255,255,.85);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.15);
  transform: translateY(100%);
  transition: transform .35s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner p {
  margin: 0;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  flex: 1;
  min-width: 260px;
}
.cookie-banner p a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-banner p a:hover { color: #fff; }
.cookie-btns {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--green);
  color: #fff;
  border: none;
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.cookie-btn-accept:hover { background: var(--green-dark); }
.cookie-btn-refuse {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.cookie-btn-refuse:hover {
  border-color: rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
}

@media (max-width: 600px) {
  .cookie-banner { padding: 1rem 1.25rem; gap: 1rem; }
  .cookie-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-refuse { flex: 1; text-align: center; }
}

/* ── HERO FULLSCREEN (version B) ── */
.hero-full {
  position: relative;
  height: 92vh;
  min-height: 520px;
  max-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-full-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,18,15,0.52);
  z-index: 1;
}
.hero-full-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-full-content .hero-eyebrow {
  margin-bottom: .75rem;
}
.hero-full-content h1 {
  color: #fff;
}
.btn-hero-white {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
}
.btn-hero-white:hover {
  background: var(--beige);
  border-color: var(--beige);
}

@media (max-width: 640px) {
  .hero-full { height: 85vh; min-height: 420px; }
}
