@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Outfit:wght@400;500;600&display=swap');

:root {
  --cherokee-ink: #141414;
  --cherokee-paper: #faf8f5;
  --cherokee-warm: #f3efe9;
  --cherokee-coral: #e07a5f;
  --cherokee-coral-dark: #c96850;
  --cherokee-muted: #6b6560;
  --cherokee-line: #e0dbd4;
  --cherokee-serif: 'Fraunces', Georgia, serif;
  --cherokee-sans: 'Outfit', sans-serif;
  --cherokee-max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--cherokee-sans);
  color: var(--cherokee-ink);
  background: var(--cherokee-paper);
  line-height: 1.7;
  font-size: 16px;
}

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

a { color: var(--cherokee-ink); text-underline-offset: 3px; }
a:hover { color: var(--cherokee-coral); }

h1, h2, h3 { font-family: var(--cherokee-serif); font-weight: 700; line-height: 1.15; }

.cherokee-wrap { width: min(100% - 2rem, var(--cherokee-max)); margin-inline: auto; }

.cherokee-loc {
  background: var(--cherokee-coral);
  color: #fff;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
}

.cherokee-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--cherokee-line);
  background: var(--cherokee-paper);
  position: sticky;
  top: 0;
  z-index: 100;
}

.cherokee-header-inner {
  width: min(100% - 2rem, var(--cherokee-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cherokee-brand {
  font-family: var(--cherokee-serif);
  font-size: 1.35rem;
  color: var(--cherokee-ink);
  text-decoration: none;
  letter-spacing: -.02em;
}

.cherokee-brand-sub {
  display: block;
  font-family: var(--cherokee-sans);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cherokee-coral);
  margin-top: .2rem;
}

.nav-main { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.nav-main a {
  color: var(--cherokee-muted);
  font-size: .86rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-main a:hover, .nav-main a.active { color: var(--cherokee-ink); }

.menu-toggle {
  display: none;
  background: var(--cherokee-ink);
  color: var(--cherokee-paper);
  border: none;
  padding: .45rem .75rem;
  cursor: pointer;
  font-family: inherit;
  font-size: .82rem;
}

.cherokee-intro {
  padding: 3rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--cherokee-line);
}

.cherokee-intro h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

.cherokee-lead {
  max-width: 58ch;
  margin-inline: auto;
  font-size: 1.1rem;
  color: var(--cherokee-muted);
}

.cherokee-spotlight { background: var(--cherokee-warm); }

.cherokee-spotlight-link {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  text-decoration: none;
  color: inherit;
  max-width: var(--cherokee-max);
  margin-inline: auto;
}

.cherokee-spotlight-link img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.cherokee-spotlight-copy {
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cherokee-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cherokee-coral);
  margin-bottom: .5rem;
}

.cherokee-spotlight-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: .65rem;
}

.cherokee-spotlight-copy p { color: var(--cherokee-muted); margin-bottom: 1rem; }

.cherokee-link-arrow {
  font-size: .88rem;
  font-weight: 600;
  color: var(--cherokee-coral);
}

.cherokee-collection { padding: 3.5rem 0; }
.cherokee-collection-alt { background: var(--cherokee-warm); }

.cherokee-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: .5rem;
}

.cherokee-section-head h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); }
.cherokee-section-head a { font-size: .86rem; font-weight: 500; text-decoration: none; }

.cherokee-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cherokee-product-grid-4 { grid-template-columns: repeat(4, 1fr); }

.cherokee-product {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--cherokee-line);
  transition: border-color .2s, box-shadow .2s;
}

.cherokee-product:hover {
  border-color: var(--cherokee-coral);
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.cherokee-product img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.cherokee-product h3 {
  font-family: var(--cherokee-sans);
  font-size: .92rem;
  font-weight: 500;
  padding: .85rem .85rem .25rem;
  line-height: 1.35;
}

.cherokee-price {
  display: block;
  padding: 0 .85rem .85rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--cherokee-coral-dark);
}

