:root {
  --cream: #ffffff;
  --ivory: #ffffff;
  --wool: #ffffff;
  --sand: #ddc8aa;
  --camel: #b98a5f;
  --gold: #c59b68;
  --brown: #6f4a31;
  --coffee: #3f281b;
  --ink: #2a211b;
  --muted: #74665b;
  --line: #eee7df;
  --shadow: 0 12px 30px rgba(60, 35, 20, .06);
  --soft: 0 6px 20px rgba(60, 35, 20, .04);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn-primary {
  color: #fff9ef;
  background: var(--coffee);
  box-shadow: 0 10px 22px rgba(63, 40, 27, .22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #57351f;
}

.btn-light {
  color: var(--coffee);
  background: #ffffff;
  border-color: #eee7df;
}

.btn-light:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.top-strip {
  background: #ffffff;
  border-bottom: 1px solid #eee7df;
  font-size: 12px;
  color: #60412d;
}

.top-strip-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-group span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-group span::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(80, 48, 29, .1);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  color: var(--coffee);
}

.brand svg {
  width: 38px;
  height: 38px;
  stroke: var(--brown);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: #6b4a36;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu a,
.drop-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 14px;
  color: #221914;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.menu a::after,
.drop-toggle::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  background: var(--brown);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.menu a:hover::after,
.menu .active::after,
.drop-toggle:hover::after {
  transform: scaleX(1);
}

.dropdown { position: relative; }

.dropdown-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 230px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}

.dropdown:hover .dropdown-panel,
.dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  width: 100%;
  justify-content: flex-start;
  min-height: 38px;
  border-radius: 5px;
}

.dropdown-panel a:hover { background: #faf7f4; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--coffee);
  cursor: pointer;
}

.mobile-toggle i {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: .18s ease;
}

.mobile-toggle.open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open i:nth-child(2) { opacity: 0; }
.mobile-toggle.open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.contact-hero {
  min-height: 330px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .82) 42%, rgba(255, 253, 248, .2) 78%),
    url("images/contact-hero.jpg") center right / cover no-repeat,
    #ffffff;
  border-bottom: 1px solid var(--line);
}

.hero-grid { display: grid; grid-template-columns: 1fr; }

.hero-copy {
  max-width: 610px;
  padding: 70px 0 84px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  color: #5d4333;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover { color: var(--camel); }

h1 {
  margin: 0 0 16px;
  color: var(--coffee);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 70px);
  line-height: .96;
}

.hero-copy p {
  max-width: 530px;
  margin: 0;
  color: #4b3a30;
  font-size: 16px;
}

.contact-cards-wrap {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  min-height: 170px;
  padding: 26px 20px 24px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(62, 38, 24, .16);
}

.info-icon,
.reason-icon,
.mini-icon {
  display: grid;
  place-items: center;
  color: var(--brown);
  background: #faf5ef;
  border-radius: 50%;
}

.info-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
}

.info-card h2 {
  margin: 0 0 8px;
  color: var(--coffee);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.info-card p,
.info-card span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section { padding: 34px 0; }

main,
.section,
.contact-cards-wrap,
.inquiry-section,
.contact-reasons,
.location-section,
.faq-section {
  background: #ffffff;
}

.section-title {
  margin: 0 0 24px;
  color: var(--coffee);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.15;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--soft);
}

.form-panel {
  padding: 34px 40px;
}

.eyebrow {
  color: var(--camel);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-panel h2 {
  margin: 5px 0 8px;
  color: var(--coffee);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.1;
}

.form-panel > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #493426;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form .full { grid-column: 1 / -1; }

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(80, 48, 29, .2);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
  padding: 12px 13px;
  font-size: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.inquiry-form textarea { resize: vertical; min-height: 112px; }

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(111, 74, 49, .55);
  box-shadow: 0 0 0 3px rgba(185, 138, 95, .18);
  background: #ffffff;
}

.factory-panel {
  position: relative;
  min-height: 620px;
  background: #ffffff;
}

.factory-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(63, 40, 27, .02), rgba(63, 40, 27, .28)),
    url("images/factory-building.jpg") center / cover no-repeat,
    #ffffff;
}

