/* =========================================================
   Midwest Tents — Custom Styles
   Built on Bootstrap 5.3
   ========================================================= */

:root {
  --mt-cream: #f4ece0;
  --mt-cream-soft: #faf5ec;
  --mt-cream-dark: #ece2d2;
  --mt-paper: #ffffff;
  --mt-gold: #b08855;
  --mt-gold-dark: #97713f;
  --mt-gold-soft: #c9a47a;
  --mt-ink: #2a241d;
  --mt-ink-soft: #4d4439;
  --mt-muted: #8a7e6e;
  --mt-line: #e6dccb;

  --mt-radius: 14px;
  --mt-radius-lg: 22px;
  --mt-shadow-sm: 0 6px 20px rgba(42, 36, 29, 0.06);
  --mt-shadow: 0 18px 50px rgba(42, 36, 29, 0.10);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background-color: var(--mt-cream);
  color: var(--mt-ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.serif {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  color: var(--mt-ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 4.2vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.85rem, 3vw, 2.6rem); line-height: 1.18; }
h3 { font-size: 1.4rem; }
p  { color: var(--mt-ink-soft); }

a { color: var(--mt-gold-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--mt-ink); }

.container, .container-lg, .container-xl { max-width: 1360px; }

/* ---------- Eyebrow / Section labels ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mt-gold);
  margin-bottom: 1rem;
}

/* Eyebrow with trailing line (subtle decoration on the right). */
.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow-line::after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 1px;
  background: var(--mt-gold-soft);
}

/* Subtle accent rule used after a heading. */
.heading-rule {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--mt-gold-soft);
  border: 0;
  margin: 1.25rem 0 1.5rem;
  opacity: 0.9;
}

.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ---------- Buttons ---------- */
.btn {
  font-weight: 500;
  border-radius: 5px;
  padding: 0.78rem 1.6rem;
  font-size: 0.95rem;
  transition: all .25s ease;
}

.btn-gold {
  background-color: var(--mt-gold);
  color: #fff;
  border: 1px solid var(--mt-gold);
}
.btn-gold:hover,
.btn-gold:focus {
  background-color: var(--mt-gold-dark);
  border-color: var(--mt-gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(176, 136, 85, 0.3);
}

.btn-outline-ink {
  background: transparent;
  color: var(--mt-ink);
  border: 1px solid var(--mt-ink);
}
.btn-outline-ink:hover {
  background: var(--mt-ink);
  color: #fff;
}

.btn-outline-cream {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline-cream:hover {
  background: #fff;
  color: var(--mt-ink);
}

.btn-link-gold {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--mt-gold-dark);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0;
  background: transparent;
  border: 0;
}
.btn-link-gold:hover { color: var(--mt-ink); gap: .65rem; }

/* ---------- Navigation ---------- */
.site-nav {
  background-color: var(--mt-cream);
  padding: 1.1rem 0;
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.site-nav.scrolled {
  background-color: rgba(244, 236, 224, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--mt-line);
  box-shadow: var(--mt-shadow-sm);
}
.site-nav .navbar-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--mt-ink);
}
.site-nav .nav-link {
  color: var(--mt-ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.site-nav .nav-link.active,
.site-nav .nav-link:hover { color: var(--mt-gold-dark); }
/* Underline on the active link. Excluded for .dropdown-toggle so we don't
   overwrite Bootstrap's caret (which is also ::after). */
.site-nav .nav-link.active:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: 0.15rem;
  height: 1.5px;
  background: var(--mt-gold);
}
/* Dropdown toggle gets the same underline via ::before so ::after stays
   available for the Bootstrap caret. */
.site-nav .dropdown-toggle.active::before {
  content: "";
  position: absolute;
  left: 1rem; right: 1.75rem; bottom: 0.15rem;
  height: 1.5px;
  background: var(--mt-gold);
}
.site-nav .navbar-toggler {
  border: 1px solid var(--mt-line);
  padding: 0.4rem 0.6rem;
}
.site-nav .navbar-toggler:focus { box-shadow: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(244,236,224,0.96) 0%,
    rgba(244,236,224,0.92) 28%,
    rgba(244,236,224,0.55) 50%,
    rgba(244,236,224,0.10) 68%,
    rgba(0,0,0,0) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 620px;
  padding: 4.5rem 0;
}
.hero-content h1 { margin-bottom: 0; }
.hero-content p {
  font-size: 1rem;
  max-width: 460px;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .hero { min-height: 620px; }
  .hero-content { padding: 3.5rem 0; }
}
@media (max-width: 767px) {
  .hero { min-height: 580px; }
  .hero::before {
    background: linear-gradient(180deg,
      rgba(244,236,224,0.96) 0%,
      rgba(244,236,224,0.85) 50%,
      rgba(244,236,224,0.25) 100%);
  }
  .hero-content { padding: 2.5rem 0; max-width: 100%; }
  .hero-content p { max-width: 100%; }
}

/* ---------- Features bar ---------- */
.feature-bar {
  background: var(--mt-paper);
  border-radius: var(--mt-radius-lg);
  padding: 2rem 1rem;
  margin-top: -4rem;
  position: relative;
  z-index: 5;
  box-shadow: var(--mt-shadow);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 0.5rem;
}
.feature-item .icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--mt-gold);
}
.feature-item .icon i { font-size: 2rem; }
.feature-item span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--mt-ink);
}

