:root {
  --brown: #33291f;
  --brown-warm: #3e342a;
  --mid: #5d5144;
  --mid-light: #776a59;
  --red: #9b2f20;
  --red-dark: #7e251b;
  --gold: #c7ad6b;
  --cream: #fffaf0;
  --sand: #f5ead2;
  --sand-mid: #f3e4c9;
  --border: #d8cdb6;
  --green: #273020;
  --green-soft: #6b8d5b;
  --white: #ffffff;
  --font-editorial: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --shadow-soft: 0 8px 30px rgba(44, 33, 22, 0.12);
  --shadow-card: 0 18px 55px rgba(44, 33, 22, 0.14);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--brown);
  background: var(--cream);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(155, 47, 32, 0.28);
  outline-offset: 3px;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 0;
  z-index: 1000;
  transform: translateY(-130%);
  padding: 0.75rem 1rem;
  color: var(--brown);
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 0 0 0.65rem 0.65rem;
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  width: min(100%, 1440px);
  min-height: 86px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(216, 205, 182, 0.34);
  background: rgba(255, 250, 240, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: max-content;
  color: var(--brown);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(44, 33, 22, 0.16);
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  font-family: var(--font-editorial);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: var(--mid-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.desktop-nav a {
  color: var(--brown-warm);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 140ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-outline,
.header-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 150ms var(--ease-out), background 150ms var(--ease-out);
}

.header-outline {
  color: var(--brown-warm);
  border: 1px solid var(--gold);
}

.header-outline:hover {
  background: var(--sand);
}

.header-primary {
  color: var(--cream);
  border: 1px solid var(--red);
  background: var(--red);
  box-shadow: 0 8px 20px rgba(155, 47, 32, 0.18);
}

.header-primary:hover {
  background: var(--red-dark);
}

.header-outline:active,
.header-primary:active,
.search-button:active,
.edit-search:active,
.show-more:active,
.secondary-button:active {
  transform: scale(0.97);
}

.locator-hero {
  position: relative;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8.5rem) clamp(1rem, 5vw, 4rem) clamp(4.75rem, 8vw, 7.25rem);
}

.locator-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background:
    radial-gradient(circle at 84% 12%, rgba(199, 173, 107, 0.13), transparent 20rem),
    linear-gradient(115deg, transparent 0 48%, rgba(199, 173, 107, 0.045) 49%, transparent 51%);
}

.hero-compass {
  position: absolute;
  top: clamp(3.5rem, 5vw, 5.75rem);
  right: clamp(1rem, 6vw, 5.5rem);
  z-index: 0;
  width: clamp(300px, 31vw, 455px);
  height: auto;
  opacity: 0.075;
  filter: sepia(0.6) saturate(0.7) contrast(0.86);
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}

.hero-copy,
.search-panel,
.data-note {
  position: relative;
}

.hero-copy {
  max-width: 810px;
  margin-bottom: 2.65rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 2.1rem;
  padding: 0.46rem 0.9rem;
  color: var(--brown-warm);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 4px 14px rgba(44, 33, 22, 0.05);
  font-size: 0.77rem;
  font-weight: 600;
}

.hero-kicker span {
  color: var(--red);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #8c6f32;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-editorial);
  font-weight: 500;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(4rem, 8.5vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--mid);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1.2fr 1.3fr auto;
  align-items: end;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: 1.7rem;
  background: rgba(255, 250, 240, 0.93);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.search-panel label,
.search-panel legend {
  color: var(--mid);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.search-panel label > span {
  margin-left: 0.22rem;
  color: #9a8c78;
  font-size: 0.6rem;
}

.zip-field,
.product-field,
.type-field {
  min-width: 0;
}

.input-shell,
.select-shell {
  position: relative;
  display: flex;
  align-items: center;
  height: 54px;
  margin-top: 0.55rem;
  color: var(--brown);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: var(--white);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.input-shell:focus-within,
.select-shell:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(155, 47, 32, 0.08);
}

.input-shell svg {
  flex: 0 0 auto;
  margin-left: 1rem;
  color: var(--red);
}

.input-shell input,
.select-shell select {
  width: 100%;
  height: 100%;
  color: var(--brown);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.98rem;
  font-weight: 600;
}

.input-shell input {
  padding: 0 0.9rem;
}

.input-shell input::placeholder {
  color: #b2a895;
}

.select-shell select {
  appearance: none;
  padding: 0 2.55rem 0 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-shell svg {
  position: absolute;
  right: 1rem;
  color: var(--mid);
  pointer-events: none;
}

.field-error {
  min-height: 1rem;
  margin: 0.35rem 0 -1.35rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
}

.radius-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 54px;
  margin-top: 0.55rem;
  padding: 4px;
  border-radius: 0.9rem;
  background: #eee7db;
}

.segmented-control label {
  min-width: 0;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-control span {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--mid-light);
  border-radius: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition: color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.segmented-control input:checked + span {
  color: var(--brown);
  background: var(--white);
  box-shadow: 0 3px 12px rgba(44, 33, 22, 0.1);
}

.segmented-control input:focus-visible + span {
  outline: 3px solid rgba(155, 47, 32, 0.28);
  outline-offset: 2px;
}

.search-button,
.secondary-button,
.show-more {
  min-height: 54px;
  border: 0;
  border-radius: 0.9rem;
  font-weight: 700;
  transition: transform 150ms var(--ease-out), background 150ms ease, box-shadow 150ms ease;
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-width: 164px;
  padding: 0 1.25rem;
  color: var(--cream);
  background: var(--red);
  box-shadow: 0 9px 23px rgba(155, 47, 32, 0.2);
}

.search-button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.data-note {
  margin: 1rem 0 0;
  color: var(--mid-light);
  font-size: 0.76rem;
}

.results-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1192px) / 2));
  color: var(--cream);
  background: var(--green);
}

