/* ==========================================================================
   Dr. Suresh Sepuri — Design System
   Navy / Gold / Teal editorial medical theme, derived from brand mark.
   ========================================================================== */

:root {
  /* Brand palette (from logo: navy, metallic gold, teal anatomical line art) */
  --navy-950: #060f1f;
  --navy-900: #0b1f3d;
  --navy-800: #122a4d;
  --navy-700: #1a3a66;
  --navy-600: #244c82;

  --gold-600: #a9821e;
  --gold-500: #c9a227;
  --gold-400: #d9b94f;
  --gold-300: #e8cd7d;
  --gold-100: #f7eecb;

  --teal-700: #0f5f52;
  --teal-600: #14806d;
  --teal-500: #1fa98c;
  --teal-100: #e3f5f1;

  --cream: #faf8f3;
  --white: #ffffff;
  --ink: #0b1220;
  --slate-700: #33415c;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --line: #e4e0d5;

  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --radius: 2px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { color: var(--slate-600); margin: 0; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

::selection { background: var(--gold-300); color: var(--navy-900); }

/* Focus states — visible, accessible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 2px;
  border-radius: 1px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  z-index: 100;
  font-size: 0.9rem;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .wrap { padding: 0 2.5rem; } }

.section { padding: 5rem 0; }
@media (max-width: 767px) { .section { padding: 3.5rem 0; } }

.section-tight { padding: 3.5rem 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

.section-head { max-width: 680px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h2.title { font-size: clamp(1.85rem, 3vw, 2.6rem); }
h1.title { font-size: clamp(2.4rem, 5vw, 3.9rem); }

.lede { font-size: 1.1rem; line-height: 1.7; color: var(--slate-600); margin-top: 1rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
  min-height: 44px;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}
.btn-gold:hover { background: linear-gradient(180deg, var(--gold-300), var(--gold-400)); }

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { border-color: var(--gold-400); color: var(--gold-300); }

.btn-outline-dark {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--navy-900); color: var(--white); }

.btn-block { width: 100%; }

.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.85rem; min-height: 40px; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand-mark {
  width: calc(52px * 1.07);
  height: calc(52px * 1.07);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }

/* ==========================================================================
   Logo — subtle live animation layer
   The base <img> is never touched; two masked overlays (gold shimmer +
   pancreas flow) are composited on top, clipped to the exact pixels of the
   real artwork via alpha masks derived from the logo itself.
   ========================================================================== */

.logo-live { position: relative; display: block; width: 100%; height: 100%; }
.logo-live img { position: relative; width: 100%; height: 100%; object-fit: contain; display: block; }

.logo-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: url("../images/logo-gold-mask.png");
  mask-image: url("../images/logo-gold-mask.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.55) 47%, rgba(255,250,222,0.85) 50%, rgba(255,255,255,0.55) 53%, transparent 62%);
  background-size: 320% 320%;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  animation: logoGoldShimmer 6.5s ease-in-out infinite;
  will-change: background-position;
}

.logo-flow {
  position: absolute;
  left: 34.29%;
  top: 48.36%;
  width: 28.07%;
  height: 14.16%;
  pointer-events: none;
  -webkit-mask-image: url("../images/logo-teal-mask-crop.png");
  mask-image: url("../images/logo-teal-mask-crop.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: radial-gradient(ellipse 16% 65% at 50% 50%, rgba(255,255,255,0.95) 0%, rgba(170,255,232,0.9) 30%, rgba(110,240,210,0.45) 55%, transparent 78%);
  background-size: 34% 240%;
  background-repeat: no-repeat;
  background-position: -25% 50%;
  mix-blend-mode: screen;
  animation: logoPancreasFlow 4.2s ease-in-out infinite;
  will-change: background-position;
}

@keyframes logoGoldShimmer {
  0% { background-position: -130% -60%; }
  42% { background-position: 130% 60%; }
  100% { background-position: 130% 60%; }
}

@keyframes logoPancreasFlow {
  0% { background-position: -25% 50%; }
  60% { background-position: 135% 50%; }
  100% { background-position: 135% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-shimmer, .logo-flow { display: none; }
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .name { font-family: var(--font-serif); font-weight: 700; font-size: 1.12rem; color: var(--navy-900); }
.brand-text .role { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-600); font-weight: 600; margin-top: 2px; }

.nav-desktop { display: none; align-items: center; gap: 2.2rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate-700);
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: var(--navy-900); border-color: var(--gold-500); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--cream);
  z-index: 49;
  overflow-y: auto;
  padding: 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 1rem 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 1.5rem; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  padding: 5rem 0 6rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(201,162,39,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 5% 110%, rgba(31,169,140,0.14), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 2rem; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold-400); }

.hero h1 { color: var(--white); }
.hero h1 em { color: var(--gold-300); font-style: normal; }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.hero-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-anchor {
  position: relative;
  width: min(360px, 100%);
}
@media (max-width: 480px) {
  .hero-photo-anchor { width: min(300px, 78vw); }
}
.hero-badge-frame {
  position: relative;
  width: min(calc(380px * 1.07), 100%);
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, rgba(201,162,39,0.15), rgba(255,255,255,0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.hero-badge-frame img { width: 100%; height: 100%; object-fit: contain; }

.hero-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 35px 70px -22px rgba(0,0,0,0.55);
  border: 1px solid rgba(201,162,39,0.35);
}
.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  pointer-events: none;
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,15,31,0) 55%, rgba(6,15,31,0.55) 100%);
  pointer-events: none;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}