/* ---------- Homepage phone CTA ---------- */
.home-phone-cta {
  padding: 1rem 0 2.5rem;
}
.home-phone-card {
  background: var(--mt-ink);
  color: #fff;
  border-radius: var(--mt-radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--mt-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.home-phone-card .eyebrow {
  color: var(--mt-gold-soft);
}
.home-phone-card .eyebrow::after {
  background: var(--mt-gold-soft);
}
.home-phone-card h2 {
  color: #fff;
  margin: 0 0 0.75rem;
}
.home-phone-card p {
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 560px;
}
.home-phone-number {
  flex: 0 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 5.4vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  white-space: nowrap;
}
.home-phone-number:hover {
  color: var(--mt-gold-soft);
}
.event-phone-card {
  margin-top: 2.5rem;
}

@media (max-width: 991px) {
  .home-phone-card {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .home-phone-number {
    white-space: normal;
  }
}

/* ---------- About ---------- */
.about-img {
  border-radius: var(--mt-radius-lg);
  overflow: hidden;
  box-shadow: var(--mt-shadow-sm);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

/* ---------- Tents for every occasion ---------- */
.occasion-card {
  background: var(--mt-paper);
  border-radius: var(--mt-radius);
  overflow: hidden;
  box-shadow: var(--mt-shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.occasion-card:hover { transform: translateY(-4px); box-shadow: var(--mt-shadow); }
.occasion-card .img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.occasion-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.occasion-card:hover .img-wrap img { transform: scale(1.05); }
.occasion-card .body {
  padding: 1.5rem 1.25rem 1.75rem;
}
.occasion-card h3 {
  font-size: 1.18rem;
  margin-bottom: .35rem;
}
.occasion-card p {
  font-size: 0.9rem;
  color: var(--mt-muted);
  margin-bottom: 0.9rem;
}

/* ---------- Comfort section ---------- */
.comfort-section {
  padding-left: 0;
  padding-right: 0;
}
.comfort-section > .row {
  --bs-gutter-x: 0;
  margin: 0;
  width: 100%;
}
.comfort-img {
  position: relative;
  overflow: hidden;
}
.comfort-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
  display: block;
}
/* Soft fade on the right edge into whatever the section bg is. */
.comfort-img::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 28%;
  pointer-events: none;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--section-bg, var(--mt-cream)) 100%
  );
}
@media (max-width: 991px) {
  .comfort-img::after {
    top: auto;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      var(--section-bg, var(--mt-cream)) 100%
    );
  }
}

/* Right-side text aligns with the page container while the left image bleeds. */
@media (min-width: 992px) {
  .comfort-text-wrap {
    padding-left: 4rem;
    padding-right: max(calc((100vw - 1360px) / 2 + 0.75rem), 1.5rem);
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .comfort-text-wrap {
    padding: 2.5rem 1.25rem 0;
  }
}

.comfort-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 2rem;
}
.comfort-list li {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.5rem 0;
  color: var(--mt-ink-soft);
  font-size: 0.97rem;
}
.comfort-list li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mt-gold) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 14px no-repeat;
}