.results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: url("./assets/antique-nautical-map-original.webp");
  background-position: center top;
  background-repeat: repeat-y;
  background-size: min(1300px, 118vw) auto;
  filter: sepia(1) saturate(0.42) contrast(1.2);
  mix-blend-mode: normal;
}

.results-section > * {
  position: relative;
  z-index: 1;
}

.results-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.results-header h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.results-header p:last-child {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.66);
}

.edit-search {
  flex: 0 0 auto;
  padding: 0.72rem 1rem;
  color: var(--cream);
  border: 1px solid rgba(255, 250, 240, 0.32);
  border-radius: 999px;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 150ms var(--ease-out), background 150ms ease;
}

.edit-search:hover {
  background: rgba(255, 255, 255, 0.08);
}

.locator-layout {
  overflow: hidden;
  border: 1px solid rgba(216, 205, 182, 0.7);
  border-radius: 1.8rem;
  background: var(--cream);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.2);
}

.results-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  color: var(--brown);
  background: var(--border);
}

.result-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 1.05rem;
  min-height: 166px;
  padding: 1.5rem 1.65rem;
  color: var(--brown);
  background: #fffaf0;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), background 160ms ease, box-shadow 160ms ease;
}

.result-card:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(44, 33, 22, 0.13);
  transform: translateY(-2px);
}

.result-card:active {
  transform: scale(0.995);
}

.location-graphic {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  align-self: start;
  color: var(--red);
  border: 1px solid rgba(155, 47, 32, 0.14);
  border-radius: 1.35rem;
  background: radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.95), transparent 43%), #f1e5dd;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  transition: transform 180ms var(--ease-out);
}

.location-graphic svg {
  width: 47px;
  height: 47px;
}

.graphic-number {
  position: absolute;
  top: -8px;
  left: -8px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: var(--cream);
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 4px 12px rgba(80, 30, 38, 0.2);
  font-size: 0.68rem;
  font-weight: 700;
}

.off-premise-icon {
  display: none;
}

.result-card.is-off-premise .location-graphic {
  color: #4f6544;
  border-color: rgba(79, 101, 68, 0.16);
  background: radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.95), transparent 43%), #e7ebdf;
}

.result-card.is-off-premise .graphic-number {
  background: #4f6544;
}

.result-card.is-off-premise .on-premise-icon {
  display: none;
}

.result-card.is-off-premise .off-premise-icon {
  display: block;
}

.result-card:hover .location-graphic {
  transform: translateY(-2px) rotate(-1deg);
}

.result-copy {
  min-width: 0;
}

