/* ==========================================================================
   Au Pied Du Bois — stylesheet
   ========================================================================== */

:root {
  --forest: #1f4a3c;
  --forest-dark: #133027;
  --forest-soft: #2f6353;
  --sage: #7a9e8e;
  --sage-soft: #cfddd5;
  --wood: #c9a96e;
  --wood-dark: #a17f46;
  --cream: #faf7f2;
  --cream-dark: #ede7dc;
  --ink: #1a1f1d;
  --ink-soft: #46524d;
  --muted: #8a938f;
  --border: #e3ddd2;
  --white: #ffffff;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 1px 2px rgba(19, 48, 39, 0.06);
  --shadow-md: 0 6px 18px rgba(19, 48, 39, 0.08);
  --shadow-lg: 0 18px 40px rgba(19, 48, 39, 0.16);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --container: 1200px;
  --container-narrow: 820px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  border-radius: var(--radius-sm);
}

a {
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--wood-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest-dark);
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood-dark);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest-dark);
  letter-spacing: 0.01em;
}

.brand:hover {
  color: var(--forest-dark);
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand__text {
  line-height: 1.05;
  font-weight: 500;
}

.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood-dark);
  margin-top: 2px;
}

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

.nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav a.is-active,
.nav a:hover {
  color: var(--forest);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--wood);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  color: var(--forest-dark);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
  }
  .nav.is-open {
    transform: translateY(0);
  }
  .nav a {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav a:last-child {
    border-bottom: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--forest-dark);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--forest-dark);
  border-color: var(--forest-dark);
}

.btn--ghost:hover {
  background: var(--forest-dark);
  color: var(--cream);
}

.btn--wood {
  background: var(--wood);
  color: var(--forest-dark);
}

.btn--wood:hover {
  background: var(--wood-dark);
  color: var(--cream);
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at top right,
      rgba(122, 158, 142, 0.22),
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(201, 169, 110, 0.18),
      transparent 55%
    );
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__text h1 span {
  color: var(--wood-dark);
  font-style: italic;
}

.hero__text .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__meta {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero__meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--forest-dark);
  font-weight: 500;
}

.hero__meta-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
  box-shadow: var(--shadow-lg);
}

.hero__visual img,
.hero__visual svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero__badge-icon {
  width: 40px;
  height: 40px;
  background: var(--wood);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest-dark);
  flex-shrink: 0;
}

.hero__badge strong {
  display: block;
  color: var(--forest-dark);
  font-size: 0.95rem;
}

.hero__badge span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .hero {
    padding: 3rem 0;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__meta {
    gap: 1.5rem;
  }
  .hero__meta-item strong {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 5rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.section--cream-dark {
  background: var(--cream-dark);
}

.section--forest {
  background: var(--forest-dark);
  color: var(--cream);
}

.section--forest h2,
.section--forest h3 {
  color: var(--cream);
}

.section--forest p {
  color: rgba(250, 247, 242, 0.8);
}

.section__head {
  text-align: center;
  margin-bottom: 3rem;
}

.section__head.is-left {
  text-align: left;
}

.section__head .lead {
  margin-left: auto;
  margin-right: auto;
}

.section__head.is-left .lead {
  margin-left: 0;
}

@media (max-width: 860px) {
  .section {
    padding: 3.5rem 0;
  }
}

/* ==========================================================================
   Services
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--sage-soft);
  color: var(--forest-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--forest-dark);
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ==========================================================================
   Process
   ========================================================================== */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-left: 3.5rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -6px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--wood);
  font-weight: 400;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.93rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.filter-btn:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.filter-btn.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img,
.gallery-item svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  border-radius: 0;
}

.gallery-item:hover img,
.gallery-item:hover svg {
  transform: scale(1.04);
}

.gallery-item__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1rem 0.9rem;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  background: linear-gradient(to top, rgba(19, 48, 39, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

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

.gallery-item__caption small {
  display: block;
  opacity: 0.75;
  font-weight: 400;
  margin-top: 2px;
}

.gallery-item.is-hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 17, 0.92);
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__content {
  max-width: 1100px;
  max-height: 85vh;
  position: relative;
}

.lightbox__content img,
.lightbox__content svg {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(250, 247, 242, 0.95);
  color: var(--forest-dark);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.lightbox__close {
  top: -22px;
  right: -22px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: -60px;
}

.lightbox__nav--next {
  right: -60px;
}

.lightbox__caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--cream);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .lightbox__nav--prev {
    left: 10px;
  }
  .lightbox__nav--next {
    right: 10px;
  }
  .lightbox__close {
    top: 10px;
    right: 10px;
  }
}

/* Avant / Après */
.before-after {
  margin-top: 4rem;
}

.ba-slider {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
  touch-action: none;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.ba-slider__after-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}

.ba-slider__after-wrap img,
.ba-slider__after-wrap svg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  /* width is set in JS to the full slider width so clipping shows right portion */
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--cream);
  left: 50%;
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 2;
}

.ba-slider__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.ba-slider__handle::before {
  content: "⇄";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--forest-dark);
  font-size: 18px;
  font-weight: 700;
  z-index: 1;
}

.ba-slider__label {
  position: absolute;
  top: 14px;
  padding: 4px 12px;
  background: rgba(19, 48, 39, 0.85);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 1;
}

.ba-slider__label--before {
  left: 14px;
}

.ba-slider__label--after {
  right: 14px;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius-md);
}

.contact-info h2 {
  color: var(--cream);
}

.contact-info p {
  color: rgba(250, 247, 242, 0.8);
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 1.25rem 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.12);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--forest-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--wood);
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong {
  display: block;
  color: var(--cream);
  margin-bottom: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-item a,
.contact-item span {
  color: rgba(250, 247, 242, 0.92);
  font-size: 1rem;
  font-family: var(--font-display);
}

.contact-item a:hover {
  color: var(--wood);
}

.socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.socials a {
  width: 42px;
  height: 42px;
  background: var(--forest-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: background 0.2s var(--ease);
}

.socials a:hover {
  background: var(--wood);
  color: var(--forest-dark);
}

.socials svg {
  width: 20px;
  height: 20px;
}

/* Form */
.form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius-md);
}

.form h2 {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field {
  margin-bottom: 1.1rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--forest-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form__hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.form__success {
  display: none;
  padding: 1rem;
  background: var(--sage-soft);
  border-radius: var(--radius-sm);
  color: var(--forest-dark);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.form__success.is-visible {
  display: block;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  padding: 1.3rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--wood-dark);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding-bottom: 1.3rem;
  margin: 0;
}

/* ==========================================================================
   Blog (placeholder + cards layout)
   ========================================================================== */

.blog-placeholder {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border: 1px dashed var(--sage);
}

.blog-placeholder h2 {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   About
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sage);
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.value-card h3 {
  font-size: 1.1rem;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--cream);
}

.cta-band p {
  color: rgba(250, 247, 242, 0.8);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 4rem 0 1.5rem;
}

.site-footer--light {
  padding-top: 0;
}

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

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  color: rgba(250, 247, 242, 0.72);
  font-size: 0.92rem;
  line-height: 1.9;
}

.footer-col a:hover {
  color: var(--wood);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Page header (non-home pages)
   ========================================================================== */

.page-header {
  padding: 4rem 0 3rem;
  background: linear-gradient(
    180deg,
    rgba(207, 221, 213, 0.45) 0%,
    transparent 100%
  );
}

.page-header h1 {
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

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

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mb-0 {
  margin-bottom: 0;
}

.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;
}

/* Print */
@media print {
  .site-header,
  .site-footer,
  .cta-band {
    display: none;
  }
}