/* ---------- Gallery (homepage strip) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.gallery-grid .tile {
  position: relative;
  display: block;
  border-radius: var(--mt-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--mt-shadow-sm);
  cursor: zoom-in;
}
.gallery-grid .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-grid .tile:hover img { transform: scale(1.06); }

.gallery-grid .tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,16,12,0.45) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.gallery-grid .tile:hover::after { opacity: 1; }

@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .tile:nth-child(n+4) { display: none; }
}
@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Gallery (full gallery page) ---------- */
.gallery-page-grid {
  column-count: 3;
  column-gap: 1.25rem;
}
.gallery-page-grid .gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 1.25rem;
  border-radius: var(--mt-radius);
  overflow: hidden;
  box-shadow: var(--mt-shadow-sm);
  break-inside: avoid;
  cursor: zoom-in;
  background: var(--mt-paper);
}
.gallery-page-grid .gallery-tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .65s ease;
}
.gallery-page-grid .gallery-tile:hover img { transform: scale(1.05); }
.gallery-page-grid .gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,16,12,0.5) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.gallery-page-grid .gallery-tile:hover::after { opacity: 1; }

.gallery-page-grid .gallery-tile .zoom-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  color: var(--mt-ink);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.gallery-page-grid .gallery-tile:hover .zoom-icon {
  opacity: 1;
  transform: translateY(0);
}

.gallery-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--mt-ink-soft);
}

@media (max-width: 991px) {
  .gallery-page-grid { column-count: 2; column-gap: 1rem; }
  .gallery-page-grid .gallery-tile { margin-bottom: 1rem; }
}
@media (max-width: 575px) {
  .gallery-page-grid { column-count: 1; }
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.25rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mt-gold);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.step .step-icon {
  color: var(--mt-ink);
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step .step-icon i { font-size: 2rem; margin-top: 1rem;}
.step h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--mt-ink);
  margin-top: 1rem;
}
.step p {
  font-size: 0.92rem;
  color: var(--mt-muted);
  margin: 0;
  max-width: 260px;
}

.step-arrow {
  align-self: center;
  color: var(--mt-gold);
  padding-top: 4.5rem;
}
.step-arrow i { font-size: 2rem; }

@media (max-width: 767px) {
  .steps { grid-template-columns: 1fr; gap: 0.5rem; }
  .step-arrow { display: none; }
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  border-radius: var(--mt-radius-lg);
  overflow: hidden;
  padding: 4rem 2rem;
  background: linear-gradient(rgba(42,36,29,0.65), rgba(42,36,29,0.65)),
              url("../img/gallery/13.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.cta h2 { color: #fff; margin-bottom: 0.6rem; }
.cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; }

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 16, 12, 0.72) 0%,
    rgba(20, 16, 12, 0.50) 55%,
    rgba(20, 16, 12, 0.65) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-content { padding: 5rem 0 4rem; max-width: 760px; }
.page-hero-content .eyebrow {
  color: var(--mt-gold-soft);
  margin-bottom: 1.25rem;
}
.page-hero-content .eyebrow-line::after { background: var(--mt-gold-soft); }
.page-hero-content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 4.6vw, 3.8rem);
  line-height: 1.08;
}
.page-hero-content .heading-rule {
  background: var(--mt-gold-soft);
  margin: 1.25rem 0 1.5rem;
}
.page-hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0;
  line-height: 1.65;
}

/* ---------- Quick contact strip ---------- */
.quick-contact {
  position: relative;
  z-index: 5;
  margin-top: -3rem;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .quick-contact { margin-top: -2rem; }
}
.quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--mt-paper);
  border-radius: 10px;
  padding: 2rem 1.85rem;
  box-shadow: var(--mt-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  color: inherit;
  height: 100%;
  text-decoration: none;
}
.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(42, 36, 29, 0.12);
  color: inherit;
}
.quick-card-call {
  align-items: center;
  text-align: center;
  border: 1px solid rgba(176, 136, 85, 0.28);
}
.quick-card-call .quick-card-icon {
  width: 64px;
  height: 64px;
}
.quick-card-call .quick-card-icon svg {
  width: 30px;
  height: 30px;
}
.quick-card-call .quick-card-value {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 700;
  color: var(--mt-ink);
  letter-spacing: -0.02em;
}
.quick-card-icon {
  width: 52px; height: 52px;
  background: rgba(176, 136, 85, 0.10);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mt-gold);
  margin-bottom: 1.25rem;
}
.quick-card-icon svg { width: 24px; height: 24px; }
.quick-card .eyebrow { margin-bottom: .35rem; }
.quick-card-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--mt-ink);
  margin: 0.15rem 0 0.4rem;
  line-height: 1.25;
}
.quick-card-meta {
  font-size: 0.88rem;
  color: var(--mt-muted);
  margin: 0;
}

