/* Canvas: CanvasHive */

:root {
  --cnvs-themecolor: #C8820A;
  --cnvs-themecolor-rgb: 200,130,10;

  --cnvs-body-font: 'Karla', sans-serif;
  --cnvs-primary-font: 'Fraunces', serif;
  --cnvs-secondary-font: 'Fraunces', serif;

  --ch-amber: #C8820A;
  --ch-amber-light: #E09B1A;
  --ch-cream: #F7EDD0;
  --ch-cream-dark: #EFE0B0;
  --ch-green: #3D5E38;
  --ch-green-light: #4F7848;
  --ch-brown: #5C3A1E;
  --ch-brown-dark: #3E2210;
  --ch-ink: #1E1208;
  --ch-sand: #C4A86A;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --cnvs-footer-bg: #2A150A;
  --cnvs-copyrights-link-color: rgba(255,255,255,0.55);
}

/* ---- GLOBAL ---- */
body {
  font-family: var(--cnvs-body-font);
  font-size: 17px;
  line-height: 1.72;
  color: #2E1B08;
  background-color: #FEFBF5;
}

h1, h2, h3, h4, h5 {
  font-family: var(--cnvs-primary-font);
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
  color: var(--ch-brown-dark);
}

em {
  font-style: italic;
  font-weight: 300;
  color: var(--ch-amber);
}

/* ---- HEADER ---- */
#header .header-misc {
  display: flex;
  align-items: center;
}

.ch-nav-cta {
  display: inline-block;
  padding: 9px 22px;
  background: var(--ch-amber);
  color: #fff;
  font-family: var(--cnvs-body-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 200ms var(--ease-out), transform 160ms var(--ease-out);
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .ch-nav-cta:hover {
    background: var(--ch-amber-light);
    color: #fff;
    transform: translateY(-1px);
  }
}

.ch-nav-cta:active { transform: scale(0.97); }

/* ---- HERO ---- */
.ch-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ch-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s var(--ease-in-out);
}

.ch-hero:hover .ch-hero-bg { transform: scale(1); }

.ch-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,12,2,0.62) 0%, rgba(30,12,2,0.35) 60%, rgba(30,12,2,0.15) 100%);
}

.is-expanded-menu .ch-hero-inner {
  padding-top: calc(var(--cnvs-header-height) + 4rem);
}

.ch-hero-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 660px;
}

.ch-eyebrow {
  font-family: var(--cnvs-body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ch-sand);
  margin-bottom: 1.5rem;
}

.ch-hero-h1 {
  font-family: var(--cnvs-primary-font);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FEFBF5;
  margin-bottom: 1.5rem;
}

.ch-hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,251,245,0.85);
  max-width: 520px;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}

.ch-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ch-varietal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.ch-varietal-pills span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,251,245,0.7);
  border: 1px solid rgba(255,251,245,0.25);
  border-radius: 40px;
  padding: 4px 14px;
  text-transform: uppercase;
}

/* ---- BUTTONS ---- */
.ch-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--ch-amber);
  color: #fff;
  font-family: var(--cnvs-body-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 220ms var(--ease-out), transform 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .ch-btn-primary:hover {
    background: var(--ch-amber-light);
    color: #fff;
    transform: translateY(-2px);
  }
}

.ch-btn-primary:active { transform: scale(0.97); color: #fff; }
.ch-btn-large { padding: 18px 44px; font-size: 16px; }

.ch-btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,251,245,0.45);
  color: rgba(255,251,245,0.9);
  font-family: var(--cnvs-body-font);
  font-weight: 500;
  font-size: 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out), transform 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .ch-btn-ghost:hover {
    border-color: rgba(255,251,245,0.75);
    background: rgba(255,251,245,0.08);
    color: #fff;
    transform: translateY(-1px);
  }
}

.ch-btn-ghost:active { transform: scale(0.97); }
.ch-btn-light { border-color: rgba(255,251,245,0.5); color: rgba(255,251,245,0.9); }

/* ---- TRUST STRIP ---- */
.ch-trust-strip {
  background: var(--ch-amber);
  padding: 16px 0;
}

.ch-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.ch-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ch-trust-item i { font-size: 16px; }

/* ---- SECTION LABELS / HEADERS ---- */
.ch-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ch-amber);
  margin-bottom: 1rem;
  display: block;
}
.ch-section-label.text-center {
  margin-left: auto;
  margin-right: auto;
}

.ch-label-light { color: rgba(255,251,245,0.7); }