.overlay-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(80, 48, 29, .18);
  border-radius: 10px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.overlay-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.overlay-item:last-child { grid-column: 1 / -1; }

.mini-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.mini-icon svg { width: 20px; height: 20px; }

.overlay-item strong {
  color: var(--coffee);
  font-size: 14px;
}

.overlay-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px 22px;
  background: #ffffff;
  border: 1px solid rgba(80, 48, 29, .1);
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(62, 38, 24, .06);
}

.reason-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 6px 22px;
  border-right: 1px solid rgba(80, 48, 29, .12);
}

.reason-card:last-child { border-right: 0; }

.reason-icon {
  width: 54px;
  height: 54px;
}

.reason-icon svg { width: 26px; height: 26px; }

.reason-card h3 {
  margin: 0 0 6px;
  color: var(--coffee);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.location-section {
  padding-top: 26px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--soft);
}

.map-placeholder {
  min-height: 260px;
  position: relative;
  display: grid;
  place-content: center;
  gap: 6px;
  text-align: center;
  color: var(--coffee);
  background:
    linear-gradient(rgba(255, 255, 255, .82), rgba(255, 255, 255, .82)),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(111, 74, 49, .06) 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(111, 74, 49, .06) 40px),
    #ffffff;
}

.map-placeholder::before,
.map-placeholder::after {
  content: "";
  position: absolute;
  background: rgba(185, 138, 95, .35);
  border-radius: 999px;
}

.map-placeholder::before {
  width: 80%;
  height: 8px;
  left: 12%;
  top: 42%;
  transform: rotate(-12deg);
}

.map-placeholder::after {
  width: 7px;
  height: 82%;
  left: 48%;
  top: 8%;
  transform: rotate(18deg);
}

.map-pin {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin: 0 auto 4px;
  background: var(--brown);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(63, 40, 27, .24);
}

.map-pin::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 16px;
  top: 16px;
  background: #ffffff;
  border-radius: 50%;
}

.map-placeholder strong,
.map-placeholder span {
  position: relative;
  z-index: 1;
}

.location-card {
  padding: 34px 38px;
  background: #ffffff;
}

.location-card h3 {
  margin: 0 0 10px;
  color: var(--coffee);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.location-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.location-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4b382d;
}

.location-card span {
  color: var(--coffee);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.accordion,
.question-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--soft);
  overflow: hidden;
}

.faq-item + .faq-item { border-top: 1px solid var(--line); }

.faq-item button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  border: 0;
  background: transparent;
  color: var(--coffee);
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #faf5ef;
  color: var(--brown);
}

.faq-content {
  display: none;
  padding: 0 24px 18px;
  color: var(--muted);
  font-size: 14px;
}

.faq-content p { margin: 0; }
.faq-item.open .faq-content { display: block; }

.question-card {
  display: grid;
  grid-template-columns: .85fr 1fr;
  align-items: center;
  padding: 18px;
  gap: 20px;
  background: #ffffff;
}

.question-image {
  min-height: 160px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .08), rgba(63, 40, 27, .12)),
    url("images/wool-dryer-balls.jpg") center / cover no-repeat,
    #ffffff;
}

.question-card h3 {
  margin: 0 0 8px;
  color: var(--coffee);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.question-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  margin-top: 18px;
  padding: 34px 0;
  color: #fff8ec;
  background:
    linear-gradient(90deg, rgba(185, 138, 95, .96), rgba(111, 74, 49, .92)),
    url("images/sheepskin-rugs.jpg") center / cover no-repeat;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 720px;
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.12;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 248, 236, .84);
  font-size: 15px;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr .8fr .75fr 1.05fr;
  gap: 34px;
  padding: 34px 0 28px;
}

.footer-logo {
  min-width: 0;
  margin-bottom: 14px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--coffee);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.footer-grid p,
.footer-grid li,
.footer-bottom {
  color: #6b5b4f;
  font-size: 13px;
}

.footer-grid ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a:hover { color: var(--coffee); }

.footer-bottom {
  border-top: 1px solid rgba(80, 48, 29, .12);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 18px;
  flex-wrap: wrap;
}

.footer-bottom a {
  margin-left: 20px;
}

