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

:root {
  --cream: #faf7f2;
  --cream-dark: #f0ebe1;
  --cream-border: #e2d9cc;
  --brown-light: #c4a882;
  --brown: #8b6343;
  --brown-dark: #5c3d1e;
  --green: #4a7c59;
  --green-light: #eef4f0;
  --green-border: #b8d4c2;
  --amber: #d4820a;
  --amber-light: #fef3e2;
  --amber-border: #f5c97a;
  --blue-light: #edf4fb;
  --blue-border: #a8ccec;
  --blue: #2a6fa8;
  --text: #2c1e0f;
  --text-mid: #6b5240;
  --text-muted: #9c836a;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(44,30,15,0.08);
  --shadow-md: 0 4px 24px rgba(44,30,15,0.13);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); min-height: 100vh; line-height: 1.6; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-border);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: 'Lora', serif; font-size: 21px; font-weight: 600;
  color: var(--brown-dark); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-links { display: flex; gap: 4px; }
.nav-link {
  font-size: 14px; font-weight: 400; color: var(--text-mid);
  text-decoration: none; padding: 6px 12px; border-radius: 8px;
  transition: all 0.15s;
}
.nav-link:hover { background: var(--cream-dark); color: var(--text); }
.nav-link.active { font-weight: 500; color: var(--brown-dark); }

/* ── HERO ── */
.hero {
  text-align: center; padding: 60px 24px 48px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, #eedfc8 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brown); background: var(--cream-dark);
  border: 1px solid var(--cream-border); border-radius: 100px;
  padding: 4px 14px; margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 5.5vw, 50px);
  font-weight: 600; line-height: 1.18;
  color: var(--brown-dark); margin-bottom: 14px;
  max-width: 620px; margin-inline: auto;
}
.hero h1 em { font-style: italic; color: var(--brown); }
.hero-sub {
  font-size: 17px; color: var(--text-mid);
  max-width: 460px; margin: 0 auto 28px;
  font-weight: 300; line-height: 1.65;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.badge {
  font-size: 13px; padding: 5px 14px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--cream-border); color: var(--text-mid);
}
.scroll-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--brown);
  border: none; background: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* ── LAYOUT ── */
main { max-width: 720px; margin: 0 auto; padding: 0 16px 80px; }

/* ── CARD ── */
.card {
  background: var(--white); border: 1px solid var(--cream-border);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.card-header {
  background: var(--cream-dark); border-bottom: 1px solid var(--cream-border);
  padding: 18px 24px; display: flex; align-items: center; gap: 12px;
}
.card-header-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--cream-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.card-header-text h2 { font-family: 'Lora', serif; font-size: 18px; font-weight: 600; color: var(--brown-dark); }
.card-header-text p { font-size: 13px; color: var(--text-muted); }
.card-body { padding: 24px; }

/* ── STEP INDICATOR ── */
.steps { display: flex; align-items: flex-start; margin-bottom: 28px; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; position: relative; }
.step-item:not(:last-child)::after {
  content: ''; position: absolute; top: 14px; left: 50%; width: 100%;
  height: 2px; background: var(--cream-border); transition: background 0.3s;
}
.step-item.done:not(:last-child)::after { background: var(--brown-light); }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--cream-border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  position: relative; z-index: 1; transition: all 0.3s;
}
.step-item.active .step-dot { border-color: var(--brown); background: var(--brown); color: var(--white); }
.step-item.done .step-dot { border-color: var(--green); background: var(--green); color: var(--white); font-size: 14px; }
.step-label {
  font-size: 10px; font-weight: 500; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}
.step-item.active .step-label { color: var(--brown); }
.step-item.done .step-label { color: var(--green); }

/* ── SECTION TITLES ── */
.section-title { font-family: 'Lora', serif; font-size: 20px; font-weight: 600; color: var(--brown-dark); margin-bottom: 4px; }
.section-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }

