/* =========================================================
   en-reg.ro - Unified premium design system
   Subdomain: Energie verde
   Accent palette: emerald + warm sand
   ========================================================= */

:root {
  --bg: #f3eee5;
  --bg-strong: #e8e0d1;
  --surface: rgba(255, 252, 247, 0.78);
  --surface-strong: #fffaf2;
  --text: #182b22;
  --text-soft: #51685e;
  --text-mute: #7e9087;

  --primary: #1f8454;
  --primary-strong: #155f3c;
  --primary-glow: rgba(31, 132, 84, 0.32);
  --accent: #d4b65a;
  --accent-strong: #a48729;
  --accent-soft: rgba(212, 182, 90, 0.22);

  --border: rgba(21, 95, 60, 0.14);
  --border-strong: rgba(21, 95, 60, 0.22);
  --hairline: rgba(255, 255, 255, 0.55);

  --shadow-xs: 0 2px 6px rgba(21, 95, 60, 0.06);
  --shadow-soft: 0 10px 28px rgba(21, 95, 60, 0.09);
  --shadow: 0 22px 60px rgba(21, 95, 60, 0.12);
  --shadow-lg: 0 32px 80px rgba(21, 95, 60, 0.18);

  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius: 22px;
  --radius-lg: 28px;
  --content-width: 1200px;

  --font-body: "Inter", "Aptos", "Segoe UI", "Trebuchet MS", system-ui, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Georgia", serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dock-h: 76px;
  --dock-h-mobile: 70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(212, 182, 90, 0.2), transparent 70%),
    radial-gradient(55% 55% at 92% 8%, rgba(31, 132, 84, 0.16), transparent 70%),
    radial-gradient(45% 40% at 50% 100%, rgba(212, 182, 90, 0.12), transparent 70%),
    linear-gradient(180deg, #faf6ee 0%, var(--bg) 50%, #ece3d2 100%);
  background-attachment: fixed;
  min-height: 100vh;
  padding-bottom: calc(var(--dock-h) + 28px);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, ul, ol { margin-top: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; color: var(--text); }

.page-shell { min-height: 100vh; position: relative; overflow: clip; }
.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}
.page-shell::before {
  top: -180px; right: -160px;
  background: radial-gradient(circle, rgba(212, 182, 90, 0.45), transparent 70%);
}
.page-shell::after {
  bottom: -180px; left: -160px;
  background: radial-gradient(circle, rgba(31, 132, 84, 0.3), transparent 70%);
}

.container {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 60;
  margin: 14px auto 0;
  width: min(calc(100% - 2rem), var(--content-width));
  border-radius: 999px;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.82), rgba(255, 252, 247, 0.62));
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
  padding: 0 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--shadow-xs);
  background: var(--surface-strong);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-mark img { width: 36px; height: 36px; object-fit: contain; }
.brand-copy { display: grid; gap: 0.1rem; }
.brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--primary-strong);
}
.brand-subtitle {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 250, 242, 0.85);
  color: var(--text);
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.site-nav { display: flex; align-items: center; gap: 0.35rem; }
.site-nav a {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-strong);
  background: rgba(31, 132, 84, 0.08);
}
.site-nav a.is-active {
  color: var(--primary-strong);
  background: rgba(31, 132, 84, 0.12);
}
.site-nav a.header-cta {
  background: linear-gradient(140deg, var(--primary), var(--primary-strong));
  color: #fdfaf2;
  box-shadow: 0 8px 22px var(--primary-glow);
  margin-left: 0.4rem;
}
.site-nav a.header-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 30px var(--primary-glow); color: #fdfaf2; }

/* ---------- Top info row ---------- */
.topbar-info {
  display: flex;
  justify-content: center;
  margin: 1rem auto 0;
  width: min(calc(100% - 2rem), var(--content-width));
}
.topbar-info-inner {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--text-soft);
  box-shadow: var(--shadow-xs);
}
.topbar-info-inner span { display: inline-flex; align-items: center; gap: 0.35rem; }
.topbar-info-inner a { color: var(--primary-strong); font-weight: 700; }
.topbar-info-inner .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-mute);
  display: inline-block;
}

/* ---------- Main ---------- */
.main-content { padding: 1.6rem 0 3rem; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 2.6rem 0 1.6rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 182, 90, 0.22);
}

