/* =====================================================
   DOGAMIYA.COM — MASTER STYLESHEET v2.0
   Target Keywords: dog calorie calculator, dog nutrition
   © 2025 Dogamiya.com
===================================================== */

/* ── GOOGLE FONTS (loaded in HTML) ──────────────── */
/* Fraunces (display) + DM Sans (body) */

/* ── CSS VARIABLES ──────────────────────────────── */
:root {
  --amber: #E8793A;
  --amber-light: #F5A56E;
  --amber-dark: #C05E22;
  --amber-pale: rgba(232,121,58,0.10);
  --cream: #FDF6EE;
  --cream-dark: #F4EAD8;
  --cream-mid: #EFE0C8;
  --bark: #2C1A0E;
  --bark-mid: #5C3D23;
  --bark-light: #8B6349;
  --sage: #6B8F6E;
  --sage-light: #A8C5AA;
  --sky: #5B8DB8;
  --sky-light: #A8C8E8;
  --white: #FFFFFF;
  --red: #D94040;
  --shadow-xs: 0 1px 4px rgba(44,26,14,.06);
  --shadow-sm: 0 2px 8px rgba(44,26,14,.08);
  --shadow-md: 0 6px 24px rgba(44,26,14,.12);
  --shadow-lg: 0 16px 48px rgba(44,26,14,.18);
  --shadow-xl: 0 24px 64px rgba(44,26,14,.22);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: .45s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
  --max-w-sm: 860px;
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--cream); color: var(--bark); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); }

/* ── UTILITY ────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── SECTION LABELS ─────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--amber-pale); color: var(--amber-dark);
  padding: .35rem .9rem; border-radius: 50px;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: .85rem;
}
.section-tag.light {
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--bark);
  letter-spacing: -.03em; line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--amber); }
.section-title.light { color: var(--white); }
.section-lead {
  font-size: 1.05rem; color: var(--bark-mid);
  line-height: 1.78; max-width: 680px; margin-top: .75rem;
}
.section-lead.light { color: rgba(255,255,255,.78); }

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; border-radius: 50px; font-weight: 700;
  font-size: .95rem; transition: all var(--transition); cursor: pointer;
  white-space: nowrap; border: none; font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--white); padding: .9rem 2rem;
  box-shadow: 0 4px 16px rgba(232,121,58,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,121,58,.45); }
.btn-outline {
  border: 2px solid var(--cream-dark); color: var(--bark-mid);
  padding: .85rem 1.75rem; background: none;
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-white {
  background: var(--white); color: var(--amber-dark);
  padding: .9rem 2rem;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-bark {
  background: var(--bark); color: var(--white);
  padding: .9rem 2rem;
}
.btn-bark:hover { background: var(--bark-mid); transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.25rem; font-size: .86rem; }
.btn-lg { padding: 1.05rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ── CARDS ──────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ── BADGE ──────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.92); padding: .38rem .9rem;
  border-radius: 50px; font-size: .8rem; font-weight: 500;
}
.badge-wrap { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: center; }

/* ── FORMS ──────────────────────────────────────── */
.field { margin-bottom: 1.25rem; }
.field-label { display: block; font-weight: 600; font-size: .9rem; color: var(--bark); margin-bottom: .45rem; }
.field-hint { font-size: .78rem; color: var(--bark-light); margin-top: .35rem; line-height: 1.45; }
.input, .select, .textarea {
  width: 100%; padding: .82rem 1.1rem;
  border: 2px solid var(--cream-dark); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .92rem;
  color: var(--bark); background: var(--cream);
  outline: none; transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232,121,58,.15);
  background: var(--white);
}
.textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾'; position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%); color: var(--bark-light);
  pointer-events: none; font-size: .85rem;
}