/* ── SPECIES GRID ── */
.species-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
@media(max-width:520px){ .species-grid { grid-template-columns: repeat(2, 1fr); } }
.species-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 8px; background: var(--cream);
  border: 2px solid var(--cream-border); border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s; text-align: center;
}
.species-btn:hover { border-color: var(--brown-light); background: var(--cream-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.species-btn.selected { border-color: var(--brown); background: #fdf8f3; box-shadow: 0 0 0 3px rgba(139,99,67,0.12); }
.species-emoji { font-size: 30px; }
.species-name { font-size: 12px; font-weight: 500; color: var(--text); }

/* ── INPUTS ── */
.input-group { margin-bottom: 16px; }
.input-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-mid); margin-bottom: 6px; }
.input-hint { font-size: 12px; color: var(--text-muted); margin-top: 5px; font-style: italic; }
.input-row { display: flex; gap: 8px; }
input[type=number], select {
  font-family: 'DM Sans', sans-serif;
  width: 100%; padding: 11px 14px; font-size: 16px;
  color: var(--text); background: var(--white);
  border: 1.5px solid var(--cream-border); border-radius: var(--radius-sm);
  outline: none; appearance: none; transition: border-color 0.2s;
}
input[type=number]:focus, select:focus {
  border-color: var(--brown); box-shadow: 0 0 0 3px rgba(139,99,67,0.1);
}
.unit-toggle {
  display: flex; border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0;
}
.unit-btn {
  padding: 11px 12px; font-size: 13px; font-weight: 500;
  background: var(--white); border: none; cursor: pointer;
  color: var(--text-muted); transition: all 0.15s;
  font-family: 'DM Sans', sans-serif; white-space: nowrap;
}
.unit-btn.active { background: var(--brown); color: var(--white); }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239c836a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.info-callout {
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 13px; color: #1e4d78; line-height: 1.6; margin-bottom: 16px;
}
.info-callout strong { font-weight: 500; }

/* ── LIFESTYLE ── */
.lifestyle-list { display: flex; flex-direction: column; gap: 8px; }
.lifestyle-btn {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 12px 16px; border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-sm); background: var(--white);
  cursor: pointer; transition: all 0.15s; text-align: left; width: 100%;
  font-family: 'DM Sans', sans-serif;
}
.lifestyle-btn:hover { border-color: var(--brown-light); background: var(--cream); }
.lifestyle-btn.selected { border-color: var(--brown); background: #fdf8f3; box-shadow: 0 0 0 3px rgba(139,99,67,0.1); }
.lifestyle-top { display: flex; align-items: center; width: 100%; gap: 8px; }
.lifestyle-label { font-size: 14px; color: var(--text); font-weight: 500; flex: 1; text-align: left; }
.lifestyle-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; padding-left: 30px; }
.lifestyle-badge {
  font-size: 11px; background: var(--cream-dark); border: 1px solid var(--cream-border);
  color: var(--text-muted); padding: 2px 8px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.lifestyle-btn.selected .lifestyle-badge { background: var(--brown); color: var(--white); border-color: var(--brown); }

/* ── FOOD MODE ── */
.food-mode-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.food-mode-btn {
  padding: 8px 16px; border-radius: 100px;
  border: 1.5px solid var(--cream-border); background: var(--white);
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.15s;
}
.food-mode-btn.active { background: var(--brown-dark); color: var(--white); border-color: var(--brown-dark); }

/* ── FOOD PICKER ── */
.food-picker-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media(max-width:480px){ .food-picker-grid { grid-template-columns: 1fr; } }
.food-card {
  display: flex; flex-direction: column; gap: 2px; padding: 12px 14px;
  border: 1.5px solid var(--cream-border); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer; transition: all 0.15s;
  text-align: left; width: 100%; font-family: 'DM Sans', sans-serif;
}
.food-card:hover { border-color: var(--brown-light); background: var(--cream); }
.food-card.selected { border-color: var(--brown); background: #fdf8f3; box-shadow: 0 0 0 3px rgba(139,99,67,0.1); }
.food-card-name { font-size: 13px; font-weight: 500; color: var(--text); }
.food-card-kcal { font-size: 12px; color: var(--text-muted); }
.food-card.selected .food-card-kcal { color: var(--brown); }

.tooltip-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--brown); background: none; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500;
  text-decoration: underline; text-underline-offset: 2px; padding: 0; margin-top: 4px;
}
.tooltip-box {
  display: none; background: var(--amber-light); border: 1px solid var(--amber-border);
  border-radius: var(--radius-sm); padding: 13px 15px;
  font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-top: 10px;
}
.tooltip-box.visible { display: block; }
.tooltip-box strong { color: var(--amber); }