.cherokee-giftcard {
  background: var(--cherokee-ink);
  color: var(--cherokee-paper);
  padding: 3rem 0;
}

.cherokee-giftcard-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.cherokee-giftcard h2 { color: var(--cherokee-coral); margin-bottom: .65rem; }
.cherokee-giftcard p { opacity: .88; margin-bottom: 1.25rem; }
.cherokee-giftcard img { border: 1px solid rgba(255,255,255,.15); }

.cherokee-btn {
  display: inline-block;
  background: var(--cherokee-coral);
  color: #fff !important;
  padding: .65rem 1.35rem;
  font-weight: 600;
  font-size: .86rem;
  text-decoration: none;
  border: 2px solid var(--cherokee-coral);
  cursor: pointer;
  font-family: inherit;
}

.cherokee-btn:hover { background: transparent; color: var(--cherokee-coral) !important; }

.cherokee-btn-outline {
  background: transparent;
  border-color: var(--cherokee-coral);
  color: var(--cherokee-coral) !important;
  margin-top: 1rem;
}

.cherokee-btn-outline:hover { background: var(--cherokee-coral); color: #fff !important; }

.cherokee-hours {
  padding: 3rem 0;
  border-top: 1px solid var(--cherokee-line);
}

.cherokee-hours h2 { font-size: 1.5rem; margin-bottom: 1.25rem; text-align: center; }

.cherokee-hours-list {
  list-style: none;
  max-width: 420px;
  margin-inline: auto;
}

.cherokee-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  border-bottom: 1px solid var(--cherokee-line);
  font-size: .95rem;
}

.cherokee-hours-list li span:first-child { font-weight: 600; }

.cherokee-visit { padding: 3.5rem 0; background: var(--cherokee-warm); }

.cherokee-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.cherokee-visit h2 { margin-bottom: .75rem; }
.cherokee-visit p { color: var(--cherokee-muted); margin-bottom: 1rem; }

.cherokee-address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: .5rem;
}

.cherokee-address a { text-decoration: none; }

.cherokee-contact-strip {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--cherokee-line);
}

.cherokee-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.cherokee-contact-grid h2 { font-size: 1.4rem; margin-bottom: .5rem; }
.cherokee-contact-grid > div > p { color: var(--cherokee-muted); font-size: .95rem; }

.cherokee-form label {
  display: block;
  font-weight: 500;
  font-size: .82rem;
  margin-bottom: .25rem;
}

.cherokee-form input,
.cherokee-form textarea,
.cherokee-form select {
  width: 100%;
  padding: .6rem .75rem;
  border: 1px solid var(--cherokee-line);
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: .85rem;
}

.cherokee-form textarea { min-height: 90px; resize: vertical; }

.form-success {
  display: none;
  padding: 1rem;
  background: var(--cherokee-warm);
  border-left: 3px solid var(--cherokee-coral);
  margin-top: 1rem;
  grid-column: 2;
}
.form-success.show { display: block; }

/* Inner pages */
.cherokee-page-head {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--cherokee-line);
  margin-bottom: 2rem;
}

.cherokee-page-head h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.cherokee-page-head p { color: var(--cherokee-muted); margin-top: .4rem; }

.cherokee-main { padding-bottom: 3rem; }

.shop-cats { display: grid; gap: 3rem; }

.shop-cat h2 {
  font-size: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--cherokee-coral);
  margin-bottom: 1rem;
}

.item-list { list-style: none; display: grid; gap: .75rem; }
.item-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--cherokee-line);
  font-size: .95rem;
}
.item-list .price { color: var(--cherokee-muted); white-space: nowrap; }

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: start;
}

.about-layout img { border: 1px solid var(--cherokee-line); }

.pullquote {
  font-family: var(--cherokee-serif);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--cherokee-coral-dark);
  border-left: 3px solid var(--cherokee-coral);
  padding-left: 1.25rem;
  margin: 2rem 0;
}

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

