/*
 * Fern & Fang Co. — Pages Stylesheet
 * Shared by: About, Shop, Care Guide, Care Guide Article
 * All selectors prefixed with .ff- to avoid theme conflicts.
 */

/* ─── Reset ─────────────────────────────────────────────────── */
.ff-page *,
.ff-page *::before,
.ff-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Design Tokens ─────────────────────────────────────────── */
.ff-page {
  --cream:       hsl(37, 75%, 97%);
  --cream-mid:   hsl(83, 18%, 88%);
  --dark-forest: hsl(140, 20%, 12%);
  --forest:      hsl(140, 12%, 44%);
  --forest-dark: hsl(140, 15%, 36%);
  --gold:        hsl(43, 40%, 58%);
  --sage:        hsl(83, 22%, 71%);
  --muted-text:  hsl(140, 10%, 40%);
  --border:      hsl(83, 15%, 82%);
  --radius:      0.5rem;

  font-family: 'Montserrat', sans-serif;
  background-color: var(--cream);
  color: var(--dark-forest);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* ─── Header ────────────────────────────────────────────────── */
.ff-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background-color: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-bar .ff-header { top: 32px !important; }

.ff-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 1.85rem;
  color: var(--dark-forest);
  letter-spacing: 0.02em;
}

.ff-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.ff-nav a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-forest);
  transition: color 0.2s;
}
.ff-nav a:hover,
.ff-nav a.active { color: var(--forest); }

.ff-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-forest);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.ff-search-btn:hover { color: var(--forest); }

/* ─── Search Overlay ────────────────────────────────────────── */
.ff-search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(28,42,30,0.85);
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
}
.ff-search-overlay.active { display: flex; }
.ff-search-overlay form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 560px;
  padding: 0 1.5rem;
}
.ff-search-overlay input[type="search"] {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background: var(--cream);
  color: var(--dark-forest);
  outline: none;
}
.ff-search-overlay button[type="submit"] {
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--dark-forest);
  border: none;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.ff-search-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ─── Page Offset (below fixed header) ─────────────────────── */
.ff-page-body {
  margin-top: 60px;
  flex: 1;
}
.admin-bar .ff-page-body { margin-top: 92px; }

/* ─── Section Utility ───────────────────────────────────────── */
.ff-section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.ff-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--dark-forest);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.ff-section-subtitle {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.7;
  max-width: 520px;
}

/* ─── Gold Button ───────────────────────────────────────────── */
.ff-btn-gold {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: var(--gold);
  color: var(--dark-forest);
  border: none;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}
.ff-btn-gold:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── Footer ────────────────────────────────────────────────── */
.ff-footer {
  background: var(--forest);
  color: hsl(37, 40%, 88%);
  padding: 3.5rem 2.5rem 2rem;
}
.ff-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.ff-footer-brand .ff-logo { color: hsl(37, 40%, 88%); font-size: 1.7rem; }
.ff-footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  opacity: 0.7;
  line-height: 1.5;
}
.ff-footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.85rem;
}
.ff-footer-social a {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.ff-footer-social a:hover { opacity: 1; }
.ff-footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  opacity: 0.55;
}
.ff-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ff-footer-col a {
  font-size: 0.82rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.ff-footer-col a:hover { opacity: 1; }
.ff-footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.72rem;
  opacity: 0.5;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════ */

/* Hero */
.ff-about-hero {
  background: var(--cream);
  padding: 5rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.ff-about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ff-about-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem 3rem;
  box-shadow: 0 4px 24px rgba(100,126,105,0.07);
  position: relative;
  z-index: 1;
}
.ff-about-card .ff-section-label { color: var(--gold); }
.ff-about-card .ff-section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.ff-about-card p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.75;
  margin-top: 0.85rem;
}