/* ── BUTTONS ── */
.btn-row { display: flex; gap: 10px; margin-top: 22px; }
.btn {
  padding: 11px 22px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary { background: var(--brown-dark); color: var(--white); border: 2px solid var(--brown-dark); }
.btn-primary:hover { background: var(--brown); border-color: var(--brown); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary:disabled { background: var(--cream-border); border-color: var(--cream-border); color: var(--text-muted); cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost { background: transparent; color: var(--text-mid); border: 2px solid var(--cream-border); }
.btn-ghost:hover { border-color: var(--brown-light); color: var(--text); }

/* ── RESULTS ── */
.result-card {
  background: linear-gradient(135deg, #fdf8f2 0%, #f7efe4 100%);
  border: 2px solid var(--brown-light); border-radius: var(--radius);
  padding: 22px; animation: fadeUp 0.4s ease;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.result-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--cream-border);
}
.result-pet { font-size: 34px; }
.result-header-text h3 { font-family: 'Lora', serif; font-size: 17px; color: var(--brown-dark); }
.result-header-text p { font-size: 13px; color: var(--text-muted); }
.result-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
@media(max-width:420px){ .result-metrics{grid-template-columns:1fr 1fr} .result-metrics .metric-box:last-child{grid-column:span 2} }
.metric-box {
  background: var(--white); border: 1px solid var(--cream-border);
  border-radius: 10px; padding: 14px 10px; text-align: center;
}
.metric-label { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 6px; }
.metric-value { font-family: 'Lora', serif; font-size: 26px; font-weight: 600; color: var(--brown-dark); line-height: 1; }
.metric-unit { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.fish-result-note {
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 13px; color: #1e4d78; margin-bottom: 14px; line-height: 1.6;
}
.result-food-used {
  font-size: 13px; color: var(--text-mid);
  background: var(--cream-dark); border: 1px solid var(--cream-border);
  border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 14px;
}
.result-disclaimer {
  font-size: 12px; color: var(--text-muted); line-height: 1.6;
  border-top: 1px solid var(--cream-border); padding-top: 13px;
}

/* ── MINI HOW ── */
.mini-how { margin-top: 48px; }
.mini-how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
@media(max-width:600px){ .mini-how-grid{grid-template-columns:repeat(2,1fr)} }
.mini-how-item {
  background: var(--white); border: 1px solid var(--cream-border);
  border-radius: var(--radius); padding: 18px 14px; text-align: center;
}
.mini-how-icon { font-size: 28px; margin-bottom: 8px; }
.mini-how-item h4 { font-family: 'Lora', serif; font-size: 15px; color: var(--brown-dark); margin-bottom: 4px; }
.mini-how-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.link-btn {
  font-size: 14px; color: var(--brown); font-weight: 500;
  text-decoration: none; text-underline-offset: 3px;
}
.link-btn:hover { text-decoration: underline; }

/* ── WIZARD ── */
.wizard-step { display: none; }
.wizard-step.active { display: block; }

/* ── PAGE CONTENT (how-it-works, faq) ── */
.page-hero { padding: 48px 24px 36px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 50% at 50% 0%,#eedfc8 0%,transparent 70%); pointer-events:none; }
.page-hero h1 { font-family:'Lora',serif; font-size:clamp(26px,5vw,40px); font-weight:600; color:var(--brown-dark); margin-bottom:10px; max-width:560px; margin-inline:auto; }
.page-hero p { font-size:16px; color:var(--text-mid); max-width:480px; margin:0 auto; font-weight:300; }

.page-content { max-width: 700px; margin: 0 auto; padding: 0 16px 80px; }

.content-section { margin-bottom: 48px; }
.content-section h2 { font-family:'Lora',serif; font-size:22px; font-weight:600; color:var(--brown-dark); margin-bottom:12px; }
.content-section h3 { font-family:'Lora',serif; font-size:17px; font-weight:600; color:var(--brown-dark); margin:20px 0 8px; }
.content-section p { font-size:15px; color:var(--text-mid); line-height:1.75; margin-bottom:12px; }
.content-section ul { padding-left:20px; margin-bottom:12px; }
.content-section li { font-size:15px; color:var(--text-mid); line-height:1.75; margin-bottom:4px; }

.explainer-timeline { display:flex; flex-direction:column; }
.exp-step { display:flex; gap:16px; padding-bottom:28px; position:relative; }
.exp-step:last-child { padding-bottom:0; }
.exp-left { display:flex; flex-direction:column; align-items:center; flex-shrink:0; }
.exp-num { width:38px; height:38px; border-radius:50%; background:var(--brown-dark); color:var(--white); font-size:15px; font-weight:600; display:flex; align-items:center; justify-content:center; font-family:'Lora',serif; }
.exp-line { width:2px; flex:1; background:var(--cream-border); margin-top:8px; }
.exp-step:last-child .exp-line { display:none; }
.exp-body { padding-top:6px; }
.exp-body h4 { font-family:'Lora',serif; font-size:16px; font-weight:600; color:var(--brown-dark); margin-bottom:6px; }
.exp-body p { font-size:14px; color:var(--text-muted); line-height:1.65; }

.formula-card {
  background:var(--cream-dark); border:1px solid var(--cream-border);
  border-radius:var(--radius); padding:22px; margin:24px 0;
}
.formula-card h4 { font-family:'Lora',serif; font-size:15px; font-weight:600; color:var(--brown-dark); margin-bottom:14px; }
.formula-row { display:flex; align-items:flex-start; gap:12px; margin-bottom:12px; flex-wrap:wrap; }
.formula-row:last-child { margin-bottom:0; }
.formula-name { font-size:13px; color:var(--text-mid); font-weight:500; min-width:60px; padding-top:4px; }
.formula-eq { font-family:'Lora',serif; font-style:italic; font-size:13px; background:var(--white); border:1px solid var(--cream-border); border-radius:6px; padding:4px 12px; color:var(--brown-dark); }
.formula-note { font-size:12px; color:var(--text-muted); padding-top:4px; }

.species-table { width:100%; border-collapse:collapse; font-size:14px; margin:16px 0; }
.species-table th { text-align:left; padding:10px 14px; font-size:12px; font-weight:500; text-transform:uppercase; letter-spacing:0.05em; color:var(--text-muted); background:var(--cream-dark); border-bottom:1px solid var(--cream-border); }
.species-table td { padding:10px 14px; border-bottom:1px solid var(--cream-border); color:var(--text-mid); }
.species-table tr:last-child td { border-bottom:none; }
.species-table tr:hover td { background:var(--cream); }

/* ── FAQ ── */
.faq-list { display:flex; flex-direction:column; gap:10px; }
.faq-item { background:var(--white); border:1px solid var(--cream-border); border-radius:var(--radius-sm); overflow:hidden; }
.faq-q { width:100%; padding:16px 20px; font-size:15px; font-weight:500; color:var(--text); background:none; border:none; cursor:pointer; text-align:left; display:flex; justify-content:space-between; align-items:center; gap:12px; font-family:'DM Sans',sans-serif; transition:background 0.15s; }
.faq-q:hover { background:var(--cream); }
.faq-icon { font-size:18px; color:var(--text-muted); transition:transform 0.25s; flex-shrink:0; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.35s ease, padding 0.3s; font-size:14px; color:var(--text-muted); line-height:1.75; padding:0 20px; }
.faq-item.open .faq-a { max-height:300px; padding:0 20px 18px; }
.faq-category { font-family:'Lora',serif; font-size:18px; font-weight:600; color:var(--brown-dark); margin:32px 0 12px; }

/* ── FOOTER ── */
footer { background:var(--brown-dark); color:rgba(255,255,255,0.7); margin-top:80px; padding:36px 24px 28px; }
.footer-inner { max-width:720px; margin:0 auto; }
.footer-brand { margin-bottom:16px; }
.footer-logo { font-family:'Lora',serif; font-size:18px; font-weight:600; color:var(--white); }
.footer-brand p { font-size:13px; margin-top:4px; }
.footer-links { display:flex; gap:20px; flex-wrap:wrap; margin-bottom:20px; }
.footer-links a { color:rgba(255,255,255,0.7); text-decoration:none; font-size:14px; }
.footer-links a:hover { color:var(--white); }
.footer-legal { font-size:12px; line-height:1.7; border-top:1px solid rgba(255,255,255,0.12); padding-top:16px; }

@media print {
  nav, .hero, .mini-how, footer, .btn-row, .steps, .wizard-step:not(#step-5) { display:none!important; }
  .wizard-step#step-5 { display:block!important; }
  .result-card { box-shadow:none; border:2px solid #ccc; }
}

/* ── SPECIES CATEGORIES ──────────────────────────────────── */
.species-category-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
  margin: 18px 0 8px; padding-bottom: 4px;
  border-bottom: 1px solid var(--cream-border);
}
.species-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 4px; }
@media(max-width:520px){ .species-grid{grid-template-columns:repeat(2,1fr)} }

/* ── FOOD TYPE LABELS & ROWS ─────────────────────────────── */
.food-type-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--text-muted);
  margin: 14px 0 6px; padding-bottom: 3px;
  border-bottom: 1px solid var(--cream-border);
  grid-column: 1 / -1;
}
.food-picker-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-bottom: 4px; }
@media(max-width:480px){ .food-picker-row{grid-template-columns:1fr} }
#food-picker-grid { display: flex; flex-direction: column; }

/* ── SEO SECTION ─────────────────────────────────────────── */
.seo-section {
  margin-top: 60px;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-border);
}
.seo-section h2 {
  font-family: 'Lora', serif; font-size: 24px; font-weight: 600;
  color: var(--brown-dark); margin-bottom: 14px;
}
.seo-section > p {
  font-size: 15px; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 12px; max-width: 680px;
}
.seo-species-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 28px; }
@media(max-width:580px){ .seo-species-grid{grid-template-columns:1fr} }
.seo-card {
  background: var(--cream); border: 1px solid var(--cream-border);
  border-radius: var(--radius-sm); padding: 18px 16px;
}
.seo-card h3 { font-family:'Lora',serif; font-size:16px; font-weight:600; color:var(--brown-dark); margin-bottom:8px; }
.seo-card p { font-size:13px; color:var(--text-mid); line-height:1.7; }