/* ---------- Contact section ---------- */
.contact-card {
  background: var(--mt-paper);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: var(--mt-shadow-sm);
  height: 100%;
}
.contact-card h2 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}
.contact-card .lead-copy {
  color: var(--mt-muted);
  margin-bottom: 1.85rem;
  font-size: 0.97rem;
}
.contact-card .eyebrow { margin-bottom: 1.25rem; }
.call-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.contact-phone-large {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--mt-ink);
  margin: 0 0 1.5rem;
}
.contact-phone-large:hover {
  color: var(--mt-gold-dark);
}
.call-card p {
  max-width: 640px;
  margin: 0;
  font-size: 1.05rem;
}

@media (max-width: 575px) {
  .contact-card { padding: 1.75rem; }
  .contact-card h2 { font-size: 1.5rem; }
}

/* Form fields - refined for premium feel */
.contact-form .form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mt-ink-soft);
  margin-bottom: 0.5rem;
}
.contact-form .form-label .req { color: var(--mt-gold); margin-left: 2px; }
.contact-form .form-control,
.contact-form .form-select {
  background-color: #fff;
  border: 1px solid var(--mt-line);
  border-radius: 5px;
  padding: 0.85rem 1rem;
  color: var(--mt-ink);
  font-size: 0.97rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form .form-control:hover,
.contact-form .form-select:hover {
  border-color: var(--mt-gold-soft);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background-color: #fff;
  border-color: var(--mt-gold);
  box-shadow: 0 0 0 4px rgba(176, 136, 85, 0.12);
  color: var(--mt-ink);
  outline: 0;
}
.contact-form .form-control::placeholder { color: var(--mt-muted); }
.contact-form textarea.form-control {
  min-height: 160px;
  resize: vertical;
}
.contact-form .form-disclaimer {
  font-size: 0.82rem;
  color: var(--mt-muted);
  line-height: 1.55;
  margin: 0.25rem 0 0;
}

/* Inline alerts */
.contact-alert {
  border-radius: 6px;
  padding: 0.95rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.94rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-alert-success {
  background: rgba(43, 121, 59, 0.08);
  color: #2b793b;
  border: 1px solid rgba(43, 121, 59, 0.22);
}
.contact-alert-error {
  background: rgba(176, 53, 53, 0.08);
  color: #b03535;
  border: 1px solid rgba(176, 53, 53, 0.22);
}
.contact-alert a { color: inherit; text-decoration: underline; }

/* Side panel (right column on contact page) */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}
.side-block {
  background: var(--mt-paper);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--mt-shadow-sm);
}
.side-block h3 {
  font-size: 1.35rem;
  margin: 0.25rem 0 1.25rem;
}
.side-block .eyebrow { margin-bottom: 0.85rem; }

.side-block.promise {
  background: var(--mt-ink);
  color: #e3d8c4;
}
.side-block.promise .eyebrow { color: var(--mt-gold-soft); }
.side-block.promise .eyebrow::after { background: var(--mt-gold-soft); }
.side-block.promise h3 { color: #fff; }
.side-block.promise p { color: rgba(255,255,255,0.78); margin-bottom: 1rem; font-size: 0.95rem; }

.promise-list { list-style: none; padding: 0; margin: 0; }
.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.promise-list li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--mt-gold) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 11px no-repeat;
}