.result-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.location-type {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-card.is-off-premise .location-type {
  color: #4f6544;
}

.distance {
  color: var(--brown-warm);
  font-size: 0.8rem;
}

.location-name {
  margin-bottom: 0.3rem;
  font-size: 1.48rem;
  font-weight: 600;
  line-height: 1.05;
}

.address {
  margin-bottom: 0.82rem;
  color: var(--mid-light);
  font-size: 0.82rem;
  line-height: 1.45;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.product-tag {
  padding: 0.28rem 0.55rem;
  color: var(--brown-warm);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(245, 234, 210, 0.45);
  font-size: 0.64rem;
  font-weight: 600;
}

.maps-cta {
  align-self: end;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.maps-cta b {
  margin-left: 0.2rem;
  font-size: 0.95rem;
}

.show-more {
  display: block;
  width: calc(100% - 2.4rem);
  margin: 1.2rem;
  color: var(--brown);
  border: 1px solid var(--border);
  background: transparent;
}

.show-more:hover {
  background: var(--sand);
}

.empty-section,
.loading-section {
  min-height: 440px;
  padding: 7rem 1rem;
  color: var(--cream);
  background: var(--green);
  text-align: center;
}

.empty-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  color: var(--cream);
  border: 3px double var(--gold);
  border-radius: 50%;
  background: var(--red);
  font-family: var(--font-editorial);
  font-weight: 600;
}

.empty-section h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.empty-section p,
.loading-section p {
  color: rgba(255, 250, 240, 0.68);
}

.secondary-button {
  margin-top: 1rem;
  padding: 0 1.35rem;
  color: var(--cream);
  background: var(--red);
}

.loader {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 650ms linear infinite;
}

.preserved-section {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--cream);
}

.preserved-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.preserved-lead h2 {
  margin-bottom: 0;
  color: var(--brown);
  font-size: clamp(3.6rem, 6.5vw, 6rem);
  line-height: 0.86;
  letter-spacing: -0.025em;
}

.preserved-image {
  position: relative;
  margin: 0;
  overflow: visible;
}

.preserved-image img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 2.25rem;
  box-shadow: var(--shadow-soft);
}

.preserved-image figcaption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: grid;
  gap: 0.45rem;
  max-width: 440px;
  padding: 1.1rem 1.35rem;
  color: var(--mid);
  border: 1px solid var(--gold);
  border-radius: 1.25rem;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(9px);
}

.preserved-image figcaption strong {
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preserved-image figcaption span {
  font-size: 0.98rem;
  line-height: 1.45;
}

.preserved-intro {
  margin: clamp(2.8rem, 5vw, 4.5rem) 0 2.5rem;
  color: var(--mid);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.flavor-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 1.2rem;
  min-width: 980px;
}

.flavor-strip > div {
  position: relative;
  min-height: 150px;
  padding: 1.3rem;
  overflow: hidden;
  color: var(--mid);
  border: 1px solid var(--border);
  border-radius: 2rem 2rem 0.85rem 0.85rem;
  background: rgba(255, 250, 240, 0.85);
  box-shadow: 0 7px 23px rgba(44, 33, 22, 0.06);
}

.flavor-strip strong {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flavor-strip em {
  position: absolute;
  left: 1.3rem;
  bottom: -0.45rem;
  color: rgba(199, 173, 107, 0.24);
  font-family: var(--font-editorial);
  font-size: 5rem;
  font-style: normal;
  line-height: 1;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 0.5rem;
  border-radius: 50%;
}

.dot.wine { background: var(--red); }
.dot.red { background: #bd3a30; }
.dot.green { background: var(--green-soft); }
.dot.gold { background: #cfbc59; }

.preview-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 5vw, 4rem) 2.5rem;
  color: var(--mid-light);
  border-top: 1px solid rgba(216, 205, 182, 0.5);
  background: var(--cream);
  font-size: 0.72rem;
}

.preview-footer p {
  margin: 0;
}

.preview-footer a {
  color: inherit;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .search-panel {
    grid-template-columns: 1fr 1fr;
  }

  .search-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .hero-compass {
    display: none;
  }

  .preserved-lead {
    grid-template-columns: 1fr;
  }

  .preserved-image {
    max-width: 650px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 76px;
    padding-inline: 0.9rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-copy small,
  .header-outline {
    display: none;
  }

  .header-primary {
    min-height: 36px;
    padding-inline: 1rem;
  }

  .locator-hero {
    padding-top: 4.5rem;
  }

  .hero-kicker {
    margin-bottom: 1.55rem;
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 5.2rem);
  }

  .search-panel {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 0.9rem;
    border-radius: 1.3rem;
  }

  .search-button {
    grid-column: auto;
  }

  .field-error {
    margin-bottom: -0.75rem;
  }

  .results-section {
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .results-header {
    align-items: flex-start;
    padding: 0 1rem;
  }

  .results-header h2 {
    font-size: 2.7rem;
  }

  .edit-search {
    margin-top: 0.1rem;
  }

  .locator-layout {
    border-right: 0;
    border-left: 0;
    border-radius: 1.45rem 1.45rem 0 0;
  }

  .result-card {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 0;
    padding: 1.25rem 1rem;
  }

  .location-graphic {
    width: 58px;
    height: 58px;
    border-radius: 1rem;
  }

  .location-graphic svg {
    width: 38px;
    height: 38px;
  }

  .graphic-number {
    top: -7px;
    left: -6px;
    width: 24px;
    height: 24px;
    font-size: 0.62rem;
  }

  .maps-cta {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.1rem;
  }

  .preserved-lead h2 {
    font-size: clamp(3.25rem, 15vw, 4.5rem);
  }

  .preserved-image img {
    height: 330px;
    border-radius: 1.55rem;
  }

  .preserved-image figcaption {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    padding: 0.9rem 1rem;
  }

  .preview-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Full lower-page recreation: matches the current Charleston Mix Where to Buy page. */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: none;
}

.preserved-section {
  max-width: 1440px;
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-showcase-card {
  display: grid;
  grid-template-rows: 116px 300px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--cream);
  box-shadow: 0 9px 28px rgba(44, 33, 22, 0.09);
}

.product-card-top {
  position: relative;
  padding: 1.35rem 1.25rem;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.96);
}

.product-card-top p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--mid);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card-top > span {
  position: absolute;
  bottom: 0.2rem;
  left: 1.25rem;
  color: rgba(199, 173, 107, 0.34);
  font-family: var(--font-editorial);
  font-size: 3.1rem;
  font-style: italic;
  line-height: 1;
}

.product-art {
  display: grid;
  place-items: end center;
  padding: 1rem 0.7rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.88), transparent 42%),
    linear-gradient(180deg, #f9eedc 0%, #eddbc1 100%);
}