/* ── INFO / WARNING BOXES ───────────────────────── */
.info-box {
  background: rgba(232,121,58,.07); border: 2px solid rgba(232,121,58,.2);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.info-box-title { font-weight: 700; color: var(--amber-dark); margin-bottom: .4rem; font-size: .9rem; }
.info-box p { font-size: .87rem; margin: 0; color: var(--bark-mid); line-height: 1.7; }
.warning-box {
  background: rgba(217,64,64,.06); border: 2px solid rgba(217,64,64,.2);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.warning-box-title { font-weight: 700; color: var(--red); margin-bottom: .4rem; font-size: .9rem; }
.warning-box p { font-size: .87rem; margin: 0; color: var(--bark-mid); line-height: 1.7; }
.success-box {
  background: rgba(107,143,110,.08); border: 2px solid rgba(107,143,110,.25);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}

/* ── ACCORDION / FAQ ────────────────────────────── */
.accordion-item {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: .75rem;
}
.accordion-trigger {
  width: 100%; padding: 1.15rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left; font-weight: 600; font-size: .93rem;
  color: var(--bark); cursor: pointer; background: none; border: none;
  gap: 1rem; transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--cream); }
.accordion-arrow {
  flex-shrink: 0; width: 26px; height: 26px;
  border-radius: 50%; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; color: var(--bark-light);
  transition: transform var(--transition), background var(--transition);
}
.accordion-item.open .accordion-arrow { transform: rotate(180deg); background: var(--amber); color: white; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.accordion-item.open .accordion-body { max-height: 800px; }
.accordion-body-inner { padding: 0 1.5rem 1.35rem; font-size: .885rem; color: var(--bark-mid); line-height: 1.78; }

/* ── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  border-radius: var(--radius-xl); padding: 4rem 2rem;
  text-align: center; color: var(--white);
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: .85rem; }
.cta-banner p { opacity: .88; max-width: 520px; margin: 0 auto 2rem; font-size: .97rem; }

/* ── BREADCRUMB ─────────────────────────────────── */
.breadcrumb {
  padding: .8rem 0; display: flex; align-items: center;
  gap: .45rem; font-size: .8rem; color: var(--bark-light); flex-wrap: wrap;
}
.breadcrumb a { color: var(--bark-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb-sep { opacity: .45; }

/* ── PAGE HERO ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--bark) 0%, var(--bark-mid) 52%, #7A4A2A 100%);
  color: var(--white); padding: 5.5rem 1.5rem 5rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='3' fill='%23fff' fill-opacity='.025'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(44,26,14,.15));
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.12; margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--amber-light); }
.page-hero p { font-size: clamp(.95rem, 2vw, 1.1rem); color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto 1.75rem; line-height: 1.7; }
.page-hero-sm { padding: 3.5rem 1.5rem 3rem; }
.page-hero-sm h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }

/* ── NAVIGATION ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,246,238,.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44,26,14,.07);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 1.5rem; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: .5rem; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: .25rem;
  padding: .5rem .85rem; font-size: .875rem; font-weight: 500;
  color: var(--bark-mid); border-radius: 50px;
  transition: all var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background: var(--cream-dark); color: var(--bark); }
.nav-links > li > a .arr { font-size: .58rem; opacity: .55; transition: transform var(--transition); }
.nav-links > li:hover > a .arr { transform: rotate(180deg); }
/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 210px; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: .5rem; opacity: 0; pointer-events: none;
  transform: translateY(8px); transition: all var(--transition); z-index: 200;
  border: 1px solid rgba(44,26,14,.06);
}
.nav-links > li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem .9rem; font-size: .85rem;
  color: var(--bark-mid); border-radius: var(--radius-sm);
  transition: background var(--transition); font-weight: 400;
}
.dropdown a:hover { background: var(--cream); color: var(--bark); }
.dropdown-divider { border: none; border-top: 1px solid var(--cream-dark); margin: .3rem .5rem; }
.nav-cta {
  background: var(--amber); color: var(--white);
  padding: .58rem 1.3rem; border-radius: 50px;
  font-size: .875rem; font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(232,121,58,.32);
}
.nav-cta:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,121,58,.42); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; border-radius: 8px; transition: background var(--transition); }
.hamburger:hover { background: var(--cream-dark); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--bark); border-radius: 2px; transition: var(--transition); }

/* ── MOBILE NAV ─────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(44,26,14,.97);
  z-index: 500; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.2rem; padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-logo { margin-bottom: .5rem; }
.mobile-nav-logo img { height: 38px; filter: brightness(0) invert(1); }
.mobile-nav a {
  color: rgba(255,255,255,.88); font-size: 1.25rem;
  font-weight: 600; font-family: var(--font-display);
  padding: .5rem 1.5rem; border-radius: 50px;
  transition: all var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.mobile-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  color: rgba(255,255,255,.7); font-size: 1.5rem;
  background: none; border: none; cursor: pointer; line-height: 1;
  transition: color var(--transition);
}
.mobile-close:hover { color: var(--white); }

/* ── FOOTER ─────────────────────────────────────── */
.site-footer { background: var(--bark); color: rgba(255,255,255,.65); padding: 4.5rem 1.5rem 0; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo img { height: 38px; filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(340deg) brightness(.9); }
.footer-logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
.footer-logo-text span { color: var(--amber-light); }
.footer-brand p { font-size: .82rem; line-height: 1.7; margin-top: .85rem; color: rgba(255,255,255,.48); }
.footer-socials { display: flex; gap: .55rem; margin-top: 1.35rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; transition: all var(--transition);
  color: rgba(255,255,255,.65);
}
.social-btn:hover { background: var(--amber); border-color: var(--amber); color: white; transform: translateY(-2px); }
.footer-col h4 {
  color: var(--white); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.1rem;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,.48); transition: color var(--transition); }
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.5rem 0 2rem;
  display: flex; justify-content: space-between;
  align-items: center; font-size: .75rem;
  flex-wrap: wrap; gap: .5rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.32); margin: 0 .4rem; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--amber-light); }

/* ── SCROLL TOP ─────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 46px; height: 46px; background: var(--amber);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0; pointer-events: none; z-index: 50;
  border: none; cursor: pointer;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); background: var(--amber-dark); box-shadow: var(--shadow-lg); }

/* ── ANIMATIONS ─────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

/* ── ARTICLE BODY ───────────────────────────────── */
.article-body h2 { font-size: 1.65rem; font-weight: 700; color: var(--bark); margin: 2.75rem 0 .85rem; letter-spacing: -.025em; border-bottom: 2px solid var(--cream-dark); padding-bottom: .5rem; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--bark-mid); margin: 2rem 0 .6rem; }
.article-body h4 { font-size: 1rem; font-weight: 700; color: var(--bark); margin: 1.5rem 0 .4rem; }
.article-body p { font-size: .97rem; color: var(--bark-mid); line-height: 1.82; margin-bottom: 1rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.article-body li { font-size: .94rem; color: var(--bark-mid); line-height: 1.7; margin-bottom: .4rem; }
.article-body ul li { list-style-type: disc; }
.article-body ol li { list-style-type: decimal; }
.article-body strong { color: var(--bark); }
.article-body a { color: var(--amber-dark); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--amber); }
.article-body hr { border: none; border-top: 2px solid var(--cream-dark); margin: 2.5rem 0; }
.article-body blockquote {
  border-left: 4px solid var(--amber); padding: 1rem 1.5rem;
  background: var(--amber-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0; font-style: italic; color: var(--bark-mid);
}

/* ── PAGE LAYOUT (sidebar) ──────────────────────── */
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; padding: 2.5rem 0 5rem; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 1.35rem; position: sticky; top: 88px; }
.sidebar-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.sidebar-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--bark); margin-bottom: 1rem; }
.toc-list { display: flex; flex-direction: column; gap: .3rem; }
.toc-link { display: flex; align-items: center; gap: .5rem; font-size: .83rem; color: var(--bark-mid); padding: .42rem .6rem; border-radius: var(--radius-sm); transition: all var(--transition); }
.toc-link::before { content: '#'; color: var(--amber-light); font-weight: 700; font-size: .72rem; }
.toc-link:hover { background: var(--cream); color: var(--amber-dark); }