/* ── TRUST SECTION ───────────────────────────────────────── */
.trust-section { margin-top: 40px; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
@media(max-width:640px){ .trust-grid{grid-template-columns:repeat(2,1fr)} }
.trust-item {
  background: var(--white); border: 1px solid var(--cream-border);
  border-radius: var(--radius); padding: 18px 14px; text-align: center;
}
.trust-icon { font-size: 28px; margin-bottom: 8px; }
.trust-item h4 { font-family:'Lora',serif; font-size:14px; color:var(--brown-dark); margin-bottom:6px; }
.trust-item p { font-size:12px; color:var(--text-muted); line-height:1.5; }

/* ── LANG SECTION ────────────────────────────────────────── */
.lang-section { margin-top: 40px; text-align: center; }
.lang-section h3 { font-family:'Lora',serif; font-size:18px; color:var(--brown-dark); margin-bottom:16px; }
.lang-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.lang-btn {
  padding: 8px 16px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--cream-border);
  font-size: 14px; color: var(--text-mid); text-decoration: none;
  transition: all 0.15s;
}
.lang-btn:hover { border-color: var(--brown-light); color: var(--text); background: var(--cream-dark); }

/* ── FOOTER LANG ROW ─────────────────────────────────────── */
.footer-lang {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-bottom: 16px; font-size: 13px;
}
.footer-lang a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 18px; }
.footer-lang a:hover { color: var(--white); }
.footer-lang span { color: rgba(255,255,255,0.5); }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-card {
  background: var(--cream-dark); border: 1px solid var(--cream-border);
  border-radius: var(--radius); padding: 32px; text-align: center;
}
.contact-icon { font-size: 48px; margin-bottom: 12px; }
.contact-card h2 { font-family:'Lora',serif; font-size:22px; color:var(--brown-dark); margin-bottom:10px; }
.contact-card p { font-size:15px; color:var(--text-mid); margin-bottom:16px; }
.contact-email {
  display: inline-block; font-size: 18px; font-weight: 500;
  color: var(--brown-dark); text-decoration: none;
  border-bottom: 2px solid var(--brown-light); padding-bottom: 2px;
}
.contact-email:hover { color: var(--brown); }