/* Hours */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--mt-line);
  font-size: 0.95rem;
}
.hours-list li:first-child { padding-top: 0.4rem; }
.hours-list li:last-child { border-bottom: 0; padding-bottom: 0.4rem; }
.hours-list .day {
  font-weight: 600;
  color: var(--mt-ink);
}
.hours-list .time {
  color: var(--mt-ink-soft);
}
.hours-list li.hours-by-appt .time {
  font-style: italic;
  color: var(--mt-muted);
}
.hours-note {
  font-size: 0.82rem;
  color: var(--mt-muted);
  margin: 0;
  padding-top: 0.85rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--mt-line);
  line-height: 1.55;
}

/* ---------- Full-width map section ---------- */
.map-section {
  position: relative;
  padding: 0;
}
.map-fullwidth {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  background: var(--mt-cream-dark);
}
.map-fullwidth iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.9);
}
.map-overlay-card {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  background: #fff;
  padding: 2.5rem 2.25rem;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(20, 16, 12, 0.18);
  max-width: 380px;
  z-index: 2;
}
.map-overlay-card .eyebrow { margin-bottom: 1rem; }
.map-overlay-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.map-overlay-card .heading-rule { margin: 0.85rem 0 1.25rem; }
.map-overlay-card p {
  color: var(--mt-ink-soft);
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
}
.map-overlay-card .btn { margin-right: 0.5rem; }

@media (max-width: 991px) {
  .map-fullwidth { height: 420px; }
  .map-overlay-card {
    position: static;
    transform: none;
    margin: -3.5rem auto 0;
    max-width: calc(100% - 2rem);
  }
}

/* Section title (centered) helper used on the contact page form section */
.section-title-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-title-center .heading-rule {
  margin-left: auto;
  margin-right: auto;
}
.section-title-center h2 { margin-bottom: 0.5rem; }
.section-title-center .lead-copy {
  color: var(--mt-muted);
  font-size: 1rem;
  margin: 0;
}

/* ---------- About Page ---------- */

/* Story layout — same spirit as homepage About row but with deeper image. */
.about-story-img {
  border-radius: var(--mt-radius-lg);
  overflow: hidden;
  box-shadow: var(--mt-shadow);
  position: relative;
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
  display: block;
  transition: transform 1.2s ease;
}
.about-story-img:hover img { transform: scale(1.03); }

/* Decorative accent badge that sits on top of the story image. */
.about-story-img .since-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--mt-paper);
  color: var(--mt-ink);
  padding: 0.6rem 1rem;
  border-radius: var(--mt-radius);
  box-shadow: var(--mt-shadow-sm);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.about-story-img .since-badge strong {
  font-style: normal;
  color: var(--mt-gold);
  margin-left: 0.25rem;
}

/* Stats strip */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 1rem 0;
}
.about-stats .stat {
  position: relative;
  padding: 0.5rem 1rem;
}
.about-stats .stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}
.about-stats .stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--mt-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.about-stats .stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mt-ink-soft);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-stats .stat:nth-child(3)::before { display: none; }
}
@media (max-width: 420px) {
  .about-stats { grid-template-columns: 1fr; }
  .about-stats .stat::before { display: none !important; }
}

/* Value cards */
.value-card {
  background: var(--mt-paper);
  border-radius: var(--mt-radius);
  padding: 2.5rem 1.75rem 2.25rem;
  box-shadow: var(--mt-shadow-sm);
  height: 100%;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--mt-shadow);
}
.value-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 152, 95, 0.12);
  color: var(--mt-gold);
}
.value-card-icon svg { width: 34px; height: 34px; }
.value-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--mt-ink);
  margin-bottom: 0.85rem;
}
.value-card p {
  color: var(--mt-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
}

/* Pull quote */
.pull-quote {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem 1rem;
}
.pull-quote .quote-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--mt-gold);
  display: block;
  margin-bottom: 0.5rem;
}
.pull-quote blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.5;
  color: var(--mt-ink);
  margin: 0 0 1.75rem;
  padding: 0;
  border: 0;
}
.pull-quote .attr-name {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--mt-ink);
  margin-bottom: 0.15rem;
}
.pull-quote .attr-title {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mt-muted);
}

/* ---------- Tents Page ---------- */