@media (max-width: 1080px) {
  .mobile-toggle { display: block; }
  .nav-actions .btn { display: none; }

  .menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .menu.open { display: flex; }
  .menu a, .drop-toggle { justify-content: space-between; width: 100%; }

  .dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    margin-bottom: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #ffffff;
  }

  .dropdown.open .dropdown-panel { display: block; }

  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .inquiry-grid, .location-grid, .faq-grid { grid-template-columns: 1fr; }
  .factory-panel { min-height: 540px; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .reason-card:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 28px)); }

  .top-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
    gap: 6px;
  }

  .brand { min-width: 0; }
  .brand strong { font-size: 25px; }
  .brand small { font-size: 8px; }

  .contact-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .88) 52%, rgba(255, 253, 248, .34)),
      url("images/contact-hero.jpg") center / cover no-repeat,
      #ffffff;
  }

  .hero-copy { padding: 56px 0 82px; }
  h1 { font-size: clamp(42px, 14vw, 58px); }

  .contact-cards,
  .inquiry-form,
  .reason-grid,
  .overlay-card,
  .question-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-panel { padding: 28px 22px; }
  .form-panel h2 { font-size: 32px; }
  .factory-panel { min-height: 520px; }
  .overlay-card { left: 16px; right: 16px; bottom: 16px; }
  .overlay-item:last-child { grid-column: auto; }

  .reason-card {
    border-right: 0;
    border-bottom: 1px solid rgba(80, 48, 29, .12);
    padding-bottom: 18px;
  }

  .reason-card:last-child { border-bottom: 0; }
  .location-card { padding: 28px 22px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-inner .btn { width: 100%; }
  .footer-bottom a { margin-left: 0; margin-right: 18px; }
}
/* WH unified footer */
.wh-footer-cta {
  background: linear-gradient(90deg, rgba(154, 104, 60, 0.88), rgba(72, 43, 28, 0.86)), url("images/blog-hero.jpg") center/cover no-repeat;
  color: #ffffff;
  margin-top: 44px;
}

.wh-footer-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
}

.wh-footer-cta h2 {
  margin: 0 0 8px;
  max-width: 720px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.02;
  letter-spacing: 0;
}

.wh-footer-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.wh-footer-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 34px;
  border-radius: 6px;
  background: #ffffff;
  color: #3b2115;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(41, 23, 14, 0.12);
  white-space: nowrap;
}

.wh-footer-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(41, 23, 14, 0.18);
}

.wh-footer {
  background: #f3eadc;
  border-top: 1px solid #e5d8c7;
  color: #4c3528;
}

.wh-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 24px 34px;
  display: grid;
  grid-template-columns: 1.6fr 0.85fr 0.95fr 0.9fr 1.25fr;
  gap: 44px;
}

.wh-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: #3b2115;
}

.wh-footer__logo svg {
  width: 35px;
  height: 35px;
  stroke: #8b5e3c;
  stroke-width: 2;
  fill: none;
  flex: 0 0 auto;
}

.wh-footer__logo strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 0.92;
  color: #3b2115;
}

.wh-footer__logo small {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6c4937;
}

.wh-footer__brand p {
  margin: 0;
  max-width: 340px;
  color: #5f4a3b;
  font-size: 14px;
  line-height: 1.65;
}

.wh-footer h3 {
  margin: 4px 0 17px;
  color: #3b2115;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.1;
}

.wh-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.wh-footer li,
.wh-footer a {
  color: #5a4335;
  font-size: 14px;
  line-height: 1.25;
}

.wh-footer a:hover {
  color: #3b2115;
}

.wh-footer__bottom {
  border-top: 1px solid #dfd1bf;
}

.wh-footer__bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 17px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #604a3b;
  font-size: 13px;
}

.wh-footer__policies {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.wh-footer__policies a {
  color: #5a4335;
}

@media (max-width: 980px) {
  .wh-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .wh-footer-cta__inner {
    grid-template-columns: 1fr;
    padding: 36px 20px;
    gap: 22px;
  }

  .wh-footer-cta__button {
    width: 100%;
  }

  .wh-footer__inner {
    grid-template-columns: 1fr;
    padding: 34px 20px 28px;
  }

  .wh-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }
}