/* Floating hexagons background */
.ff-hex-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.ff-hex-float span {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--forest);
  opacity: 0.07;
  animation: ff-float 6s ease-in-out infinite alternate;
}
.ff-hex-float span:nth-child(1)  { width:24px; height:28px; top:12%; left:52%; animation-duration:5.2s; animation-delay:0s; }
.ff-hex-float span:nth-child(2)  { width:14px; height:16px; top:28%; left:68%; animation-duration:7.1s; animation-delay:0.4s; }
.ff-hex-float span:nth-child(3)  { width:18px; height:21px; top:45%; left:58%; animation-duration:6.4s; animation-delay:0.9s; }
.ff-hex-float span:nth-child(4)  { width:10px; height:12px; top:62%; left:74%; animation-duration:8s;   animation-delay:1.3s; }
.ff-hex-float span:nth-child(5)  { width:22px; height:25px; top:75%; left:62%; animation-duration:5.8s; animation-delay:0.2s; }
.ff-hex-float span:nth-child(6)  { width:16px; height:18px; top:18%; left:82%; animation-duration:6.9s; animation-delay:1.1s; }
.ff-hex-float span:nth-child(7)  { width:12px; height:14px; top:55%; left:88%; animation-duration:7.4s; animation-delay:0.6s; }
.ff-hex-float span:nth-child(8)  { width:20px; height:23px; top:32%; left:92%; animation-duration:5.5s; animation-delay:1.7s; }
.ff-hex-float span:nth-child(9)  { width:8px;  height:9px;  top:68%; left:82%; animation-duration:9s;   animation-delay:0.3s; }
.ff-hex-float span:nth-child(10) { width:18px; height:21px; top:85%; left:78%; animation-duration:6.1s; animation-delay:2s;   }
.ff-hex-float span:nth-child(11) { width:14px; height:16px; top:8%;  left:75%; animation-duration:7.8s; animation-delay:0.7s; }
.ff-hex-float span:nth-child(12) { width:26px; height:30px; top:48%; left:96%; animation-duration:5.9s; animation-delay:1.5s; }
@keyframes ff-float {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-14px) rotate(8deg); }
}

/* About — Nature section */
.ff-about-nature {
  background: var(--cream-mid);
  padding: 5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.ff-about-nature-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ff-about-nature-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--dark-forest);
}
.ff-about-nature-text p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.ff-about-nature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ff-about-leaf {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, hsl(100, 30%, 78%), hsl(120, 22%, 65%));
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.75;
}

/* About — Values cards */
.ff-about-values {
  background: var(--cream);
  padding: 5rem 2.5rem;
}
.ff-about-values-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.ff-value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(100,126,105,0.06);
}
.ff-value-card .ff-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.ff-value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  color: var(--dark-forest);
}
.ff-value-card p {
  font-size: 0.85rem;
  color: var(--muted-text);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   SHOP — COMING SOON
══════════════════════════════════════════════════════════════ */
.ff-shop-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background: var(--cream);
  gap: 1.5rem;
}
.ff-shop-icon {
  color: var(--forest);
  opacity: 0.55;
  margin-bottom: 0.5rem;
}
.ff-shop-main h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--dark-forest);
}
.ff-shop-main p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.75;
  max-width: 440px;
}

/* ══════════════════════════════════════════════════════════════
   CARE GUIDE — LISTING PAGE
══════════════════════════════════════════════════════════════ */
.ff-care-hero {
  background: var(--cream);
  text-align: center;
  padding: 4rem 2rem 2rem;
}
.ff-care-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--dark-forest);
  margin-bottom: 0.75rem;
}
.ff-care-hero p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.ff-care-search {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 2rem;
  overflow: hidden;
  background: white;
}
.ff-care-search input {
  flex: 1;
  padding: 0.7rem 1.25rem;
  border: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--dark-forest);
  outline: none;
}
.ff-care-search button {
  padding: 0.7rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-text);
}

/* Hex grid */
.ff-care-grid-section {
  background: var(--cream);
  padding: 3rem 2rem 5rem;
}
.ff-care-hex-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.ff-care-hex-row {
  display: flex;
  gap: 8px;
}
.ff-care-hex-row:nth-child(even) {
  margin-left: 104px;
  margin-top: -20px;
}
.ff-care-hex-row:nth-child(odd):not(:first-child) {
  margin-top: -20px;
}