/* Tent size cards with compact illustrations and glanceable capacity specs. */
.tent-spec-card {
  background: var(--mt-paper);
  border-radius: var(--mt-radius-lg);
  padding: 1.25rem;
  text-align: left;
  height: 100%;
  box-shadow: var(--mt-shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tent-spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mt-shadow);
  border-color: rgba(176, 136, 85, 0.32);
}
.tent-card-illustration {
  background: linear-gradient(180deg, #fffaf2 0%, var(--mt-cream-soft) 100%);
  border: 1px solid var(--mt-line);
  border-radius: calc(var(--mt-radius-lg) - 6px);
  min-height: 180px;
  margin-bottom: 1.4rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tent-card-illustration img {
  display: block;
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}
.tent-spec-card .tent-name {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mt-gold);
  margin-bottom: 0.35rem;
  display: block;
}
.tent-spec-card .size {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 600;
  color: var(--mt-ink);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  display: block;
}
.tent-card-desc {
  color: var(--mt-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1.2rem;
}
.tent-spec-card .cap-list {
  list-style: none;
  padding: 0;
  margin: auto 0 1.25rem;
  text-align: left;
  background: rgba(184, 152, 95, 0.07);
  border-radius: var(--mt-radius);
  border: 1px solid rgba(176, 136, 85, 0.16);
  overflow: hidden;
}
.tent-spec-card .cap-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0.9rem;
  border-top: 1px solid rgba(176, 136, 85, 0.16);
  font-size: 0.92rem;
}
.tent-spec-card .cap-list li:first-child { border-top: 0; }
.tent-spec-card .cap-list .key {
  color: var(--mt-muted);
  font-weight: 500;
}
.tent-spec-card .cap-list .val {
  color: var(--mt-ink);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  text-align: right;
}
.tent-spec-card .view-link {
  margin-top: auto;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--mt-ink);
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  justify-content: center;
  align-self: stretch;
  transition: gap .25s ease, background-color .25s ease;
}
.tent-spec-card .view-link:hover {
  color: #fff;
  background: var(--mt-gold-dark);
  gap: 0.6rem;
}

/* Detailed tent showcase rows. Reuse .about-story-img for the image card,
   and add a gold "size stamp" badge overlay. */
.tent-feature-img {
  border-radius: var(--mt-radius-lg);
  overflow: hidden;
  box-shadow: var(--mt-shadow);
  position: relative;
}
.tent-feature-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.tent-feature-img:hover img { transform: scale(1.04); }

.tent-feature-img .size-stamp {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--mt-gold);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: var(--mt-radius);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Gold-tinted spec block inside each detailed showcase. */
.tent-detail-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  margin: 1.5rem 0;
  padding: 1.4rem 1.5rem;
  background: rgba(184, 152, 95, 0.08);
  border-radius: var(--mt-radius);
  border-left: 3px solid var(--mt-gold);
}
.tent-detail-spec .spec-item .key {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mt-muted);
  margin-bottom: 0.25rem;
}
.tent-detail-spec .spec-item .val {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--mt-ink);
}

.tent-feature-row + .tent-feature-row { margin-top: 4.5rem; }

/* Add-ons grid */
.addon-card {
  background: var(--mt-paper);
  border-radius: var(--mt-radius);
  padding: 2rem 1.5rem 1.75rem;
  height: 100%;
  text-align: center;
  box-shadow: var(--mt-shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.addon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mt-shadow);
}
.addon-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 152, 95, 0.12);
  color: var(--mt-gold);
}
.addon-card-icon svg { width: 28px; height: 28px; }
.addon-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--mt-ink);
  margin-bottom: 0.6rem;
}
.addon-card p {
  font-size: 0.92rem;
  color: var(--mt-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 575px) {
  .tent-detail-spec { grid-template-columns: 1fr; gap: 0.85rem; }
  .tent-feature-row + .tent-feature-row { margin-top: 3rem; }
}

/* ---------- Nav: Dropdown menu ---------- */
.site-nav .dropdown-menu {
  background: var(--mt-paper);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--mt-radius);
  box-shadow: var(--mt-shadow);
  padding: 0.5rem;
  margin-top: 0.5rem;
  min-width: 240px;
}
.site-nav .dropdown-item {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mt-ink-soft);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  transition: background .25s ease, color .25s ease;
  white-space: normal;
}
.site-nav .dropdown-item:hover,
.site-nav .dropdown-item:focus {
  background: rgba(184, 152, 95, 0.12);
  color: var(--mt-ink);
}
.site-nav .dropdown-item.active,
.site-nav .dropdown-item:active {
  background: rgba(184, 152, 95, 0.18);
  color: var(--mt-gold);
  font-weight: 600;
}
.site-nav .dropdown-toggle::after {
  margin-left: 0.4rem;
  vertical-align: 0.15em;
  border-top-width: 5px;
  border-left-width: 4px;
  border-right-width: 4px;
  transition: transform .25s ease;
}
.site-nav .nav-item.dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* On mobile, the collapsed nav uses inline expansion — match that style */
@media (max-width: 991px) {
  .site-nav .dropdown-menu {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 1rem;
    margin: 0.25rem 0;
    min-width: 0;
  }
  .site-nav .dropdown-item {
    padding: 0.5rem 0.5rem;
  }
}