.product-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 17px 18px rgba(44, 33, 22, 0.18));
  transition: transform 450ms var(--ease-out);
}

.product-showcase-card:hover .product-art img {
  transform: scale(1.035);
}

.product-card-copy {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 1.45rem 1.3rem 1.6rem;
  background: rgba(255, 250, 240, 0.98);
}

.product-card-copy .product-category {
  margin-bottom: 0;
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card-copy h3 {
  margin: 0.75rem 0 1rem;
  color: var(--brown);
  font-size: clamp(2rem, 2.4vw, 2.65rem);
  line-height: 0.86;
}

.product-card-copy > p:not(.product-category) {
  margin-bottom: 1.4rem;
  color: var(--mid);
  font-size: 0.86rem;
  line-height: 1.65;
}

.product-card-copy a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 150ms ease;
}

.product-card-copy a:hover {
  gap: 0.7rem;
}

.lineup-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  margin-top: clamp(4rem, 7vw, 6rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2.2rem;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.lineup-image {
  min-height: 500px;
  overflow: hidden;
}

.lineup-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lineup-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.lineup-copy .eyebrow {
  margin-bottom: 1.2rem;
}

.lineup-copy h3 {
  max-width: 440px;
  margin-bottom: 1.3rem;
  color: var(--brown);
  font-size: clamp(3.2rem, 5vw, 4.7rem);
  line-height: 0.91;
  letter-spacing: -0.025em;
}

.lineup-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 2rem;
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.75;
}

.lineup-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.lineup-tags > div {
  display: grid;
  gap: 0.15rem;
  min-height: 66px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(245, 234, 210, 0.48);
}

.lineup-tags strong {
  color: var(--brown);
  font-size: 0.75rem;
}

.lineup-tags span {
  color: var(--mid-light);
  font-size: 0.65rem;
}

.conversion-section {
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem);
  color: var(--cream);
  background: #2b2f22;
}

.conversion-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  width: min(100%, 1290px);
  margin: 0 auto;
}

.conversion-heading .eyebrow {
  color: var(--gold);
}

.conversion-heading h2 {
  margin: 0;
  font-size: clamp(4.4rem, 7vw, 6.9rem);
  line-height: 0.78;
  letter-spacing: -0.035em;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.conversion-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 2rem;
}

.conversion-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.conversion-card h3 {
  margin: 1.5rem 0 0.8rem;
  font-size: 2.25rem;
  line-height: 1;
}

.conversion-card p {
  margin-bottom: 1.25rem;
  font-size: 0.86rem;
  line-height: 1.65;
}

.conversion-card a,
.conversion-bar {
  color: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.conversion-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.conversion-card-nearby {
  color: var(--cream);
  background: rgba(255, 250, 240, 0.1);
}

.conversion-card-nearby svg {
  color: #c8ce58;
}

.conversion-card-online {
  color: var(--brown);
  border-color: var(--border);
  background: var(--cream);
}

.conversion-card-online svg,
.conversion-card-online a {
  color: var(--red);
}

.conversion-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 1rem 1.5rem;
  color: var(--cream);
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 999px;
  transition: background 150ms ease;
}