/* ── NEWS COMING SOON ────────────────────────────────────── */
.coming-soon-card {
  background: var(--white); border: 1px solid var(--cream-border);
  border-radius: var(--radius); padding: 32px; text-align: center;
}
.cs-icon { font-size: 56px; margin-bottom: 16px; }
.coming-soon-card h2 { font-family:'Lora',serif; font-size:22px; color:var(--brown-dark); margin-bottom:12px; }
.coming-soon-card p { font-size:15px; color:var(--text-mid); line-height:1.7; margin-bottom:12px; }
.cs-list { list-style: none; text-align:left; max-width:440px; margin:16px auto; padding:0; }
.cs-list li { font-size:14px; color:var(--text-mid); padding:8px 0; border-bottom:1px solid var(--cream-border); line-height:1.5; }
.cs-list li:last-child { border-bottom:none; }
.cs-notify { background:var(--cream-dark); border:1px solid var(--cream-border); border-radius:var(--radius-sm); padding:18px 20px; margin-top:20px; text-align:center; }
.cs-notify p { margin-bottom:4px; }

/* ── LANG PAGE ───────────────────────────────────────────── */
.lang-redirect-note { margin-bottom: 16px; }

/* ── RESULT NOTES (snake, insect etc) ───────────────────── */
.fish-result-note {
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 13px; color: #1e4d78; margin-bottom: 14px; line-height: 1.6;
}

/* ── SNAKE LIVE PREY WARNING ─────────────────────────────── */
#live-prey-warning {
  border-color: var(--amber-border) !important;
  background: var(--amber-light) !important;
  color: #633806 !important;
}
