/* Tash Chicken marketing — matches live tashchicken.com theme */
:root {
  --green-900: #0f2e1a;
  --green-800: #1a472a;
  --green-700: #245c38;
  --green-600: #2f7347;
  --gold-500: #e8a317;
  --gold-400: #f0b429;
  --gold-100: #f5e6c8;
  --cream-50: #fdfbf7;
  --cream-100: #faf7f2;
  --cream-200: #efe8dc;
  --ink: #1c1917;
  --ink-muted: #57534e;
  --ink-soft: #78716c;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(15, 46, 26, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 46, 26, 0.12);
  --shadow-lg: 0 24px 64px rgba(15, 46, 26, 0.16);
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a {
  color: var(--green-800);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--green-600); }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2.5rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--ink-muted); }
.container { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 0.75rem 1rem; background: var(--green-800); color: var(--white);
  text-decoration: none; border-radius: 0 0 8px;
}
.skip-link:focus { left: 0; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(253, 251, 247, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 71, 42, 0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--ink); }
.brand-logo {
  display: block; height: 52px; width: auto; border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.hero-logo {
  width: min(100%, 360px); height: auto; margin-inline: auto;
  border-radius: 50%; box-shadow: var(--shadow-lg);
}
.footer-logo { height: 72px; width: auto; border-radius: 50%; margin-bottom: 0.75rem; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a {
  text-decoration: none; font-size: 0.95rem; font-weight: 500;
  color: var(--ink-muted); transition: color 0.2s;
}
.site-nav a:hover { color: var(--green-800); }
.nav-cta {
  padding: 0.55rem 1rem; border-radius: 999px;
  background: var(--green-800); color: var(--white) !important;
}
.nav-cta:hover { background: var(--green-700); color: var(--white) !important; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: none; border-radius: 10px;
  background: var(--cream-200); cursor: pointer; position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  display: block; width: 20px; height: 2px; background: var(--green-800);
  border-radius: 2px; position: absolute; left: 50%; transform: translateX(-50%);
  transition: transform 0.25s, opacity 0.25s, top 0.25s;
}
.nav-toggle-bar { top: 50%; margin-top: -1px; }
.nav-toggle-bar::before { content: ""; top: -7px; }
.nav-toggle-bar::after { content: ""; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { top: 0; transform: translate(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { top: 0; transform: translate(-50%) rotate(-45deg); }
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(201, 162, 39, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(26, 71, 42, 0.12), transparent 50%),
    linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
  z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
}
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-700);
  margin-bottom: 1rem; padding: 0.35rem 0.75rem;
  background: rgba(26, 71, 42, 0.08); border-radius: 999px;
}
.hero-highlight { color: var(--green-800); font-style: italic; }
.hero-lead { font-size: 1.125rem; max-width: 34ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 600;
  font-size: 0.95rem; text-decoration: none; border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green-800); color: var(--white); box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-700); color: var(--white); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent; color: var(--green-800); border-color: rgba(26, 71, 42, 0.25);
}
.btn-ghost:hover { background: rgba(26, 71, 42, 0.06); color: var(--green-800); }
.btn-light { background: var(--white); color: var(--green-800); }
.btn-light:hover { color: var(--green-800); box-shadow: var(--shadow-md); }
.trust-strip { background: var(--green-800); color: var(--gold-100); padding: 1.25rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trust-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.9rem; font-weight: 500;
}
.trust-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.12); font-size: 0.75rem; flex-shrink: 0;
}
.section { padding: clamp(4rem, 8vw, 6rem) 0; }
.section-alt { background: var(--cream-100); }
.section-label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-500); margin-bottom: 0.75rem;
}
.section-label-center, .section-title-center, .section-intro-center { text-align: center; }
.section-title-center { margin-bottom: 0.75rem; }
.section-intro-center { max-width: 48ch; margin: 0 auto 2.5rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-panel {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  border-left: 4px solid var(--gold-500); box-shadow: var(--shadow-md);
}
.about-panel blockquote {
  margin: 0 0 1rem; font-family: var(--font-display);
  font-size: 1.35rem; font-style: italic; color: var(--green-900); line-height: 1.4;
}
.about-caption { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(26, 71, 42, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--gold-500); margin-bottom: 1rem; line-height: 1;
}
.card h3 { color: var(--green-900); }
.card p { margin: 0; font-size: 0.95rem; }
.check-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.check-list li {
  position: relative; padding-left: 1.75rem; margin-bottom: 0.75rem; color: var(--ink-muted);
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 700;
}
.product-visual { display: flex; align-items: center; justify-content: center; }
.product-figure { margin: 0; text-align: center; max-width: 340px; }
.product-logo {
  width: min(100%, 300px); height: auto; border-radius: 50%;
  box-shadow: var(--shadow-lg); border: 6px solid var(--white); margin: 0 auto;
}
.product-caption {
  margin-top: 1.25rem; font-size: 0.95rem; line-height: 1.5;
  color: var(--ink-muted); max-width: 28ch; margin-inline: auto;
}
.fine-print { font-size: 0.85rem; color: var(--ink-soft); }
.outlet-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.outlet-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid rgba(26, 71, 42, 0.08); box-shadow: var(--shadow-sm);
}
.outlet-card-featured {
  border-color: rgba(232, 163, 23, 0.35);
  background: linear-gradient(145deg, var(--white) 0%, #fffdf8 100%);
}
.outlet-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 6px;
  background: rgba(232, 163, 23, 0.15); color: #9a6700; margin-bottom: 1rem;
}
.outlet-tag-muted { background: var(--cream-200); color: var(--ink-soft); }
.outlet-card h3 { color: var(--green-900); }
.outlet-meta { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.cta-band {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white); padding: 3.5rem 0;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255, 255, 255, 0.82); margin: 0; max-width: 40ch; }
.cta-band-partner { background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(26, 71, 42, 0.06);
}
.contact-row { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.25rem; }
.contact-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft);
}
.contact-row a { font-weight: 600; font-size: 1.05rem; display: block; margin-bottom: 0.35rem; }
.site-footer { background: var(--green-900); color: rgba(255, 255, 255, 0.75); padding: 3rem 0 2rem; }
.footer-inner { display: grid; gap: 1.5rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.55); margin: 0.5rem 0 0; font-size: 0.9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a { color: rgba(255, 255, 255, 0.75); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold-400); }
.footer-copy {
  margin: 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.45);
  padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Outlet location page */
