/* ==========================================================================
   DATIX MED CLINIC — stylesheet
   Design tokens: porcelain background, magenta brand, indigo accent —
   drawn from the clinic's own photography (rgb(170,30,103) / rgb(59,67,130)).
   Signature motif: the "smile arc" —
   a shallow curve used as underline, divider and image mask throughout,
   echoing the clinic motto "Zâmbește pentru tine".
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* Color */
  --porcelain: #FAF6F4;
  --porcelain-dim: #F1E7E7;
  --ink: #221F30;
  --ink-soft: #5A5568;
  --emerald: #AA1E67;
  --emerald-deep: #7C1650;
  --emerald-tint: #F7E2ED;
  --gold: #3B4382;
  --gold-deep: #282E5C;
  --blush: #CDD0E9;
  --blush-deep: #3B4382;
  --line: #E3D6D9;
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius-card: 18px;
  --radius-btn: 999px;
  --shadow-card: 0 12px 30px -18px rgba(29, 42, 38, 0.35);
  --shadow-lift: 0 20px 40px -20px rgba(29, 42, 38, 0.45);
}

/* ------------------------------ Reset ---------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--porcelain);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
h1, h2, h3, h4{ font-family: var(--font-display); margin: 0 0 .5em; color: var(--ink); font-weight: 600; }
p{ margin: 0 0 1em; }
.container{ max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Skip link for keyboard users */
.skip-link{
  position: absolute; left: -999px; top: 0; background: var(--emerald); color: var(--white);
  padding: 12px 18px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

:focus-visible{ outline: 3px solid var(--gold); outline-offset: 2px; }

/* ------------------------------ Signature: smile arc -------------------- */
.arc-underline{
  display: block;
  width: 84px;
  height: 18px;
  margin: 14px auto 0 0;
}
.arc-underline path{ fill: none; stroke: var(--gold); stroke-width: 4; stroke-linecap: round; }
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}
.eyebrow::before{
  content: "";
  width: 22px; height: 2px; background: var(--gold); display: inline-block;
}