.about-photo-frame {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -22px rgba(11,31,61,0.3);
  border: 1px solid rgba(201,162,39,0.35);
}
.about-photo-frame::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(11,31,61,0.08);
  border-radius: var(--radius);
  pointer-events: none;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}

.hero-orbit-tag {
  position: absolute;
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-orbit-tag svg { width: 16px; height: 16px; color: var(--teal-600); flex-shrink: 0; }
.hero-orbit-tag.t1 { top: 4%; left: -4%; }
.hero-orbit-tag.t2 { bottom: 6%; right: -6%; }
@media (max-width: 480px) {
  .hero-orbit-tag.t1 { left: -2%; }
  .hero-orbit-tag.t2 { right: -2%; }
}

/* ==========================================================================
   Stats strip
   ========================================================================== */

.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.stat-item { text-align: center; padding: 0 0.5rem; }
.stat-item .num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy-900);
  font-weight: 700;
}
.stat-item .num .accent { color: var(--gold-600); }
.stat-item .lbl {
  font-size: 0.78rem;
  color: var(--slate-600);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}
.stat-item .stat-extra {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.stat-item .stat-extra-line {
  font-size: 0.74rem;
  color: var(--slate-600);
  letter-spacing: 0.02em;
}
.stat-item .stat-extra-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gold-100);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.stat-item.featured .num {
  font-size: clamp(2.6rem, 6vw, 3.6rem);
}
.stat-item.featured .num .accent {
  background: linear-gradient(100deg, var(--gold-600) 15%, var(--gold-300) 38%, #fff8e1 50%, var(--gold-300) 62%, var(--gold-600) 85%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: statGoldShimmer 3.2s ease-in-out infinite;
  display: inline-block;
}
@keyframes statGoldShimmer {
  0% { background-position: 160% 0; }
  100% { background-position: -60% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .stat-item.featured .num .accent { animation: none; background-position: 0 0; }
}
.stat-divider { border-left: 1px solid var(--line); }

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.8rem;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.card:hover {
  border-color: var(--gold-400);
  box-shadow: 0 20px 40px -20px rgba(11,31,61,0.18);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--teal-700);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.94rem; line-height: 1.6; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
}
.card-link svg { width: 14px; height: 14px; transition: transform 200ms var(--ease); }
.card:hover .card-link svg { transform: translateX(3px); }

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Why choose / feature rows
   ========================================================================== */

.feature-row {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-row:first-child { padding-top: 0; }
.feature-row:last-child { border-bottom: none; }
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-400);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-row h4 { font-size: 1.02rem; margin-bottom: 0.3rem; font-family: var(--font-sans); font-weight: 600; }
.feature-row p { font-size: 0.92rem; }

/* ==========================================================================
   Timeline (Education & Journey)
   ========================================================================== */

.timeline { position: relative; }
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: -6px;
  width: 1px;
  background: var(--line);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-500);
}
.timeline-item .yr {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.35rem;
}
.timeline-item h4 { font-size: 1.08rem; margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.92rem; }