.outlet-page-hero { padding-top: 2.5rem; padding-bottom: 1.5rem; }
.outlet-page-hero h1 { color: var(--green-900); }
.outlet-page-lead { font-size: 1.125rem; max-width: 52ch; }
.outlet-nap-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: start;
}
.nap-list { margin: 1.5rem 0 0; padding: 0; }
.nap-list > div {
  display: grid; gap: 0.2rem; margin-bottom: 1.15rem;
  padding-bottom: 1.15rem; border-bottom: 1px solid var(--cream-200);
}
.nap-list > div:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.nap-list dt {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft);
}
.nap-list dd { margin: 0; color: var(--ink); font-weight: 500; }
.nap-list dd a { font-weight: 600; }
.outlet-callout {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid rgba(232, 163, 23, 0.35);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(145deg, var(--white) 0%, #fffdf8 100%);
}
.outlet-callout h3 { color: var(--green-900); margin-top: 0.5rem; }
.outlet-map-wrap {
  margin-top: 1.5rem; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(26, 71, 42, 0.08);
  aspect-ratio: 16 / 10; background: var(--cream-200);
}
.outlet-map { display: block; width: 100%; height: 100%; border: 0; min-height: 280px; }
.outlet-card-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.outlet-card-actions .btn { font-size: 0.9rem; padding: 0.55rem 1rem; }
.partner-cross-links { margin-top: 1.25rem; }
.nav-current { color: var(--green-800) !important; font-weight: 600; }

@media (max-width: 900px) {
  .hero-grid, .split, .cards, .outlet-cards, .contact-grid, .outlet-nap-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch;
    padding: 1rem 1.25rem 1.5rem; background: var(--cream-50);
    border-bottom: 1px solid rgba(26, 71, 42, 0.1);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform 0.3s, opacity 0.3s; gap: 0;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--cream-200); }
  .nav-cta { margin-top: 0.75rem; text-align: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