.ch-section-h2 {
  font-family: var(--cnvs-primary-font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ch-brown-dark);
  margin-bottom: 1.25rem;
}

.ch-section-sub {
  font-size: 1.05rem;
  color: #5A3B1E;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
  margin-bottom: 0;
}

/* ---- HOW IT WORKS ---- */
.ch-hiw-section { background: var(--ch-cream); }

.ch-hiw-grid { border: 1px solid var(--ch-cream-dark); border-radius: 8px; overflow: hidden; }

.ch-hiw-step {
  padding: 3rem 2.5rem;
  position: relative;
}

.ch-hiw-step--center {
  border-left: 1px solid var(--ch-cream-dark);
  border-right: 1px solid var(--ch-cream-dark);
}

@media (max-width: 767px) {
  .ch-hiw-step--center {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--ch-cream-dark);
    border-bottom: 1px solid var(--ch-cream-dark);
  }
}

.ch-hiw-num {
  font-family: var(--cnvs-primary-font);
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(200,130,10,0.18);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.ch-hiw-icon-wrap { overflow: hidden; }

.ch-hiw-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.ch-hiw-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ch-brown-dark);
  margin-bottom: 0.75rem;
}

.ch-hiw-desc {
  font-size: 0.95rem;
  color: #5A3B1E;
  line-height: 1.7;
}

/* ---- STAT BREAK ---- */
.ch-stat-break {
  background: var(--ch-brown-dark) !important;
}

.ch-stat-break.dark {
  --cnvs-section-bg: var(--ch-brown-dark);
}

.ch-pull-quote {
  font-family: var(--cnvs-primary-font);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--ch-cream);
  border-left: 3px solid var(--ch-amber);
  padding-left: 1.5rem;
  margin: 0 0 1.5rem 0;
}

.ch-pull-body {
  color: rgba(247,237,208,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ch-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ch-stat-item {
  background: rgba(247,237,208,0.06);
  border: 1px solid rgba(247,237,208,0.12);
  border-radius: 6px;
  padding: 1.5rem;
}

.ch-stat-num {
  font-family: var(--cnvs-primary-font);
  font-size: 3rem;
  font-weight: 600;
  color: var(--ch-amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ch-stat-label {
  font-size: 0.85rem;
  color: rgba(247,237,208,0.7);
  line-height: 1.5;
}

/* ---- TIERS ---- */
.ch-tiers-section { background: #FEFBF5; }

.ch-tier-card {
  background: #fff;
  border: 1.5px solid var(--ch-cream-dark);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .ch-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(92,58,30,0.12);
    border-color: var(--ch-amber);
  }
}

.ch-tier-card--featured {
  border-color: var(--ch-amber);
  background: var(--ch-brown-dark);
  color: var(--ch-cream);
}

.ch-tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ch-amber);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 40px;
  white-space: nowrap;
}

.ch-tier-top {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ch-cream-dark);
  margin-bottom: 1.5rem;
}

.ch-tier-card--featured .ch-tier-top { border-color: rgba(247,237,208,0.15); }

.ch-tier-icon {
  font-size: 2rem;
  color: var(--ch-amber);
  margin-bottom: 0.75rem;
}

.ch-tier-name {
  font-family: var(--cnvs-primary-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ch-brown-dark);
  margin-bottom: 0.25rem;
}

.ch-tier-card--featured .ch-tier-name { color: var(--ch-cream); }

.ch-tier-tagline {
  font-size: 0.85rem;
  color: #8A6040;
  margin-bottom: 1rem;
}

.ch-tier-card--featured .ch-tier-tagline { color: rgba(247,237,208,0.65); }

.ch-tier-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.ch-price-amount {
  font-family: var(--cnvs-primary-font);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--ch-amber);
  line-height: 1;
}

.ch-price-period {
  font-size: 0.9rem;
  color: #8A6040;
}

.ch-tier-card--featured .ch-price-period { color: rgba(247,237,208,0.65); }

.ch-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.ch-tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  color: #5A3B1E;
  border-bottom: 1px solid var(--ch-cream-dark);
}

.ch-tier-features li:last-child { border-bottom: none; }
.ch-tier-card--featured .ch-tier-features li { color: rgba(247,237,208,0.82); border-color: rgba(247,237,208,0.1); }

