﻿/* ============================================================
   DR. JACO SADLER — MAIN STYLESHEET
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
--c-deep:     #126f8d;
--c-mid:      #4f99ae;
--c-soft:     #c7e2ea;
--c-mist:     #eaf4f7;
--c-ink:      #1a2b31;
--c-ink-soft: #3e5a66;
--c-white:    #ffffff;
--c-paper:    #f5fbfd;

--shadow-sm: 0 2px 10px rgba(18, 111, 141, 0.09);
--shadow-md: 0 8px 30px rgba(18, 111, 141, 0.13);
--shadow-lg: 0 20px 52px rgba(18, 111, 141, 0.18);

--r-xl:  28px;
--r-lg:  20px;
--r-md:  14px;
--r-sm:  8px;

--container: 1180px;
--gap: 6rem;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
font-family: "Source Sans 3", "Segoe UI", sans-serif;
color: var(--c-ink);
background: var(--c-white);
line-height: 1.65;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}

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

/* === SKIP LINK === */
.skip-link {
position: absolute; left: -999px; top: 0;
background: var(--c-white); color: var(--c-deep);
padding: 0.6rem 1rem; border-radius: 0 0 10px 0;
font-weight: 700; z-index: 999;
}
.skip-link:focus { left: 0; }

/* === CONTAINER === */
.container {
width: min(var(--container), calc(100% - 2.5rem));
margin-inline: auto;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
header {
position: sticky; top: 0; z-index: 40;
background: rgba(255, 255, 255, 0.93);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border-bottom: 1px solid rgba(18, 111, 141, 0.09);
}

.nav {
height: 80px;
display: flex; align-items: center;
justify-content: space-between; gap: 1.5rem;
}

.brand {
display: flex; align-items: center;
gap: 0.85rem; text-decoration: none;
color: inherit; flex-shrink: 0;
}

.logo-wrap {
width: 64px; height: 64px;
border-radius: 10px; overflow: hidden;
background: var(--c-white);
border: 1px solid rgba(79, 153, 174, 0.22);
box-shadow: var(--shadow-sm);
display: grid; place-items: center;
flex-shrink: 0;
}

.logo-wrap img {
width: 100%; height: 100%;
object-fit: contain;
transform: scale(1.08);
}

.logo-fallback {
font-family: "DM Serif Display", Georgia, serif;
color: var(--c-deep); font-size: 1.5rem; display: none;
}

.brand-text h1 {
font-family: "DM Serif Display", Georgia, serif;
font-size: clamp(1.1rem, 0.95rem + 0.55vw, 1.4rem);
color: var(--c-deep); line-height: 1.15;
}

.brand-text p {
font-size: 0.8rem; color: #5a7a86;
font-weight: 600; letter-spacing: 0.03em;
}

nav ul { list-style: none; display: flex; gap: 0.1rem; align-items: center; }

nav a {
text-decoration: none; color: var(--c-ink-soft);
font-weight: 600; font-size: 0.92rem;
padding: 0.4rem 0.8rem; border-radius: var(--r-sm);
transition: color 0.18s ease, background 0.18s ease;
}

nav a:hover, nav a:focus-visible {
color: var(--c-deep); background: var(--c-mist);
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
display: none;
}

/* Hide desktop nav CTA on mobile (added via class) */
.nav-cta { display: inline-flex; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
display: inline-flex; align-items: center;
justify-content: center; gap: 0.4rem;
border: 0; border-radius: var(--r-md);
text-decoration: none; font-weight: 700;
font-size: 0.92rem; letter-spacing: 0.02em;
padding: 0.72rem 1.4rem; cursor: pointer;
transition: transform 0.18s ease, box-shadow 0.18s ease;
white-space: nowrap;
}

.btn-primary {
color: var(--c-white);
background: linear-gradient(130deg, #0d7898, var(--c-deep));
box-shadow: 0 6px 18px rgba(18, 111, 141, 0.32);
}
.btn-primary:hover, .btn-primary:focus-visible {
transform: translateY(-2px);
box-shadow: 0 10px 26px rgba(18, 111, 141, 0.42);
}

.btn-secondary {
color: var(--c-deep); background: var(--c-white);
border: 1.5px solid rgba(79, 153, 174, 0.38);
box-shadow: var(--shadow-sm);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
transform: translateY(-2px);
background: var(--c-mist); border-color: var(--c-mid);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
padding: 5.5rem 0 5rem;
background: linear-gradient(155deg, #f0f9fc 0%, #fafcfd 50%, #edf6f9 100%);
position: relative; overflow: hidden;
}

.hero::before {
content: ""; position: absolute;
top: -110px; right: -110px;
width: 540px; height: 540px; border-radius: 50%;
background: radial-gradient(circle, rgba(79,153,174,0.13), transparent 65%);
pointer-events: none;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 0.8fr;
gap: 4rem; align-items: center;
position: relative; z-index: 1;
}

.eyebrow {
display: inline-flex; align-items: center; gap: 0.4rem;
color: var(--c-deep); letter-spacing: 0.09em;
text-transform: uppercase; font-size: 0.72rem;
font-weight: 700; background: rgba(18, 111, 141, 0.07);
border: 1px solid rgba(18, 111, 141, 0.15);
border-radius: 999px; padding: 0.28rem 0.85rem;
margin-bottom: 1.2rem;
}

.hero h2 {
font-family: "DM Serif Display", Georgia, serif;
font-size: clamp(2.2rem, 1.7rem + 2.5vw, 3.9rem);
line-height: 1.06; color: #0d2b35; margin-bottom: 1.2rem;
}

.hero-copy > p {
font-size: clamp(1rem, 0.95rem + 0.2vw, 1.12rem);
color: var(--c-ink-soft); max-width: 50ch; line-height: 1.7;
}

.cta-row {
margin-top: 2rem;
display: flex; flex-wrap: wrap;
gap: 0.8rem; align-items: center;
}

.hero-card {
background: var(--c-white);
border: 1px solid rgba(79, 153, 174, 0.2);
border-radius: var(--r-xl); padding: 0.85rem;
box-shadow: var(--shadow-lg);
}

.hero-card-mobile { display: none; }

.hero-image {
border-radius: calc(var(--r-xl) - 5px);
overflow: hidden; aspect-ratio: 4 / 5;
background: linear-gradient(140deg, #d9ebf1, #c2dfe9);
}

.hero-image img {
width: 100%; height: 100%;
object-fit: cover; object-position: top center;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
background: var(--c-white);
border-bottom: 1px solid rgba(79, 153, 174, 0.12);
padding: 2.2rem 0;
}

.stats-row {
display: flex; justify-content: space-evenly;
flex-wrap: wrap; gap: 1.5rem;
}

.stat-item { text-align: center; }

.stat-num {
display: block;
font-family: "DM Serif Display", Georgia, serif;
font-size: clamp(1.8rem, 1.5rem + 1vw, 2.5rem);
color: var(--c-deep); line-height: 1;
}

.stat-label {
display: block; font-size: 0.82rem; font-weight: 600;
color: var(--c-ink-soft); letter-spacing: 0.04em; margin-top: 0.3rem;
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
section { padding: var(--gap) 0; }

section.alt-bg {
background: linear-gradient(180deg, var(--c-mist) 0%, var(--c-paper) 100%);
}

.section-head { margin-bottom: 2.8rem; }

.section-head h3 {
font-family: "DM Serif Display", Georgia, serif;
font-size: clamp(1.75rem, 1.45rem + 1.2vw, 2.5rem);
color: #0d2b35; margin-bottom: 0.6rem; line-height: 1.15;
}

.section-head p {
color: var(--c-ink-soft); max-width: 62ch;
font-size: 1.04rem; line-height: 1.68;
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.5rem;
}

.service {
background: var(--c-white);
border-radius: var(--r-lg); padding: 2rem 1.7rem;
border: 1px solid rgba(79, 153, 174, 0.15);
box-shadow: var(--shadow-md);
position: relative; overflow: hidden;
transform: translateY(20px); opacity: 0;
animation: rise 0.7s ease forwards;
transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service::before {
content: ""; position: absolute;
top: 0; left: 0; right: 0; height: 4px;
background: linear-gradient(90deg, var(--c-deep), var(--c-mid));
border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service:nth-child(2) { animation-delay: 0.12s; }
.service:nth-child(3) { animation-delay: 0.24s; }

.service-icon {
width: 46px; height: 46px;
background: var(--c-mist); border-radius: 12px;
display: grid; place-items: center;
margin-bottom: 1.3rem; color: var(--c-deep);
}

.service-icon svg {
width: 22px; height: 22px;
stroke: currentColor; fill: none;
stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.service h4 {
font-size: 1.08rem; font-weight: 700;
color: #0d2b35; margin-bottom: 0.55rem;
}

.service p { color: var(--c-ink-soft); font-size: 0.97rem; line-height: 1.65; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.5rem;
}

.team-card {
background: var(--c-white);
border-radius: var(--r-lg); overflow: hidden;
border: 1px solid rgba(79, 153, 174, 0.18);
box-shadow: var(--shadow-md);
transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Portrait ratio — keeps faces fully visible */
.team-image {
width: 100%; aspect-ratio: 3 / 4;
overflow: hidden;
background: linear-gradient(140deg, #d8eaf0, #c5dfe9);
display: block;
}

.team-image img {
width: 100%; height: 100%;
object-fit: cover;
object-position: top center;
display: block;
}

.fallback-tag {
font-size: 0.87rem; color: #3a6f80;
font-weight: 600; text-align: center;
padding: 1rem; display: none;
}

.team-body {
padding: 1.3rem 1.5rem 1.5rem;
border-top: 1px solid rgba(79, 153, 174, 0.1);
}

.team-body h4 {
font-size: 1.06rem; font-weight: 700;
color: #0d2b35; margin-bottom: 0.28rem;
}

.team-body p { color: var(--c-ink-soft); font-size: 0.93rem; line-height: 1.55; }

/* ============================================================
   LOCATION / MAP
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 1.8rem;
  align-items: stretch;
  min-height: 300px;
}

.map-wrap {
  display: block;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(79, 153, 174, 0.22);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  text-decoration: none;
  min-height: 300px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  pointer-events: none; /* clicks pass through to the <a> */
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.22s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
}

.map-wrap:hover .map-overlay,
.map-wrap:focus-visible .map-overlay {
  background: rgba(10, 60, 78, 0.08);
}

.map-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--c-deep);
  color: var(--c-white);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(18, 111, 141, 0.38);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.map-wrap:hover .map-cta-badge,
.map-wrap:focus-visible .map-cta-badge {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18, 111, 141, 0.48);
}

.map-cta-badge svg {
  width: 14px; height: 14px;
  fill: var(--c-white);
  flex-shrink: 0;
}

/* Location details panel */
.location-details {
  background: var(--c-white);
  border: 1px solid rgba(79, 153, 174, 0.18);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.location-details h4 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.35rem;
  color: #0d2b35;
  line-height: 1.2;
}

.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.97rem;
  color: var(--c-ink-soft);
  line-height: 1.45;
}

.location-list li svg {
  width: 17px; height: 17px;
  stroke: var(--c-deep); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; margin-top: 1px;
}

/* Pin icon is fill-based, not stroke-based */
.location-list li:last-child svg {
  fill: var(--c-deep); stroke: none;
}

.location-list li a {
  color: var(--c-deep);
  font-weight: 600;
  text-decoration: none;
}

.location-list li a:hover { text-decoration: underline; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding-bottom: 6rem; }

.contact-card {
display: grid;
grid-template-columns: 1fr auto;
gap: 2.5rem; align-items: center;
background: linear-gradient(130deg, #0a6478, var(--c-deep) 50%, #0e8099);
color: var(--c-white);
border-radius: var(--r-xl);
padding: 3rem 3.5rem;
box-shadow: 0 22px 54px rgba(18, 111, 141, 0.3);
position: relative; overflow: hidden;
}

.contact-card::before {
content: ""; position: absolute;
top: -70px; right: -70px;
width: 260px; height: 260px; border-radius: 50%;
background: rgba(255, 255, 255, 0.06); pointer-events: none;
}

.contact-card h3 {
font-family: "DM Serif Display", Georgia, serif;
font-size: clamp(1.55rem, 1.3rem + 1vw, 2.2rem);
margin-bottom: 0.5rem; position: relative; z-index: 1;
}

.contact-card > div > p {
opacity: 0.9; font-size: 1rem; max-width: 54ch;
position: relative; z-index: 1;
}

.contact-line {
display: flex; flex-wrap: wrap;
gap: 0.5rem 0.7rem; margin-top: 1.2rem;
position: relative; z-index: 1;
}

.contact-line span,
.contact-line a {
background: rgba(255, 255, 255, 0.12);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: var(--r-sm);
padding: 0.38rem 0.9rem;
font-weight: 600; font-size: 0.88rem;
}

.contact-line a {
color: var(--c-white);
text-decoration: none;
}

.contact-line a:hover { text-decoration: underline; }

.contact-card .btn-secondary {
background: var(--c-white); color: var(--c-deep);
border: none; padding: 0.9rem 2rem; font-size: 1rem;
flex-shrink: 0; white-space: nowrap;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
position: relative; z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
background: #0c2730;
color: rgba(255, 255, 255, 0.58);
padding: 2.2rem 0;
}

.footer-inner {
display: flex;
justify-content: space-between; align-items: center;
flex-wrap: wrap; gap: 0.8rem;
}

footer p { font-size: 0.88rem; }

footer a {
color: rgba(255, 255, 255, 0.78);
text-decoration: none; font-weight: 600;
transition: color 0.18s ease;
}

footer a:hover { color: var(--c-soft); }

.cookie-settings-link {
background: transparent;
border: 0;
padding: 0;
color: rgba(255, 255, 255, 0.78);
font: inherit;
font-weight: 600;
text-decoration: underline;
text-underline-offset: 2px;
cursor: pointer;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
color: var(--c-soft);
}

/* ============================================================
  COOKIE CONSENT
  ============================================================ */
.cookie-banner {
position: fixed;
left: 1rem;
right: 1rem;
bottom: 1rem;
z-index: 80;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
background: rgba(12, 39, 48, 0.96);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
border: 1px solid rgba(255, 255, 255, 0.16);
border-radius: 14px;
padding: 0.9rem 1rem;
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.cookie-banner[hidden] {
display: none !important;
}

.cookie-banner p {
margin: 0;
color: rgba(255, 255, 255, 0.92);
font-size: 0.92rem;
line-height: 1.45;
}

.cookie-banner a {
color: var(--c-soft);
font-weight: 700;
}

.cookie-actions {
display: flex;
gap: 0.55rem;
flex-shrink: 0;
}

.cookie-btn {
border: 1px solid transparent;
border-radius: 999px;
padding: 0.48rem 0.95rem;
font: inherit;
font-size: 0.86rem;
font-weight: 700;
cursor: pointer;
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
transform: translateY(-1px);
}

.cookie-btn-muted {
background: transparent;
color: rgba(255, 255, 255, 0.9);
border-color: rgba(255, 255, 255, 0.4);
}

.cookie-btn-accept {
color: var(--c-white);
background: linear-gradient(130deg, #0d7898, var(--c-deep));
box-shadow: 0 5px 14px rgba(18, 111, 141, 0.35);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
position: absolute; width: 1px; height: 1px;
padding: 0; margin: -1px; overflow: hidden;
clip: rect(0, 0, 0, 0); border: 0;
}

.fade-in { transform: translateY(14px); opacity: 0; animation: fade 0.78s ease forwards; }
.fade-in-delay { animation-delay: 0.2s; }

@keyframes fade { to { transform: translateY(0); opacity: 1; } }
@keyframes rise { to { transform: translateY(0); opacity: 1; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Tablet / medium (≤ 960 px) --- */
@media (max-width: 960px) {
:root { --gap: 5rem; }

/* Hide desktop CTA, show hamburger */
.nav-cta { display: none !important; }

.nav-toggle {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 44px; height: 44px;
background: transparent;
border: 1.5px solid rgba(79, 153, 174, 0.35);
border-radius: var(--r-sm);
cursor: pointer;
padding: 10px;
gap: 5px;
flex-shrink: 0;
}

.nav-toggle span {
display: block;
width: 20px; height: 2px;
background: var(--c-deep);
border-radius: 2px;
transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav drawer */
nav ul {
display: flex;
flex-direction: column;
position: fixed;
top: 80px; left: 0; right: 0;
background: var(--c-white);
padding: 0.5rem 1.5rem 1.5rem;
gap: 0.1rem;
border-bottom: 1px solid rgba(18, 111, 141, 0.1);
box-shadow: 0 10px 28px rgba(18, 111, 141, 0.13);
z-index: 39;
visibility: hidden;
opacity: 0;
transform: translateY(-8px);
transition: visibility 0s 0.22s, opacity 0.22s ease, transform 0.22s ease;
}

nav ul.is-open {
visibility: visible;
opacity: 1;
transform: translateY(0);
transition-delay: 0s;
}

nav a {
display: block;
padding: 0.85rem 1rem;
font-size: 1.05rem;
border-bottom: 1px solid rgba(79, 153, 174, 0.08);
border-radius: 0;
}

nav li:last-child a { border-bottom: none; }

.hero-grid { grid-template-columns: 1fr; gap: 2rem; }
.hero-card { max-width: 100%; }
.hero-image { aspect-ratio: 4 / 3; }

.service-grid,
.team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.contact-card { grid-template-columns: 1fr; padding: 2.5rem 2rem; }
.contact-card .btn-secondary { width: fit-content; }

.location-grid { grid-template-columns: 1fr; }
.map-wrap,
.map-wrap iframe { min-height: 280px; }
}

/* --- Mobile (≤ 600 px) --- */
@media (max-width: 600px) {
:root { --gap: 3.5rem; }

.container { width: calc(100% - 1.5rem); }

.logo-wrap { width: 54px; height: 54px; }

.hero { padding: 2.8rem 0 2.5rem; }
.hero h2 { font-size: clamp(1.85rem, 8vw, 2.4rem); margin-bottom: 0.8rem; }
.hero-grid > .hero-card:not(.hero-card-mobile) { display: none; }
.hero-card-mobile {
display: block;
margin: 0.2rem 0 1rem;
padding: 0.6rem;
}
.hero-card-mobile .hero-image { aspect-ratio: 4 / 3; }
.hero-copy > p { max-width: 100%; }
.cta-row { gap: 0.6rem; }
.cta-row .btn { flex: 1; min-width: 0; justify-content: center; }

.eyebrow { font-size: 0.68rem; }

.stats-bar { padding: 1.6rem 0; }
.stats-row { gap: 1rem 1.5rem; justify-content: center; }
.stat-num { font-size: 1.65rem; }
.stat-label { font-size: 0.78rem; }

.section-head { margin-bottom: 2rem; }
.section-head h3 { font-size: clamp(1.5rem, 6vw, 2rem); }

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

.service { padding: 1.5rem 1.3rem; }

.contact-card {
padding: 1.8rem 1.2rem;
border-radius: var(--r-lg);
}
.contact-card h3 { font-size: 1.45rem; }
.contact-line span { font-size: 0.82rem; padding: 0.3rem 0.65rem; }
.contact-card .btn-secondary { width: 100%; }

.map-wrap,
.map-wrap iframe { min-height: 240px; }

.footer-inner { flex-direction: column; text-align: center; gap: 0.5rem; }

.cookie-banner {
flex-direction: column;
align-items: flex-start;
}

.cookie-actions {
width: 100%;
}

.cookie-btn {
flex: 1;
text-align: center;
}

.policy-card { padding: 1.5rem; }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.policy-main { padding: 2.5rem 0 6rem; }
.policy-wrap { max-width: 860px; }

.policy-title {
font-family: "DM Serif Display", Georgia, serif;
font-size: clamp(2rem, 1.6rem + 1.2vw, 2.9rem);
line-height: 1.1; color: #0d2b35; margin-bottom: 0.5rem;
}

.policy-updated { color: var(--c-ink-soft); margin-bottom: 2rem; font-size: 0.93rem; }

.policy-card {
background: var(--c-white);
border: 1px solid rgba(79, 153, 174, 0.18);
border-radius: var(--r-lg); box-shadow: var(--shadow-md);
padding: 2.5rem;
}

.policy-card h3 {
font-size: 1.08rem; font-weight: 700;
color: var(--c-deep); margin-top: 1.8rem; margin-bottom: 0.45rem;
}

.policy-card h3:first-child { margin-top: 0; }
.policy-card p, .policy-card li { color: var(--c-ink-soft); line-height: 1.7; }
.policy-card ul { padding-left: 1.3rem; margin: 0.35rem 0; }
.policy-card li { margin-bottom: 0.3rem; }