/* ==========================================================================
   Journey / hospital list
   ========================================================================== */

.journey-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) { .journey-item { grid-template-columns: 200px 1fr; gap: 1.5rem; align-items: baseline; } }
.journey-item:first-child { padding-top: 0; }
.journey-item .org { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy-900); font-weight: 600; }
.journey-item .role { font-size: 0.92rem; color: var(--slate-600); margin-top: 0.2rem; }
.journey-item .period { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; }

/* ==========================================================================
   Location cards
   ========================================================================== */

.loc-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.loc-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal-600);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.loc-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.loc-card .addr { font-size: 0.94rem; color: var(--slate-600); margin-bottom: 1.4rem; }
.loc-meta { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--slate-700); margin-bottom: 0.6rem; }
.loc-meta svg { width: 16px; height: 16px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }
.loc-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 0%, rgba(201,162,39,0.18), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 1rem auto 0; }
.cta-band .hero-actions { justify-content: center; margin-top: 2rem; }
@media (max-width: 480px) {
  .cta-band { padding: 3rem 1.5rem; }
  .cta-band .hero-actions .btn { width: 100%; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.65); }
.footer-top { padding-top: 4.5rem; padding-bottom: 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 2rem; } }
.footer-brand { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.35rem; }
.footer-brand .brand-mark { width: 84px; height: 84px; border-color: rgba(255,255,255,0.2); }
.footer-brand .name { font-family: var(--font-serif); font-weight: 700; font-size: 1.6rem; color: var(--white); }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.1rem;
}
.footer-col a, .footer-col li { display: block; font-size: 0.9rem; margin-bottom: 0.7rem; color: rgba(255,255,255,0.65); transition: color 200ms var(--ease); }
.footer-col a:hover { color: var(--gold-300); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 320px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { border-color: var(--gold-400); background: rgba(201,162,39,0.1); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.82rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.footer-brand-banner { display: flex; justify-content: center; padding: 0 0 2.75rem; }
.footer-brand-banner a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.9rem 1.75rem 0.9rem 1rem;
  box-shadow: 0 22px 50px -16px rgba(0,0,0,0.5);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.footer-brand-banner a:hover { transform: translateY(-3px); box-shadow: 0 26px 55px -14px rgba(0,0,0,0.55); }
.footer-brand-banner .logo-live { width: 54px; height: 54px; display: block; }
.footer-brand-banner .fb-label { display: flex; flex-direction: column; text-align: left; }
.footer-brand-banner .fb-label .name { font-family: var(--font-serif); font-weight: 700; color: var(--navy-900); font-size: 0.98rem; }
.footer-brand-banner .fb-label .sub { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-600); font-weight: 600; margin-top: 2px; }

.footer-credit { display: flex; justify-content: center; padding: 0 0 1.5rem; }
.footer-credit a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 220ms var(--ease);
}
.footer-credit a:hover, .footer-credit a:focus-visible { opacity: 1; }
.footer-credit .fc-mark { width: 20px; height: 20px; display: block; animation: fc-glow 3.6s ease-in-out infinite; }
.footer-credit .fc-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.footer-credit .fc-text { font-size: 0.72rem; letter-spacing: 0.03em; color: rgba(255,255,255,0.62); animation: fc-text-pulse 3.6s ease-in-out infinite; }
.footer-credit .fc-text strong { color: rgba(255,255,255,0.92); font-weight: 600; }
@keyframes fc-glow {
  0%, 100% { filter: drop-shadow(0 0 1px rgba(255,255,255,0.25)); }
  50% { filter: drop-shadow(0 0 6px rgba(255,255,255,0.8)) drop-shadow(0 0 10px rgba(201,162,39,0.45)); }
}
@keyframes fc-text-pulse {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-credit .fc-mark, .footer-credit .fc-text { animation: none; }
}