.ch-tier-features i {
  color: var(--ch-green);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.ch-tier-card--featured .ch-tier-features i { color: var(--ch-amber); }

.ch-tier-btn {
  display: block;
  text-align: center;
  padding: 13px 24px;
  background: var(--ch-amber);
  color: #fff;
  font-family: var(--cnvs-body-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms var(--ease-out), transform 160ms var(--ease-out);
  margin-top: auto;
}

@media (hover: hover) and (pointer: fine) {
  .ch-tier-btn:hover {
    background: var(--ch-amber-light);
    color: #fff;
    transform: translateY(-2px);
  }
}

.ch-tier-btn:active { transform: scale(0.97); color: #fff; }

.ch-tiers-note {
  font-size: 0.85rem;
  color: #8A6040;
}

/* ---- PRODUCERS ---- */
.ch-producers-section { background: var(--ch-cream); }

.ch-producers-intro {
  font-size: 1.05rem;
  color: #5A3B1E;
  max-width: 680px;
  line-height: 1.75;
  text-wrap: pretty;
}

.ch-producer-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--ch-cream-dark);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .ch-producer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(92,58,30,0.14);
  }
}

.ch-producer-img-wrap { overflow: hidden; }

.ch-producer-img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 500ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .ch-producer-card:hover .ch-producer-img { transform: scale(1.04); }
}

.ch-producer-body { padding: 1.75rem; }

.ch-producer-region {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ch-green);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ch-producer-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ch-brown-dark);
  margin-bottom: 0.25rem;
}

.ch-producer-varietal {
  font-size: 0.85rem;
  color: var(--ch-amber);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ch-producer-bio {
  font-size: 0.9rem;
  color: #5A3B1E;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.ch-producer-quote {
  font-family: var(--cnvs-primary-font);
  font-style: italic;
  font-size: 0.95rem;
  color: #8A6040;
  border-left: 2px solid var(--ch-amber);
  padding-left: 1rem;
  line-height: 1.55;
}

/* ---- TASTING NOTES ARCHIVE ---- */
.ch-archive-section { background: #FEFBF5; }

.ch-archive-body {
  font-size: 0.95rem;
  color: #5A3B1E;
  line-height: 1.7;
  text-wrap: pretty;
  margin-bottom: 0;
}

.ch-archive-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ch-archive-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--ch-cream-dark);
  display: grid;
  grid-template-columns: 90px 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0 1.5rem;
  align-items: start;
}

.ch-archive-item:first-child { padding-top: 0; }
.ch-archive-item:last-child { border-bottom: none; }

.ch-archive-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A6040;
  padding-top: 4px;
  grid-row: 1;
  grid-column: 1;
}

.ch-archive-varietal {
  font-family: var(--cnvs-primary-font);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ch-brown-dark);
  grid-row: 1;
  grid-column: 2;
}

.ch-archive-region {
  font-size: 12px;
  color: var(--ch-green);
  font-weight: 600;
  letter-spacing: 0.06em;
  grid-row: 2;
  grid-column: 2;
  margin-bottom: 0.5rem;
}

.ch-archive-note {
  font-size: 0.875rem;
  color: #5A3B1E;
  line-height: 1.65;
  grid-row: 3;
  grid-column: 2;
  margin: 0;
}

.ch-archive-score {
  font-size: 11px;
  color: var(--ch-amber);
  grid-row: 1;
  grid-column: 3;
  padding-top: 6px;
}

@media (max-width: 575px) {
  .ch-archive-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ch-archive-month, .ch-archive-varietal, .ch-archive-region, .ch-archive-note, .ch-archive-score {
    grid-column: 1;
    grid-row: auto;
  }
}

/* ---- GIFTING CTA ---- */
.ch-gifting-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.ch-gifting-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ch-gifting-scrim {
  position: absolute;
  inset: 0;
  background: rgba(30,12,2,0.68);
}

.ch-gifting-h2 {
  font-family: var(--cnvs-primary-font);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ch-cream);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.ch-gifting-body {
  font-size: 1.05rem;
  color: rgba(247,237,208,0.82);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-wrap: pretty;
}