.hero h1 {
  margin: 1rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #11221a;
}
.hero p { color: var(--text-soft); font-size: 1.06rem; max-width: 60ch; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.button-primary {
  background: linear-gradient(140deg, var(--primary), var(--primary-strong));
  color: #fdfaf2;
  box-shadow: 0 10px 26px var(--primary-glow);
}
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px var(--primary-glow); }
.button-secondary {
  background: rgba(255, 250, 242, 0.85);
  color: var(--primary-strong);
  border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}
.button-secondary:hover { transform: translateY(-2px); background: #fffaf2; box-shadow: var(--shadow-soft); }

/* ---------- Hero visual ---------- */
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 1.1s var(--ease);
}
.hero-visual img.is-out { opacity: 0; }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(21, 95, 60, 0.32) 0%, transparent 50%);
  pointer-events: none;
}
.hero-visual-caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 2;
  color: #fffaf2;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.01em;
}
.hero-visual-dots {
  position: absolute;
  right: 1.2rem;
  bottom: 1.4rem;
  z-index: 2;
  display: flex;
  gap: 0.4rem;
}
.hero-visual-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.hero-visual-dots span.is-active { background: #fff; transform: scale(1.4); }

/* ---------- Section ---------- */
.section { padding: 2.6rem 0; }
.section-header { max-width: 760px; margin: 0 auto 1.6rem; text-align: center; }
.section-header.left { text-align: left; margin-left: 0; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #11221a;
  margin-bottom: 0.85rem;
}
.section-header h2 .coloured {
  background: linear-gradient(135deg, var(--primary), var(--accent-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-header p { color: var(--text-soft); font-size: 1.04rem; margin: 0; }

/* ---------- Service categories ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
.category-card {
  text-align: center;
  padding: 1.6rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(130%);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-icon {
  width: 80px; height: 80px;
  border-radius: 22px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(31, 132, 84, 0.16), rgba(212, 182, 90, 0.22));
  border: 1px solid rgba(31, 132, 84, 0.18);
}
.category-icon img {
  width: 50px; height: 50px;
  filter: invert(33%) sepia(48%) saturate(720%) hue-rotate(108deg) brightness(92%) contrast(88%);
}
.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary-strong);
  letter-spacing: -0.005em;
  margin-bottom: 0.55rem;
}
.category-card p { color: var(--text-soft); margin: 0; font-size: 0.96rem; }

/* ---------- Service cards (with image) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(130%);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.05); }
.service-card-body { padding: 1.2rem 1.3rem 1.4rem; display: grid; gap: 0.55rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--primary-strong);
  letter-spacing: -0.005em;
}
.service-card p { color: var(--text-soft); margin: 0; font-size: 0.95rem; }

/* ---------- Podcast card ---------- */
.podcast-card {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(130%);
}
.podcast-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  cursor: pointer;
}
.podcast-media img,
.podcast-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}
.podcast-media iframe { aspect-ratio: 16/9; }
.podcast-media .play-btn {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25), 0 0 0 6px rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.podcast-media .play-btn:hover { transform: translate(-50%, -50%) scale(1.05); background: #fff; }
.podcast-content { padding: 1.6rem; display: grid; gap: 0.9rem; }
.podcast-meta { display: flex; flex-wrap: wrap; gap: 0.55rem; align-items: center; }
.meta-item {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 132, 84, 0.1);
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(31, 132, 84, 0.16);
}
.like-btn {
  margin-left: auto;
  border: 1px solid var(--border);
  background: rgba(255, 250, 242, 0.85);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
}
.podcast-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary-strong);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.podcast-description { color: var(--text-soft); margin: 0; }
.podcast-actions { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.action-btn {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid var(--border);
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
}
.action-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* ---------- About / services list ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.about-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.55rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(130%);
}
.about-card p { color: var(--text-soft); margin: 0 0 0.6rem; }
.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 0.6rem;
}
.about-card li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-soft);
}
.about-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 3px rgba(31, 132, 84, 0.1);
}

.about-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

