/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage: rgba(181, 196, 176, 0.98);
  --sage-solid: #b5c4b0;
  --lavender: #ede8f5;
  --text: #1a1a1a;
  --text-light: #666;
  --white: #fff;
  --max-width: 1500px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  font-weight: 400;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== HEADER ===== */
.site-header {
  padding: 1.75rem var(--gutter);
  text-align: center;
  background: var(--white);
}

.site-title {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.site-title a { color: var(--text); }

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--text);
  transition: opacity 0.2s;
}

.site-nav a:hover { opacity: 0.6; }
.site-nav a.active { text-decoration: underline; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 58%;
  background-color: #c4b09a;
  background-image: url('images/hero.webp');
  background-size: cover;
  background-position: center;
}

.hero-card {
  position: relative;
  margin-left: 46%;
  flex: 1;
  background: var(--sage);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8% 10%;
  z-index: 2;
}

.hero-card h1 {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-card h2 {
  font-size: clamp(1.3rem, 2.5vw, 2.3rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.read-more-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--text);
  transition: opacity 0.2s;
}

.read-more-link:hover { opacity: 0.6; }

/* ===== BLOG PREVIEW SECTION (homepage) ===== */
.blog-section {
  background: var(--lavender);
  padding: 5rem var(--gutter);
}

.blog-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-heading {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card a { display: flex; flex-direction: column; height: 100%; color: var(--text); }
.blog-card a:hover .blog-card-title { text-decoration: underline; }

.blog-card-thumb {
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem 1.25rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.thumb-las-vegas    { background: linear-gradient(135deg, #c49040 0%, #e8b860 100%); }
.thumb-dc           { background: linear-gradient(135deg, #5a7a8a 0%, #7a9aaa 100%); }
.thumb-nyc          { background: linear-gradient(135deg, #5a5f70 0%, #7a8090 100%); }
.thumb-la           { background: linear-gradient(135deg, #b06050 0%, #d08070 100%); }
.thumb-dfw          { background: linear-gradient(135deg, #906040 0%, #b08060 100%); }

.blog-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.read-all-wrap { text-align: center; }

.btn-read-all {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--text);
  transition: opacity 0.2s;
}

.btn-read-all:hover { opacity: 0.6; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--sage-solid);
  padding: 3.5rem var(--gutter);
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity 0.2s;
}

.footer-nav a:hover { opacity: 0.65; }

.footer-tagline {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.55);
}

.footer-bottom a { text-decoration: underline; color: inherit; }

/* ===== STORES BY STATE PAGE ===== */
.stores-by-state {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem var(--gutter);
  text-align: center;
}

.stores-by-state h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 3rem;
}

.states-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.state-pill {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 400;
  transition: opacity 0.2s;
}

.state-pill:hover { opacity: 0.75; color: var(--white); }

/* ===== PRIVACY PAGE ===== */
.privacy-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem var(--gutter);
}

.privacy-page h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.privacy-page p {
  margin-bottom: 1.5rem;
  line-height: 1.85;
  color: #333;
}

/* ===== BLOG INDEX PAGE ===== */
.blog-page {
  background: var(--lavender);
  min-height: 80vh;
  padding: 5rem var(--gutter);
}

.blog-page-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-page h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 3rem;
}

/* ===== BLOG POST PAGE ===== */
.blog-post-layout {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem var(--gutter) 6rem;
}

.blog-post-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-post-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.blog-post-tags {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.blog-post-tags a { text-decoration: underline; }

.blog-post-featured-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  margin-bottom: 2.5rem;
}

.blog-post-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 3.5rem;
  color: #333;
}

.store-entry {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.store-entry:last-of-type { border-bottom: none; }

.store-num {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.store-entry h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.store-location {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.store-entry p {
  line-height: 1.8;
  color: #333;
  margin-bottom: 0.75rem;
}

.store-thumb {
  height: 260px;
  margin-bottom: 0.5rem;
  background: var(--sage-solid);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem 1.25rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.store-thumb-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.5rem;
}

.store-entry h3 a {
  color: inherit;
  text-decoration: none;
}

.store-entry h3 a:hover {
  text-decoration: underline;
}

.photo-credit {
  font-size: 0.73rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.blog-cta {
  background: var(--lavender);
  padding: 2rem 2.5rem;
  border-radius: 8px;
  margin-top: 3rem;
  line-height: 1.8;
  color: #333;
  font-style: italic;
}

/* ===== STATE PAGE ===== */
.state-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem var(--gutter);
}

.state-page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 3rem;
}

.state-city-section { margin-bottom: 3rem; }

.state-city-section h2 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.city-label {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  font-weight: 700;
}

.store-card {
  background: var(--lavender);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr 160px;
  column-gap: 1.25rem;
  align-items: start;
}

.store-card h4 {
  grid-column: 1;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.store-card .store-loc {
  grid-column: 1;
  font-size: 0.83rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.store-card .store-desc {
  grid-column: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

.state-placeholder {
  background: var(--lavender);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--text-light);
  margin-top: 2rem;
}

.state-placeholder p { font-size: 1rem; line-height: 1.7; }

/* ===== HOMEPAGE + BLOG PAGE - 5-card symmetrical 3+2 layout ===== */
.blog-page-inner .blog-grid,
.blog-section-inner .blog-grid {
  grid-template-columns: repeat(6, 1fr);
}
.blog-page-inner .blog-card:nth-child(1),
.blog-section-inner .blog-card:nth-child(1) { grid-column: 1 / 3; }
.blog-page-inner .blog-card:nth-child(2),
.blog-section-inner .blog-card:nth-child(2) { grid-column: 3 / 5; }
.blog-page-inner .blog-card:nth-child(3),
.blog-section-inner .blog-card:nth-child(3) { grid-column: 5 / 7; }
.blog-page-inner .blog-card:nth-child(4),
.blog-section-inner .blog-card:nth-child(4) { grid-column: 2 / 4; }
.blog-page-inner .blog-card:nth-child(5),
.blog-section-inner .blog-card:nth-child(5) { grid-column: 4 / 6; }

/* ===== INDIVIDUAL STORE PAGE ===== */
.store-detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr 400px;
  column-gap: 3rem;
  align-items: start;
}

.store-detail-left {
  min-width: 0;
}

.store-detail-right {
  position: sticky;
  top: 2rem;
}

.store-detail-page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.store-detail-location {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.store-detail-info {
  background: var(--lavender);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.store-detail-info p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.store-detail-info a {
  text-decoration: underline;
}

.store-detail-about {
  font-size: 1rem;
  line-height: 1.85;
  color: #333;
  margin-bottom: 2.5rem;
}

.store-back-link {
  display: inline-block;
  font-size: 0.85rem;
  text-decoration: underline;
  color: var(--text-light);
  transition: opacity 0.2s;
}

.store-back-link:hover { opacity: 0.6; }

.store-card a.store-card-link {
  grid-column: 1;
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: underline;
  color: var(--text-light);
}

/* ===== STORE IMAGES ===== */
.store-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 56px;
  max-width: 220px;
  margin-bottom: 0.75rem;
}

.store-detail-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 1.75rem;
  display: block;
}

.store-card-img {
  grid-column: 2;
  grid-row: 1 / span 5;
  width: 160px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0;
  display: block;
  align-self: start;
}

/* ===== STORE MAP ===== */
.store-map { margin-bottom: 2.5rem; border-radius: 16px; overflow: hidden; }
.store-map iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ===== CTP PROMO BOX ===== */
.ctp-promo {
  background: #C0D3B3;
  border-radius: 16px;
  padding: 2.25rem 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.ctp-promo h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--text);
}

.ctp-promo p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.ctp-promo-btn {
  display: block;
  width: 100%;
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 300px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.ctp-promo-btn:hover { opacity: 0.75; color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-image { width: 70%; }
  .hero-card { margin-left: 56%; padding: 6% 8%; }
}

@media (max-width: 860px) {
  .store-detail-page {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .store-detail-right {
    position: static;
  }
}

@media (max-width: 767px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-image { position: static; width: 100%; height: 280px; }
  .hero-card { margin-left: 0; padding: 3.5rem 2rem; min-height: auto; }
  .site-nav { gap: 1rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-page-inner .blog-grid,
  .blog-section-inner .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-page-inner .blog-card:nth-child(n),
  .blog-section-inner .blog-card:nth-child(n) { grid-column: auto; }
  .footer-nav { flex-direction: column; align-items: center; gap: 1rem; }
  .blog-post-layout { padding: 3rem 1.5rem 4rem; }
  .store-card {
    grid-template-columns: 1fr;
  }
  .store-card-img {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    margin-bottom: 0.75rem;
  }
  .store-card h4,
  .store-card .store-loc,
  .store-card .store-desc,
  .store-card a.store-card-link { grid-column: 1; }
}

@media (max-width: 480px) {
  .blog-grid { grid-template-columns: 1fr; }
}