/* ── BLOG CARDS ─────────────────────────────────── */
.blog-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-thumb { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; flex-shrink: 0; }
.blog-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-cat { display: inline-block; background: var(--amber-pale); color: var(--amber-dark); padding: .22rem .7rem; border-radius: 50px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .65rem; }
.blog-body h3 { font-size: 1rem; font-weight: 700; color: var(--bark); line-height: 1.38; margin-bottom: .45rem; }
.blog-body p { font-size: .83rem; color: var(--bark-mid); line-height: 1.58; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: .5rem; margin-top: .85rem; font-size: .76rem; color: var(--bark-light); padding-top: .75rem; border-top: 1px solid var(--cream-dark); }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--bark-light); flex-shrink: 0; }

/* ── TABLE ──────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); margin: 1.5rem 0; }
.table { width: 100%; border-collapse: collapse; background: var(--white); }
.table th { background: var(--bark); color: var(--white); padding: .9rem 1.1rem; font-size: .82rem; font-weight: 600; text-align: left; letter-spacing: .04em; text-transform: uppercase; font-family: var(--font-body); }
.table td { padding: .88rem 1.1rem; font-size: .88rem; color: var(--bark-mid); border-bottom: 1px solid var(--cream-dark); }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--cream); }
.chip { display: inline-block; background: var(--amber-pale); color: var(--amber-dark); padding: .22rem .65rem; border-radius: 50px; font-weight: 700; font-size: .82rem; }

/* ── NEWSLETTER STRIP ───────────────────────────── */
.newsletter-strip { background: var(--white); border-radius: var(--radius-xl); padding: 3.5rem 2rem; box-shadow: var(--shadow-md); max-width: 720px; margin: 0 auto; text-align: center; }
.newsletter-strip h2 { font-size: 1.85rem; font-weight: 700; color: var(--bark); margin-bottom: .75rem; }
.newsletter-strip p { color: var(--bark-mid); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: .75rem; max-width: 470px; margin: 0 auto; }
.newsletter-form .input { flex: 1; border-radius: 50px; }
.newsletter-form .btn { flex-shrink: 0; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 3.75rem 1.25rem 3.25rem; }
  .section { padding: 3.5rem 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 2.5rem 1.25rem; }
}
@media print {
  .site-header, .site-footer, .scroll-top, .mobile-nav { display: none !important; }
  body { background: white; }
}