.info-card {
  padding: 1.5rem;
  background: var(--cherokee-warm);
  border: 1px solid var(--cherokee-line);
}

.info-card h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--cherokee-coral-dark); }
.info-card p { font-size: .95rem; color: var(--cherokee-muted); }

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

.legal { padding: 2rem 0 4rem; max-width: 680px; }
.legal h2 { font-size: 1.1rem; margin: 2rem 0 .65rem; }
.legal p, .legal li { margin-bottom: .7rem; color: var(--cherokee-muted); font-size: .95rem; }
.legal ul { padding-left: 1.25rem; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: .75rem 0;
  font-size: .9rem;
}
.cookie-table th, .cookie-table td {
  padding: .4rem 0;
  border-bottom: 1px solid var(--cherokee-line);
  text-align: left;
  vertical-align: top;
}

/* Footer */
.cherokee-foot {
  border-top: 1px solid var(--cherokee-line);
  padding: 2.5rem 0 1.5rem;
  margin-top: 1rem;
}

.cherokee-foot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.cherokee-foot-brand { font-family: var(--cherokee-serif); font-size: 1.1rem; margin-bottom: .35rem; }
.cherokee-foot-meta { font-size: .88rem; color: var(--cherokee-muted); line-height: 1.7; }
.cherokee-foot-meta a { color: var(--cherokee-muted); text-decoration: none; }
.cherokee-foot-meta a:hover { color: var(--cherokee-coral); }

.cherokee-foot-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: .85rem; }
.cherokee-foot-nav a { color: var(--cherokee-muted); text-decoration: none; }
.cherokee-foot-nav a:hover { color: var(--cherokee-ink); }

.cherokee-foot-copy {
  font-size: .78rem;
  color: var(--cherokee-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--cherokee-line);
  text-align: center;
}

/* Cookie banner */
.cherokee-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--cherokee-ink);
  color: var(--cherokee-paper);
  padding: 1rem;
  z-index: 200;
  transform: translateY(100%);
  transition: transform .3s;
}
.cherokee-cookie.show { transform: translateY(0); }
.cherokee-cookie a { color: var(--cherokee-coral); }

.cherokee-cookie-inner {
  width: min(100% - 2rem, var(--cherokee-max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cherokee-cookie-inner p { font-size: .85rem; max-width: 55ch; opacity: .9; }

.cherokee-cookie-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cherokee-cookie-yes, .cherokee-cookie-no, .cherokee-cookie-set {
  padding: .45rem .9rem;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
}
.cherokee-cookie-yes { background: var(--cherokee-coral); color: #fff; }
.cherokee-cookie-no { background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff; }
.cherokee-cookie-set { background: transparent; color: var(--cherokee-coral); text-decoration: underline; }

.cherokee-cookie-panel {
  display: none;
  width: min(100% - 2rem, var(--cherokee-max));
  margin: .75rem auto 0;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .85rem;
}
.cherokee-cookie-panel.open { display: block; }
.cherokee-cookie-panel label { display: block; margin: .3rem 0; font-weight: 400; }

@media (max-width: 900px) {
  .cherokee-spotlight-link,
  .cherokee-product-grid,
  .cherokee-product-grid-4,
  .cherokee-giftcard-inner,
  .cherokee-visit-grid,
  .cherokee-contact-grid,
  .about-layout,
  .contact-wrap { grid-template-columns: 1fr; }
  .cherokee-product-grid { grid-template-columns: repeat(2, 1fr); }
  .form-success { grid-column: 1; }
}

@media (max-width: 600px) {
  .cherokee-product-grid,
  .cherokee-product-grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .menu-toggle { display: block; }
  .nav-main {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: .75rem;
    gap: .65rem;
  }
  .nav-main.open { display: flex; }
  .cherokee-header { position: relative; }
}