.disclaimer-bar {
  background: var(--teal-100);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.disclaimer-bar p { font-size: 0.82rem; color: var(--teal-700); text-align: center; line-height: 1.6; }
.disclaimer-bar strong { color: var(--navy-900); }

/* ==========================================================================
   Page-specific responsive grids (About, etc.)
   ========================================================================== */

.about-grid, .philosophy-grid, .spec-detail-grid, .contact-grid, .loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  .philosophy-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
  .spec-detail-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; }
  .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 3rem; }
  .loc-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* ==========================================================================
   Testimonial Slider
   ========================================================================== */

.testi-rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.testi-rating-line .stars { display: inline-flex; gap: 2px; color: var(--gold-500); }
.testi-rating-line .stars svg { width: 16px; height: 16px; }
.testi-rating-line .score { font-family: var(--font-serif); font-weight: 700; color: var(--navy-900); }
.testi-rating-line .src { font-size: 0.82rem; color: var(--slate-600); }
.testi-rating-line a { color: var(--teal-600); font-weight: 600; }
.testi-rating-line a:hover { text-decoration: underline; }

.testi-slider {
  position: relative;
  max-width: 760px;
  margin: 2.75rem auto 0;
}
.testi-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.testi-track {
  display: flex;
  width: 100%;
  transition: transform 600ms var(--ease);
  will-change: transform;
}
.testi-card {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  min-height: 300px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 2.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testi-quote-icon { width: 34px; height: 34px; color: var(--gold-400); margin-bottom: 1.25rem; }
.testi-card .stars { display: inline-flex; gap: 3px; color: var(--gold-500); margin-bottom: 1.1rem; }
.testi-card .stars svg { width: 17px; height: 17px; }
.testi-card p.quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--navy-900);
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.testi-card .who { font-weight: 700; font-size: 0.95rem; color: var(--navy-900); }
.testi-card .meta { font-size: 0.8rem; color: var(--slate-600); margin-top: 0.25rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.testi-card .meta svg { width: 13px; height: 13px; }

.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease);
}
.testi-arrow:hover { border-color: var(--gold-500); background: var(--gold-100); }
.testi-arrow svg { width: 19px; height: 19px; }
.testi-arrow.prev { left: -8px; }
.testi-arrow.next { right: -8px; }
@media (min-width: 860px) {
  .testi-arrow.prev { left: -60px; }
  .testi-arrow.next { right: -60px; }
}

.testi-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.75rem; }
.testi-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 200ms var(--ease), transform 200ms var(--ease);
}
.testi-dots button.active { background: var(--gold-500); transform: scale(1.3); }

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.blog-card:hover { border-color: var(--gold-400); box-shadow: 0 20px 40px -22px rgba(11,31,61,0.2); transform: translateY(-3px); }
.blog-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-thumb svg { width: 46%; height: 46%; opacity: 0.9; }
.blog-thumb .cat-pill {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(255,255,255,0.92);
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.blog-body { padding: 1.6rem 1.5rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 0.9rem; font-size: 0.76rem; color: var(--slate-600); margin-bottom: 0.75rem; align-items: center; }
.blog-meta svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: 3px; }
.blog-body h3 { font-size: 1.12rem; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-body p { font-size: 0.9rem; line-height: 1.6; flex: 1; }
.blog-card-link { margin-top: 1.1rem; font-size: 0.85rem; font-weight: 600; color: var(--navy-900); display: inline-flex; align-items: center; gap: 0.4rem; }
.blog-card-link svg { width: 14px; height: 14px; transition: transform 200ms var(--ease); }
.blog-card:hover .blog-card-link svg { transform: translateX(3px); }

.blog-filter { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.blog-filter button {
  font-size: 0.82rem; font-weight: 600; padding: 0.55rem 1.1rem;
  border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--slate-700);
  cursor: pointer; transition: all 200ms var(--ease);
}
.blog-filter button:hover { border-color: var(--gold-400); }
.blog-filter button.active { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }

/* Article page */
.article-hero { background: var(--navy-900); color: var(--white); padding: 3rem 0 3.5rem; }
.article-meta-row { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.article-meta-row span { display: flex; align-items: center; gap: 0.4rem; }
.article-meta-row svg { width: 15px; height: 15px; color: var(--gold-300); }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--slate-700);
}
.article-body p { margin-bottom: 1.4rem; color: var(--slate-700); font-size: 1.06rem; line-height: 1.8; }
.article-body h2 { font-size: 1.55rem; margin: 2.5rem 0 1rem; color: var(--navy-900); }
.article-body h3 { font-size: 1.2rem; margin: 2rem 0 0.85rem; color: var(--navy-900); }
.article-body ul, .article-body ol { margin: 0 0 1.4rem; padding-left: 1.4rem; color: var(--slate-700); }
.article-body li { margin-bottom: 0.6rem; line-height: 1.7; }
.article-body strong { color: var(--navy-900); }
.article-body blockquote {
  border-left: 3px solid var(--gold-500);
  padding: 0.3rem 0 0.3rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy-900);
  font-style: italic;
}
.article-callout {
  background: var(--teal-100);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--teal-700);
  line-height: 1.7;
}
.article-callout strong { color: var(--navy-900); }