.ch-gifting-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.ch-gifting-footnote {
  font-size: 0.8rem;
  color: rgba(247,237,208,0.5);
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

/* ---- FAQ ---- */
.ch-faq-section { background: var(--ch-cream); }

.ch-faq-side-body {
  font-size: 0.95rem;
  color: #5A3B1E;
  line-height: 1.7;
  text-wrap: pretty;
}

.ch-faq-item {
  border-bottom: 1px solid var(--ch-cream-dark) !important;
  margin-bottom: 0 !important;
  border: none;
}

.ch-faq-item .toggle-header {
  padding: 1.25rem 0;
}

.ch-faq-item .toggle-title {
  font-family: var(--cnvs-body-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ch-brown-dark);
}

.ch-faq-item .toggle-icon { color: var(--ch-amber); }

.ch-faq-item .toggle-content {
  padding-bottom: 1.25rem;
}

.ch-faq-item .toggle-content p {
  font-size: 0.95rem;
  color: #5A3B1E;
  line-height: 1.72;
}

/* ---- REVIEWS ---- */
.ch-reviews-section { background: #FEFBF5; }

.ch-review-card {
  background: #fff;
  border: 1.5px solid var(--ch-cream-dark);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
}

.ch-review-stars {
  font-size: 12px;
  color: var(--ch-amber);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.ch-review-text {
  font-size: 0.92rem;
  color: #4A2E10;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}

.ch-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ch-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ch-amber);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ch-review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ch-brown-dark);
}

.ch-review-loc {
  font-size: 0.8rem;
  color: #8A6040;
}

/* Override Canvas owl carousel img rule for review avatars */
.owl-carousel .owl-item img.ch-review-avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---- FINAL CTA ---- */
.ch-final-cta-section {
  background: var(--ch-green) !important;
}

.ch-final-cta-section.dark {
  --cnvs-section-bg: var(--ch-green);
}

.ch-final-cta-h2 {
  font-family: var(--cnvs-primary-font);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ch-cream);
  margin-bottom: 1rem;
}

.ch-final-cta-sub {
  color: rgba(247,237,208,0.8);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
#footer {
  --cnvs-footer-bg: #2A150A;
  --cnvs-footer-top-border: 1px solid rgba(247,237,208,0.07);
  --cnvs-copyrights-link-color: rgba(247,237,208,0.5);
}

.ch-footer-tagline {
  font-size: 0.9rem;
  color: rgba(247,237,208,0.65);
  line-height: 1.65;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.ch-footer-socials {
  display: flex;
  gap: 1rem;
}

.ch-footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247,237,208,0.2);
  border-radius: 50%;
  color: rgba(247,237,208,0.65);
  font-size: 15px;
  text-decoration: none;
  transition: border-color 200ms var(--ease-out), color 200ms var(--ease-out), transform 160ms var(--ease-out);
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .ch-footer-socials a:hover {
    border-color: var(--ch-amber);
    color: var(--ch-amber);
    transform: translateY(-2px);
  }
}

.ch-footer-heading {
  font-family: var(--cnvs-body-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,237,208,0.45);
  margin-bottom: 1rem;
}

.ch-footer-newsletter-sub {
  font-size: 0.875rem;
  color: rgba(247,237,208,0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ch-newsletter-form { width: 100%; }

.ch-newsletter-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(247,237,208,0.18);
  border-radius: 4px;
  overflow: hidden;
}

.ch-newsletter-input {
  flex: 1;
  background: rgba(247,237,208,0.05) !important;
  border: none !important;
  border-radius: 0 !important;
  color: var(--ch-cream) !important;
  font-size: 14px;
  padding: 10px 14px;
}

.ch-newsletter-input::placeholder { color: rgba(247,237,208,0.35); }
.ch-newsletter-input:focus { outline: none; box-shadow: none !important; }

.ch-newsletter-btn {
  background: var(--ch-amber);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: var(--cnvs-body-font);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .ch-newsletter-btn:hover { background: var(--ch-amber-light); }
}

.ch-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ch-footer-links li { margin-bottom: 0.6rem; }

.ch-footer-links a {
  font-size: 0.875rem;
  color: rgba(247,237,208,0.6);
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .ch-footer-links a:hover { color: var(--ch-amber); }
}

.ch-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ch-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(247,237,208,0.6);
  margin-bottom: 0.6rem;
}

.ch-footer-contact i { color: var(--ch-amber); font-size: 13px; margin-top: 2px; }

.ch-footer-contact a {
  color: rgba(247,237,208,0.6);
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .ch-footer-contact a:hover { color: var(--ch-amber); }
}

#copyrights {
  border-top: 1px solid rgba(247,237,208,0.07);
}

#copyrights .row {
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

#copyrights a { color: var(--ch-amber); }

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  .ch-hero-bg { transform: none !important; transition: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.content-wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.section {
  margin-top: 0;
  margin-bottom: 0;
}

.ch-footer-contact a {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 575.98px) {
  #footer .footer-widgets-wrap > .row {
    --bs-gutter-x: 1.5rem;
  }
}