/* ---------- Event Page: FAQ Accordion ---------- */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}
.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
}
.faq-accordion .accordion-item:last-child {
  border-bottom: 0;
}
.faq-accordion .accordion-header { margin: 0; }
.faq-accordion .accordion-button {
  background: transparent;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 500;
  color: var(--mt-ink);
  padding: 1.4rem 0;
  box-shadow: none;
  border: 0;
  text-align: left;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--mt-gold);
  background: transparent;
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border: 0;
  outline: none;
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23b8985f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  background-size: 20px;
  flex-shrink: 0;
  transition: transform .35s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}
.faq-accordion .accordion-body {
  padding: 0 2rem 1.4rem 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mt-ink-soft);
}

/* ---------- Event Page: Gallery preview grid ---------- */
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.event-gallery-grid .tile {
  position: relative;
  display: block;
  border-radius: var(--mt-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--mt-shadow-sm);
  cursor: zoom-in;
}
.event-gallery-grid .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.event-gallery-grid .tile:hover img { transform: scale(1.06); }
.event-gallery-grid .tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,16,12,0.45) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.event-gallery-grid .tile:hover::after { opacity: 1; }

@media (max-width: 991px) {
  .event-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .event-gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1f1a14;
  color: #c9bfae;
  padding: 4rem 0 1.5rem;
  margin-top: 0;
}
.site-footer .brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .75rem;
}
.site-footer p { color: #a99e8b; font-size: 0.92rem; }
.site-footer h6 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.site-footer a {
  color: #a99e8b;
  font-size: 0.92rem;
  display: inline-block;
  padding: 0.18rem 0;
  transition: color .2s;
}
.site-footer a:hover { color: var(--mt-gold-soft); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-hours { padding-top: 0.4rem; }
.site-footer .footer-hours span { display: block; line-height: 1.7; }
.site-footer .socials {
  display: flex; gap: .6rem; margin-top: 1rem;
}
.site-footer .socials a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: #c9bfae;
  padding: 0;
}
.site-footer .socials a:hover {
  background: var(--mt-gold);
  border-color: var(--mt-gold);
  color: #fff;
}
.site-footer .socials svg { width: 14px; height: 14px; }

.site-footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: #807665;
}

/* ---------- Utility helpers ---------- */
.bg-cream { background-color: var(--mt-cream); }
.bg-paper { background-color: var(--mt-paper); }

/* Subtle alternating section backgrounds.
   Sets --section-bg so children (e.g. fades) can match. */
.section-soft {
  --section-bg: var(--mt-cream-soft);
  background-color: var(--mt-cream-soft);
}
.section-cream {
  --section-bg: var(--mt-cream);
  background-color: var(--mt-cream);
}
.text-gold { color: var(--mt-gold) !important; }
.text-ink { color: var(--mt-ink) !important; }
.text-muted-warm { color: var(--mt-muted) !important; }
.divider {
  height: 1px;
  background: var(--mt-line);
  border: 0;
  margin: 0;
}

/* Section header alignment helper */
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: .5rem; }
.section-head p { color: var(--mt-muted); max-width: 620px; margin: 0 auto; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991px) {
  .section { padding: 4.5rem 0; }
  .feature-bar { margin-top: -2rem; }
}
@media (max-width: 575px) {
  .section { padding: 3.5rem 0; }
  .hero-content { padding: 2rem 1.25rem; }
  .feature-item span { font-size: 0.82rem; }
}