.related-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

.share-row { display: flex; align-items: center; gap: 0.9rem; margin: 1.75rem 0 0; padding: 1.25rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; }
.share-row .lbl { font-size: 0.82rem; font-weight: 600; color: var(--slate-600); margin-right: 0.2rem; }

.share-chip { display: inline-flex; align-items: center; gap: 0.55rem; border: none; background: none; cursor: pointer; padding: 0.2rem 0.5rem 0.2rem 0.2rem; border-radius: 999px; transition: background 180ms var(--ease); text-decoration: none; }
.share-chip:hover { background: var(--cream); }
.share-chip .chip-icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.share-chip .chip-icon svg { width: 18px; height: 18px; }
.share-chip .chip-label { font-size: 0.84rem; font-weight: 600; color: var(--navy-900); }
.share-chip-whatsapp .chip-icon { background: #25d366; }
.share-chip-instagram .chip-icon { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }

.share-tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 0.6rem;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  max-width: 240px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  z-index: 5;
}
.share-tooltip.show { opacity: 1; transform: translateY(0); }

.share-row .share-count { font-size: 0.82rem; color: var(--slate-600); margin-left: 0.1rem; }

/* ==========================================================================
   Utility
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.divider-motif { display: flex; align-items: center; gap: 0.75rem; color: var(--gold-500); }
.divider-motif .line { flex: 1; height: 1px; background: var(--line); }

.pill { display: inline-flex; align-items: center; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 999px; }
.pill-teal { background: var(--teal-100); color: var(--teal-700); }
.pill-gold { background: var(--gold-100); color: var(--gold-600); }

.breadcrumb { font-size: 0.82rem; color: var(--slate-600); display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--navy-900); }
.breadcrumb .sep { color: var(--slate-400); }

.motif-line { position: absolute; opacity: 0.08; pointer-events: none; }

.table-alt { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table-alt th, .table-alt td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); }
.table-alt th { font-family: var(--font-sans); font-weight: 600; color: var(--navy-900); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.table-alt td { color: var(--slate-600); }

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--ease), transform 250ms var(--ease);
  z-index: 40;
  cursor: pointer;
  border: none;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top svg { width: 18px; height: 18px; }

/* ==========================================================================
   Preloader — premium one-shot intro (homepage only)
   ========================================================================== */