.ff-care-hex {
  width: 192px;
  height: 221px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: var(--dark-forest);
  transition: background 0.22s, transform 0.22s;
  flex-shrink: 0;
}
.ff-care-hex:hover {
  background: var(--cream-mid);
  transform: translateY(-4px);
}
.ff-care-hex-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.5rem;
}
.ff-care-hex-emoji { font-size: 1.7rem; }
.ff-care-hex-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark-forest);
}
.ff-care-hex-count {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-text);
}

/* ══════════════════════════════════════════════════════════════
   CARE GUIDE — ARTICLE PAGE
══════════════════════════════════════════════════════════════ */

/* Breadcrumb */
.ff-breadcrumb {
  padding: 0.75rem 2rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted-text);
}
.ff-breadcrumb a { color: var(--muted-text); transition: color 0.2s; }
.ff-breadcrumb a:hover { color: var(--dark-forest); }
.ff-breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* 3-col layout */
.ff-article-layout {
  display: grid;
  grid-template-columns: 268px 1fr 230px;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  align-items: start;
}

/* Left sidebar */
.ff-article-sidebar {
  position: sticky;
  top: 76px;
  padding-right: 1.5rem;
}
.ff-sidebar-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  background: white;
}
.ff-sidebar-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  outline: none;
  color: var(--dark-forest);
}
.ff-sidebar-search svg { color: var(--muted-text); flex-shrink: 0; }

/* Category accordion */
.ff-sidebar-cat {
  border-bottom: 1px solid var(--border);
}
.ff-sidebar-cat-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-forest);
  text-align: left;
}
.ff-sidebar-cat-toggle .count {
  font-size: 0.7rem;
  color: var(--muted-text);
  margin-left: 4px;
  font-weight: 400;
}
.ff-sidebar-cat-toggle .chevron {
  font-size: 0.6rem;
  color: var(--muted-text);
  transition: transform 0.2s;
}
.ff-sidebar-cat.open .chevron { transform: rotate(90deg); }
.ff-sidebar-cat-articles {
  display: none;
  flex-direction: column;
  padding-bottom: 0.75rem;
  gap: 0.1rem;
}
.ff-sidebar-cat.open .ff-sidebar-cat-articles { display: flex; }
.ff-sidebar-cat-articles a {
  font-size: 0.8rem;
  color: var(--muted-text);
  padding: 0.35rem 0.75rem;
  border-radius: 0.35rem;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}
.ff-sidebar-cat-articles a:hover,
.ff-sidebar-cat-articles a.current {
  background: var(--cream-mid);
  color: var(--dark-forest);
}
.ff-sidebar-cat-articles a.current { font-weight: 600; }

/* Article center */
.ff-article-center { min-width: 0; }

.ff-article-hero-banner {
  background: linear-gradient(135deg, hsl(140, 18%, 34%), hsl(145, 22%, 22%));
  border-radius: 0.75rem;
  padding: 2.25rem 2.5rem;
  margin-bottom: 1.75rem;
  color: white;
}
.ff-article-cat-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  border-radius: 0.25rem;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.85rem;
}
.ff-article-hero-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.ff-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  opacity: 0.75;
}
.ff-article-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* Quick facts */
.ff-quick-facts {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.ff-quick-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ff-quick-fact {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.ff-quick-fact:nth-child(even) { border-right: none; }
.ff-quick-fact:nth-last-child(-n+2) { border-bottom: none; }
.ff-quick-fact-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.ff-quick-fact-value {
  font-size: 0.9rem;
  color: var(--dark-forest);
  font-weight: 500;
}

/* Article body */
.ff-article-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: hsl(140, 15%, 20%);
}
.ff-article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2.25rem 0 0.85rem;
  color: var(--dark-forest);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ff-article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1.75rem 0 0.65rem;
  color: var(--dark-forest);
}
.ff-article-body p { margin-bottom: 1rem; }
.ff-article-body ul,
.ff-article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.ff-article-body li { margin-bottom: 0.4rem; }
.ff-article-body strong { font-weight: 600; color: var(--dark-forest); }
.ff-article-body a { color: var(--forest); text-decoration: underline; }
.ff-article-body blockquote,
.ff-callout {
  background: hsl(140, 18%, 94%);
  border-left: 3px solid var(--forest);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  font-style: italic;
  color: hsl(140, 15%, 28%);
}