/* ---------- Footer ---------- */
.site-footer { padding: 1rem 0 3rem; }
.footer-shell {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(130%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 1.1fr;
  gap: 1.2rem;
}
.footer-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary-strong);
  margin-bottom: 0.7rem;
}
.footer-shell address { font-style: normal; color: var(--text-soft); line-height: 1.6; }
.footer-shell p,
.footer-shell address,
.footer-shell .footer-link { color: var(--text-soft); font-size: 0.96rem; }
.footer-shell .footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-shell .footer-link strong { color: var(--primary-strong); }
.footer-shell a:hover { color: var(--primary-strong); text-decoration: underline; text-underline-offset: 3px; }
.footer-shell .icon {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(31, 132, 84, 0.12);
  color: var(--primary-strong);
  flex-shrink: 0;
}
.footer-shell .icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.anpc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding-top: 1.4rem;
  margin-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.anpc-links a {
  padding: 0.5rem;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.anpc-links a:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.anpc-links img { width: 180px; }

.footer-note {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.92rem;
  text-align: center;
}
.footer-note a { color: var(--primary-strong); font-weight: 700; }

/* =========================================================
   Subdomain dock (Windows 11 style)
   ========================================================= */
.subdomain-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 200;
  pointer-events: none;
  animation: dockRise 0.7s var(--ease) 0.15s both;
}
@keyframes dockRise {
  from { opacity: 0; transform: translate(-50%, 30px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.dock-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.78), rgba(255, 252, 247, 0.55));
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 -1px 0 rgba(21, 95, 60, 0.05) inset,
    0 18px 50px rgba(21, 95, 60, 0.18),
    0 4px 12px rgba(21, 95, 60, 0.08);
}
.dock-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem 0.55rem 0.7rem;
  border-radius: 16px;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dock-item:hover,
.dock-item:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 252, 247, 0.85);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(21, 95, 60, 0.1);
}
.dock-item.is-active {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(255, 252, 247, 0.75));
  color: var(--primary-strong);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 16px rgba(21, 95, 60, 0.12);
}
.dock-item.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 10px var(--primary-glow);
}
.dock-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  flex-shrink: 0;
}
.dock-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.dock-item[data-key="ssm"] .dock-icon       { background: linear-gradient(140deg, rgba(47, 111, 109, 0.2), rgba(200, 155, 95, 0.2)); color: #214e4f; }
.dock-item[data-key="energie"] .dock-icon   { background: linear-gradient(140deg, rgba(31, 132, 84, 0.22), rgba(212, 182, 90, 0.22)); color: #155f3c; }
.dock-item[data-key="podcasturi"] .dock-icon{ background: linear-gradient(140deg, rgba(79, 70, 148, 0.18), rgba(212, 154, 87, 0.2)); color: #352e6b; }

.dock-divider {
  width: 1px;
  height: 28px;
  margin: 0 0.15rem;
  background: linear-gradient(180deg, transparent, rgba(21, 95, 60, 0.18), transparent);
}
.dock-home {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: rgba(255, 252, 247, 0.7);
  color: var(--text-soft);
  pointer-events: auto;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.dock-home:hover { transform: translateY(-3px); background: #fffaf2; color: var(--primary-strong); }
.dock-home svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero,
  .podcast-card,
  .footer-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .category-grid,
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { padding-bottom: calc(var(--dock-h-mobile) + 18px); }

  .container { width: min(calc(100% - 1.2rem), var(--content-width)); }
  .site-header { top: 10px; border-radius: 22px; }
  .header-inner {
    flex-wrap: wrap;
    padding: 0.7rem 0.7rem;
    min-height: 56px;
  }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 0.3rem;
    gap: 0.2rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; padding: 0.85rem 1rem; }
  .site-nav a.header-cta { margin: 0.3rem 0 0.1rem; }

  .hero { padding-top: 1.6rem; gap: 1.4rem; }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 3.2rem); }
  .hero-visual { min-height: 260px; }

  .category-grid,
  .service-grid { grid-template-columns: 1fr; }

  .brand-subtitle { display: none; }

  .subdomain-dock { bottom: 12px; }
  .dock-inner { padding: 0.35rem; gap: 0.2rem; border-radius: 18px; }
  .dock-item { padding: 0.45rem; }
  .dock-item .dock-label { display: none; }
  .dock-item.is-active .dock-label {
    display: inline;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -28px;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(21, 95, 60, 0.92);
    color: #fffaf2;
    font-size: 0.74rem;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(21, 95, 60, 0.2);
  }
  .dock-home { width: 34px; height: 34px; }
  .dock-divider { height: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