body.preloader-lock { overflow: hidden; }

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloaderFadeOut 500ms ease 2500ms forwards;
}
.preloader-logo-frame {
  position: relative;
  width: 190px;
  height: 190px;
}
.preloader-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transform: scale(0.82);
  animation: preloaderLogoReveal 550ms cubic-bezier(0.16, 1, 0.3, 1) 900ms forwards;
}
.preloader-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: url("../images/logo-gold-mask.png");
  mask-image: url("../images/logo-gold-mask.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.6) 47%, rgba(255,250,222,0.92) 50%, rgba(255,255,255,0.6) 53%, transparent 62%);
  background-size: 320% 320%;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  opacity: 0;
  animation: preloaderShimmerOnce 700ms ease-in-out 1550ms forwards;
}
.preloader-flow {
  position: absolute;
  left: 34.29%;
  top: 48.36%;
  width: 28.07%;
  height: 14.16%;
  pointer-events: none;
  -webkit-mask-image: url("../images/logo-teal-mask-crop.png");
  mask-image: url("../images/logo-teal-mask-crop.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: radial-gradient(ellipse 16% 65% at 50% 50%, rgba(255,255,255,0.95) 0%, rgba(170,255,232,0.9) 30%, rgba(110,240,210,0.45) 55%, transparent 78%);
  background-size: 34% 240%;
  background-repeat: no-repeat;
  background-position: -25% 50%;
  mix-blend-mode: screen;
  opacity: 0;
  animation: preloaderFlowOnce 550ms ease-in-out 1950ms forwards;
}

@keyframes preloaderLogoReveal {
  0% { opacity: 0; transform: scale(0.82); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes preloaderShimmerOnce {
  0% { background-position: -130% -60%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { background-position: 130% 60%; opacity: 0; }
}
@keyframes preloaderFlowOnce {
  0% { background-position: -25% 50%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { background-position: 135% 50%; opacity: 0; }
}
@keyframes preloaderFadeOut {
  0% { opacity: 1; pointer-events: none; }
  100% { opacity: 0; visibility: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  #preloader { animation: preloaderFadeOut 350ms ease 350ms forwards; }
  .preloader-logo-frame img { animation: none; opacity: 1; transform: scale(1); }
  .preloader-shimmer, .preloader-flow { display: none; }
}

/* ==========================================================================
   CMS-driven blog: likes, comments, generic form fields
   ========================================================================== */

.form-field { margin-bottom: 1.4rem; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy-900); margin-bottom: 0.5rem; }
.form-field .req { color: var(--gold-600); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--font-sans); font-size: 0.95rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink);
  transition: border-color 200ms var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal-500); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.4rem 1.2rem; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }

.like-row { margin: 2rem 0 0; }
.like-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1.4rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); cursor: pointer; font-weight: 600; font-size: 0.9rem; color: var(--navy-900);
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease);
}
.like-btn svg { width: 18px; height: 18px; color: #d64550; }
.like-btn:hover:not(:disabled) { border-color: #d64550; background: #fff0f1; }
.like-btn:disabled { color: #d64550; border-color: #d64550; background: #fff0f1; cursor: default; opacity: 0.9; }
.like-btn .like-count { font-weight: 700; }

.comment { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.comment-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.comment-author { font-weight: 700; font-size: 0.92rem; color: var(--navy-900); }
.comment-author-admin { color: var(--teal-700); }
.admin-tag { display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; background: var(--teal-100); color: var(--teal-700); padding: 0.15rem 0.5rem; border-radius: 999px; margin-left: 0.4rem; vertical-align: middle; }
.comment-date { font-size: 0.78rem; color: var(--slate-400); }
.comment-body { font-size: 0.95rem; line-height: 1.65; color: var(--slate-700); white-space: pre-wrap; }
.comment-reply { margin-left: clamp(0.5rem, 4vw, 2rem); margin-top: 1rem; padding: 1.25rem; background: var(--cream); border-radius: var(--radius); border-bottom: none; }

.comments-see-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.25rem 0 1.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.comments-see-more:hover { border-color: var(--gold-400); background: var(--cream); }

.comment-form-wrap { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.comment-form textarea { resize: vertical; }
.comment-form-status { font-size: 0.85rem; margin: 0 0 0.9rem; min-height: 0; }
.comment-form-status.error { color: #c0392b; }
.comment-form-status.success { color: var(--teal-700); }

.comment.comment-new { animation: comment-pop 480ms var(--ease); }
@keyframes comment-pop {
  from { opacity: 0; transform: translateY(-8px); background: var(--cream); }
  to { opacity: 1; transform: translateY(0); background: transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .comment.comment-new { animation: none; }
}