/* Section shell */
.section{ padding: 88px 0; }
.section--tight{ padding: 64px 0; }
.section--porcelain-dim{ background: var(--porcelain-dim); }
.section--ink{ background: var(--ink); color: var(--porcelain); }
.section--ink h2, .section--ink h3{ color: var(--porcelain); }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head p{ color: var(--ink-soft); font-size: 1.05rem; }
.section--ink .section-head p{ color: #C9D6D0; }

/* Smile-arc divider between sections */
.smile-divider{ display: block; width: 100%; height: 64px; }
.smile-divider path{ fill: var(--porcelain); }
.smile-divider--to-dim path{ fill: var(--porcelain-dim); }
.smile-divider--to-ink path{ fill: var(--ink); }
.smile-divider--to-porcelain path{ fill: var(--porcelain); }

/* ------------------------------ Buttons ---------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--emerald); color: var(--white); box-shadow: var(--shadow-card); }
.btn-primary:hover{ background: var(--emerald-deep); box-shadow: var(--shadow-lift); }
.btn-gold{ background: var(--gold); color: var(--ink); box-shadow: var(--shadow-card); }
.btn-gold:hover{ background: var(--gold-deep); color: var(--white); }
.btn-outline{ background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--porcelain); }
.btn-outline-light{ background: transparent; border-color: rgba(250,246,244,.6); color: var(--porcelain); }
.btn-outline-light:hover{ background: var(--porcelain); color: var(--ink); }
.btn-block{ width: 100%; }

.btn-row{ display: flex; flex-wrap: wrap; gap: 16px; }

/* ------------------------------ Header ----------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand-mark{
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--emerald);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg{ width: 22px; height: 22px; }
.brand-text{ font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; line-height: 1.1; }
.brand-text span{ display: block; font-family: var(--font-body); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }

.main-nav{ display: flex; align-items: center; gap: 6px; }
.main-nav a{
  padding: 10px 14px;
  font-size: .95rem;
  font-weight: 500;
  border-radius: var(--radius-btn);
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover{ background: var(--emerald-tint); color: var(--emerald-deep); }
.main-nav .dropdown{ position: relative; }
.main-nav .dropdown-panel{
  position: absolute; top: 100%; left: 0; background: var(--white);
  border: 1px solid var(--line); border-radius: 12px; padding: 8px;
  min-width: 220px; box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.main-nav .dropdown:hover .dropdown-panel,
.main-nav .dropdown:focus-within .dropdown-panel{
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-panel a{ display: block; border-radius: 8px; }

.nav-actions{ display: flex; align-items: center; gap: 14px; }
.nav-cta{ padding: 12px 22px; font-size: .92rem; }

.hamburger{
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
}
.hamburger span, .hamburger::before, .hamburger::after{
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger span{ margin: 5px 0; }

/* Mobile nav drawer */
.mobile-nav{
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--porcelain);
}
.mobile-nav a{
  padding: 14px 8px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn{ margin-top: 12px; }
.site-header.nav-open .mobile-nav{ display: flex; }
.site-header.nav-open .hamburger span{ opacity: 0; }
.site-header.nav-open .hamburger::before{ transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .hamburger::after{ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px){
  .main-nav, .nav-actions .nav-cta{ display: none; }
  .hamburger{ display: flex; }
}

/* ------------------------------ Hero -------------------------------------- */
.hero{
  padding: 64px 0 0;
  background: linear-gradient(180deg, var(--porcelain) 0%, var(--porcelain-dim) 100%);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow{ margin-bottom: 18px; }
.hero-copy h1{
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  max-width: 15ch;
}
.hero-copy p{ font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; }
.hero-figures{
  display: flex;
  gap: 28px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.hero-figure b{ display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--emerald); }
.hero-figure span{ font-size: .85rem; color: var(--ink-soft); }

.hero-media{ position: relative; }
.hero-media-frame{
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-media-frame img{ width: 100%; height: auto; display: block; }
.hero-badge{
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.hero-badge .arc-underline{ margin: 0; width: 32px; }
.hero-badge strong{ display: block; font-family: var(--font-display); font-size: 1rem; }
.hero-badge small{ color: var(--ink-soft); font-size: .78rem; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; gap: 40px; }
  .hero-badge{ left: 12px; bottom: -18px; }
}

/* ------------------------------ Cards grids -------------------------------- */
.grid{ display: grid; gap: 26px; }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px){
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; }
}

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card::before{
  content: "";
  position: absolute; top: 0; left: 24px; right: 24px; height: 4px;
  background: var(--gold);
  border-radius: 0 0 6px 6px;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-icon{
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--emerald-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg{ width: 26px; height: 26px; stroke: var(--emerald); }
.card h3{ font-size: 1.15rem; margin-bottom: 10px; }
.card p{ color: var(--ink-soft); font-size: .96rem; margin-bottom: 16px; }
.card-link{
  font-weight: 600; font-size: .92rem; color: var(--emerald-deep);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link svg{ width: 15px; height: 15px; transition: transform .15s ease; }
.card-link:hover svg{ transform: translateX(3px); }

/* Service cards use blush accent for the two aesthetic-related cards */
.card--accent::before{ background: var(--blush-deep); }
.card--accent .card-icon{ background: var(--blush); }
.card--accent .card-icon svg{ stroke: var(--blush-deep); }

/* ------------------------------ Pricing preview ------------------------------ */
.price-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.price-card::before{
  content: "";
  position: absolute; top: 0; left: 24px; right: 24px; height: 4px;
  background: var(--emerald);
  border-radius: 0 0 6px 6px;
}
.price-card--accent::before{ background: var(--gold); }
.price-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }
.price-card h3{ font-size: 1.08rem; margin-bottom: 14px; }
.price-list li{
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: .92rem;
}
.price-list li:last-child{ border-bottom: none; }
.price-list li span{ color: var(--ink-soft); }
.price-list li b{ font-family: var(--font-display); color: var(--emerald-deep); white-space: nowrap; font-weight: 600; }

/* ------------------------------ Blog preview ---------------------------------- */
.blog-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.blog-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-card-media{ overflow: hidden; }
.blog-card-media img{ width: 100%; height: auto; display: block; }
.blog-card-body{ padding: 24px 24px 26px; }
.blog-card-body h3{ font-size: 1.08rem; margin-bottom: 10px; }
.blog-card-body p{ color: var(--ink-soft); font-size: .93rem; margin-bottom: 16px; }

/* ------------------------------ Team section -------------------------------- */
.team-block{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.team-media{ border-radius: 0; overflow: hidden; box-shadow: var(--shadow-card); }
.team-media img{ width: 100%; height: auto; display: block; }
.team-copy p{ font-size: 1.06rem; color: var(--ink-soft); }
.team-stats{ display: flex; gap: 32px; margin: 26px 0; flex-wrap: wrap; }
.team-stats div b{ display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--emerald); }
.team-stats div span{ font-size: .85rem; color: var(--ink-soft); }
@media (max-width: 900px){
  .team-block{ grid-template-columns: 1fr; }
}

/* ------------------------------ Testimonial -------------------------------- */
.testimonial-card{
  background: var(--white);
  border-radius: 24px;
  padding: 44px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--line);
}
.testimonial-quote-mark{ width: 40px; height: 30px; fill: var(--gold); margin-bottom: 12px; }
.testimonial-card p{ font-size: 1.18rem; font-family: var(--font-display); color: var(--ink); line-height: 1.5; }
.testimonial-author{ display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.testimonial-author-avatar{
  width: 46px; height: 46px; border-radius: 50%; background: var(--emerald-tint);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); color: var(--emerald-deep); font-weight: 600;
}
.testimonial-author b{ display: block; font-size: .95rem; }
.testimonial-author span{ font-size: .82rem; color: var(--ink-soft); }

/* ------------------------------ Values -------------------------------------- */
.values-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1000px){ .values-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px){ .values-grid{ grid-template-columns: repeat(2, 1fr); } }
.value-item{ text-align: center; padding: 22px 14px; }
.value-icon{
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(250,246,244,.08);
  border: 1px solid rgba(250,246,244,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg{ width: 28px; height: 28px; stroke: var(--gold); }
.value-item h3{ font-size: 1.05rem; margin-bottom: 8px; }
.value-item p{ font-size: .88rem; color: #C9D6D0; margin-bottom: 0; }

/* ------------------------------ Contact -------------------------------------- */
.contact-grid{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list{ margin: 26px 0 32px; }
.contact-info-list li{
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.contact-info-list li:last-child{ border-bottom: none; }
.contact-info-icon{
  width: 40px; height: 40px; border-radius: 50%; background: var(--emerald-tint);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg{ width: 19px; height: 19px; stroke: var(--emerald); }
.contact-info-list b{ display: block; font-size: .95rem; }
.contact-info-list span{ font-size: .9rem; color: var(--ink-soft); }

.form-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px){ .form-row{ grid-template-columns: 1fr; } }
.field{ margin-bottom: 18px; }
.field label{ display: block; font-size: .86rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea{
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: .96rem;
  background: var(--porcelain);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--emerald); background: var(--white);
}
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }

/* ------------------------------ Footer ---------------------------------------- */
.site-footer{ background: var(--ink); color: #C9D6D0; padding: 64px 0 28px; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(250,246,244,.15);
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand .brand{ margin-bottom: 14px; }
.footer-brand .brand-text{ color: var(--porcelain); }
.footer-brand p{ font-size: .9rem; color: #9FB0A9; max-width: 34ch; }
.footer-col h4{ color: var(--porcelain); font-size: .95rem; margin-bottom: 16px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.footer-col a{ display: block; padding: 6px 0; font-size: .92rem; color: #C9D6D0; }
.footer-col a:hover{ color: var(--gold); }
.newsletter-form{ display: flex; gap: 0; margin: 14px 0 10px; border-radius: var(--radius-btn); overflow: hidden; border: 1px solid rgba(250,246,244,.25); }
.newsletter-form input{
  flex: 1; border: none; padding: 13px 16px; background: rgba(250,246,244,.05); color: var(--porcelain); font-family: var(--font-body);
}
.newsletter-form input::placeholder{ color: #9FB0A9; }
.newsletter-form input:focus{ outline: none; }
.newsletter-form button{ border: none; background: var(--gold); color: var(--ink); font-weight: 600; padding: 0 22px; }
.newsletter-form button:hover{ background: var(--gold-deep); color: var(--white); }
.footer-fine{ font-size: .78rem; color: #7C8F87; }
.footer-bottom{
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; font-size: .82rem; color: #7C8F87;
}
.footer-bottom-links{ display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a{ color: #9FB0A9; }
.footer-bottom-links a:hover{ color: var(--gold); }

/* ------------------------------ Scroll reveal -------------------------------- */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ------------------------------ Article / detail pages -------------------------- */
.article{ max-width: 760px; margin: 0 auto; }
.article-tag{
  display: inline-block; background: var(--emerald-tint); color: var(--emerald-deep);
  font-size: .75rem; font-weight: 600; padding: 5px 14px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px;
}
.article-meta{ font-size: .85rem; color: var(--ink-soft); margin-bottom: 20px; }
.article-cover{ margin: 0 0 36px; overflow: hidden; box-shadow: var(--shadow-card); }
.article-cover img{ width: 100%; height: auto; display: block; }
.article h2{ font-size: 1.35rem; margin-top: 38px; }
.article h2:first-of-type{ margin-top: 0; }
.article p, .article li{ color: var(--ink-soft); font-size: 1.02rem; }
.article ul{ padding-left: 22px; list-style: disc; margin-bottom: 1em; }
.article li{ margin-bottom: 8px; }
.article strong{ color: var(--ink); }
.related-box{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 28px; margin-top: 44px;
}
.related-box h3{ font-size: 1.05rem; margin-bottom: 16px; }
.related-list{ display: flex; flex-direction: column; gap: 10px; }
.related-list a{
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 16px; border: 1px solid var(--line); border-radius: 12px; font-weight: 600; font-size: .94rem;
  color: var(--emerald-deep); transition: background .15s ease, border-color .15s ease;
}
.related-list a:hover{ background: var(--emerald-tint); border-color: var(--emerald); }

.page-hero{
  padding: 48px 0 44px;
  background: linear-gradient(180deg, var(--porcelain) 0%, var(--porcelain-dim) 100%);
  border-bottom: 1px solid var(--line);
}
.breadcrumb{ font-size: .84rem; color: var(--ink-soft); margin-bottom: 16px; }
.breadcrumb a{ color: var(--emerald-deep); font-weight: 600; }
.page-hero h1{ font-size: clamp(1.8rem, 3.6vw, 2.6rem); max-width: 22ch; }
.page-hero p{ color: var(--ink-soft); max-width: 62ch; font-size: 1.05rem; }

/* ------------------------------ Legal / GDPR prose ----------------------------- */
.legal{ max-width: 800px; }
.legal h2{ font-size: 1.32rem; margin-top: 44px; }
.legal h2:first-child{ margin-top: 0; }
.legal h3{ font-size: 1.05rem; margin-top: 26px; }
.legal p, .legal li{ color: var(--ink-soft); font-size: .98rem; }
.legal ul{ padding-left: 22px; list-style: disc; margin-bottom: 1em; }
.legal li{ margin-bottom: 8px; }
.legal strong{ color: var(--ink); }
.legal-updated{ font-size: .85rem; color: var(--ink-soft); margin-bottom: 34px; }

/* ------------------------------ Team member cards ------------------------------ */
.member-card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 26px; text-align: center;
}
.member-avatar{
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--emerald-tint); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; color: var(--emerald-deep); font-weight: 600;
}
.member-card h3{ font-size: 1.05rem; margin-bottom: 4px; }
.member-role{ display: block; font-size: .84rem; color: var(--gold-deep); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.member-card p{ font-size: .9rem; color: var(--ink-soft); margin-bottom: 0; }

/* ------------------------------ Map embed --------------------------------------- */
.map-embed{
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.map-embed iframe{ width: 100%; height: 340px; border: 0; display: block; }

/* ------------------------------ Service detail blocks --------------------------- */
.service-detail{ scroll-margin-top: 100px; }
.service-detail h3{ display: flex; align-items: center; gap: 12px; }
.service-detail .card-icon{ margin-bottom: 0; flex-shrink: 0; }

.text-center{ text-align: center; }
.mt-32{ margin-top: 32px; }