.conversion-bar:hover {
  background: rgba(255, 255, 255, 0.08);
}

.conversion-bar-light {
  color: var(--red);
  border-color: var(--border);
  background: var(--cream);
}

.conversion-bar-light:hover {
  background: var(--sand);
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 3.2rem clamp(1rem, 5vw, 4rem);
  color: var(--mid);
  background: var(--cream);
}

.site-footer strong {
  font-family: var(--font-editorial);
  font-size: 1.65rem;
  font-weight: 500;
}

.site-footer p {
  margin: 0.45rem 0 0;
  font-size: 0.76rem;
}

.site-footer .attribution {
  color: #938572;
  font-size: 0.62rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.footer-right {
  display: grid;
  justify-items: end;
  gap: 0.8rem;
}

.social-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}

.site-footer nav a {
  font-size: 0.7rem;
}

@media (max-width: 1180px) {
  .product-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .conversion-inner {
    grid-template-columns: 1fr;
  }

  .conversion-heading h2 br {
    display: none;
  }
}

@media (max-width: 820px) {
  .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lineup-feature {
    grid-template-columns: 1fr;
  }

  .lineup-image {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase-card {
    grid-template-rows: 100px 325px auto;
  }

  .product-card-copy {
    min-height: 0;
  }

  .lineup-feature {
    border-radius: 1.5rem;
  }

  .lineup-image {
    min-height: 330px;
  }

  .lineup-copy h3 {
    font-size: 3rem;
  }

  .lineup-tags,
  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .conversion-heading h2 {
    font-size: 4.2rem;
    line-height: 0.86;
  }

  .conversion-card {
    min-height: 260px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-right {
    justify-items: start;
  }
}

/* Streamlined conversion section: no redundant locator action on the locator page. */
.conversion-grid-streamlined {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.conversion-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 320px;
  padding: clamp(2.2rem, 4.5vw, 3.75rem);
}

.conversion-featured-action {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1.35rem;
  min-width: 190px;
}

.conversion-card-featured .conversion-featured-icon {
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  color: var(--red);
  border: 1px solid rgba(155, 47, 32, 0.22);
  border-radius: 1.85rem;
  background: rgba(155, 47, 32, 0.06);
}

.conversion-card-featured .conversion-featured-icon svg {
  width: 58px;
  height: 58px;
  margin: 0;
  stroke-width: 1.45;
}

.conversion-featured-copy {
  text-align: left;
}

.conversion-featured-copy .eyebrow {
  margin-bottom: 0.9rem;
  color: var(--red);
  text-align: left;
}

.conversion-featured-copy h3 {
  max-width: 610px;
  margin: 0 0 0.9rem;
  font-size: clamp(4.4rem, 7vw, 6.75rem);
  line-height: 0.78;
  letter-spacing: -0.035em;
  text-align: left;
}

.conversion-featured-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--mid);
  font-size: 1.04rem;
  line-height: 1.7;
  text-align: left;
}

.conversion-card .conversion-featured-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 190px;
  min-height: 56px;
  padding: 0.8rem 1.55rem;
  color: var(--cream);
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(155, 47, 32, 0.2);
  white-space: nowrap;
  transition: background 150ms ease, transform 150ms var(--ease-out);
}

.conversion-card .conversion-featured-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.conversion-grid-streamlined .conversion-bar {
  min-height: 78px;
  padding-inline: 1.6rem;
}

.conversion-grid-streamlined .conversion-bar > span {
  display: grid;
  gap: 0.28rem;
}

.conversion-grid-streamlined .conversion-bar small {
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.conversion-grid-streamlined .conversion-bar-light small {
  color: rgba(155, 47, 32, 0.68);
}

.conversion-grid-streamlined .conversion-bar b {
  font-size: 1rem;
}

@media (max-width: 720px) {
  .conversion-card-featured {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
  }

  .conversion-featured-action {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: stretch;
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .conversion-card-featured .conversion-featured-icon {
    width: 72px;
    height: 72px;
  }

  .conversion-card-featured .conversion-featured-icon svg {
    width: 40px;
    height: 40px;
  }

  .conversion-featured-copy h3 {
    font-size: clamp(4rem, 18vw, 5.4rem);
  }

  .conversion-card .conversion-featured-cta {
    width: 100%;
    min-width: 0;
  }

  .conversion-grid-streamlined {
    grid-template-columns: 1fr;
  }
}