/* Right sidebar */
.ff-article-toc {
  position: sticky;
  top: 76px;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border);
}
.ff-toc-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 1rem;
}
.ff-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ff-toc-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid hsl(83, 15%, 90%);
}
.ff-toc-list a {
  font-size: 0.78rem;
  color: var(--muted-text);
  transition: color 0.2s;
  line-height: 1.4;
  display: block;
}
.ff-toc-list a:hover { color: var(--dark-forest); }
.ff-toc-sub { padding-left: 0.75rem; font-size: 0.73rem; }
.ff-toc-meta {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  color: var(--muted-text);
}
.ff-toc-meta strong { display: block; margin-bottom: 0.25rem; font-weight: 600; }

/* Feedback */
.ff-article-feedback {
  margin-top: 1.5rem;
}
.ff-article-feedback p {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-text);
  margin-bottom: 0.65rem;
  letter-spacing: 0.04em;
}
.ff-feedback-btns {
  display: flex;
  gap: 0.5rem;
}
.ff-feedback-btns button {
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ff-feedback-btns button:hover { border-color: var(--gold); transform: scale(1.1); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ff-about-hero-inner { grid-template-columns: 1fr; }
  .ff-about-nature-inner { grid-template-columns: 1fr; }
  .ff-about-nature-visual { display: none; }
  .ff-about-values-inner { grid-template-columns: 1fr; }
  .ff-footer-inner { grid-template-columns: 1fr 1fr; }
  .ff-article-layout { grid-template-columns: 1fr; padding: 1rem; }
  .ff-article-sidebar { position: static; padding-right: 0; display: none; }
  .ff-article-toc { position: static; padding-left: 0; border-left: none; margin-top: 2rem; }
}
@media (max-width: 600px) {
  .ff-header { padding: 0 1.25rem; }
  .ff-nav { gap: 1.25rem; }
  .ff-footer-inner { grid-template-columns: 1fr; }
  .ff-care-hex { width: 140px; height: 161px; }
  .ff-care-hex-row:nth-child(even) { margin-left: 74px; }
}


/* ── SUGGESTION FORM SECTION ──────────────────────────── */
.ff-suggest-section {
    background: #f2ede6;
    padding: 64px 24px;
}
.ff-suggest-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 700px) {
    .ff-suggest-inner { grid-template-columns: 1fr; gap: 28px; }
}
.ff-suggest-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #2c3e2d;
    margin: 0 0 12px;
    line-height: 1.2;
}
.ff-suggest-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #5a6b5c;
    line-height: 1.7;
    margin: 0;
}
.ff-suggest-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ff-suggest-form input,
.ff-suggest-form textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    border: 1px solid #c8d5c9;
    border-radius: 8px;
    padding: 12px 14px;
    background: #fff;
    color: #2c3e2d;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.ff-suggest-form input:focus,
.ff-suggest-form textarea:focus {
    border-color: #2c3e2d;
}
.ff-suggest-form textarea {
    min-height: 110px;
    resize: vertical;
}
.ff-suggest-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #2c3e2d;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.ff-suggest-btn:hover { background: #3d5c3e; }
.ff-suggest-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.ff-suggest-msg {
    display: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    padding: 10px 14px;
    border-radius: 6px;
    margin: 0;
}
.ff-suggest-msg.ok  { background: #e8f5e9; color: #2e7d32; }
.ff-suggest-msg.err { background: #fce4ec; color: #c62828; }
