:root {
  --bg: #f9f8fc;
  --paper: rgba(255,255,255,.76);
  --text: #30404d;
  --muted: #6f7b86;
  --line: rgba(123, 155, 188, .18);
  --accent: #8ac9d8;
  --accent-strong: #6aa8d4;
  --lavender: #d8d0f6;
  --mint: #d9f0ec;
  --peach: #f6e2dd;
  --shadow: 0 20px 60px rgba(120, 128, 163, .12);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216,208,246,.7), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(217,240,236,.9), transparent 26%),
    linear-gradient(180deg, #fcfbff 0%, #f8f6fb 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.page-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 22px 0; position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px); background: rgba(249,248,252,.68);
}
.brand { display:flex; align-items:center; gap:14px; }
.brand img, .site-footer img { width: 62px; height:62px; object-fit: contain; border-radius: 18px; background: white; padding: 8px; box-shadow: var(--shadow); }
.brand strong { display:block; font-size: .88rem; }
.brand small { color: var(--muted); }
.nav { display:flex; gap: 18px; flex-wrap:wrap; }
.nav a { color: var(--muted); font-size:.85rem; letter-spacing: .02em; }
.hero {
  display:grid; grid-template-columns: 1.2fr .9fr; gap: 42px; align-items:center;
  padding: 54px 0 34px;
}
.eyebrow { letter-spacing: .12em; text-transform: uppercase; color: var(--accent-strong); font-size: .7rem; font-weight: 600; }
h1, h2 {
  font-family: 'Fraunces', serif; line-height: 1.05; margin: 10px 0 18px;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); max-width: 14ch; font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); max-width: 18ch; font-weight: 600; }
.lede { font-size: .95rem; color: var(--muted); max-width: 56ch; line-height: 1.7; }
.hero-actions { display:flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 22px; }
.button {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: .88rem; border: 1px solid transparent;
}
.button.primary { background: linear-gradient(135deg, var(--accent-strong), var(--accent)); color: white; box-shadow: var(--shadow); }
.button.ghost { background: rgba(255,255,255,.7); border-color: var(--line); color: var(--text); }
.button.full { width: 100%; }
.hero-highlights { display:flex; flex-wrap:wrap; gap:10px; padding:0; margin:0; list-style:none; }
.hero-highlights li, .about-badges span, .contact-list span {
  padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.78); border: 1px solid var(--line); color: var(--muted); font-size: .82rem;
}
.hero-visual { position: relative; min-height: 620px; }
.portrait-card {
  position:absolute; inset: 0 40px 80px 0; border-radius: 40px; overflow:hidden; box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.35));
}
.portrait-card img { width:100%; height:100%; object-fit: cover; }
.floating-note {
  position:absolute; right:0; bottom: 0; width: min(360px, 82%); padding: 24px;
  background: rgba(255,255,255,.84); backdrop-filter: blur(20px); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow);
}
.note-title { display:block; font-weight:600; margin-bottom: 8px; color: var(--accent-strong); font-size: .88rem; }
.floating-note p { font-size: .84rem; color: var(--muted); }
.intro-strip {
  background: linear-gradient(90deg, rgba(255,255,255,.74), rgba(255,255,255,.56));
  border:1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow);
}
.intro-strip p { margin:0; color: var(--muted); font-size: .9rem; }
.section { padding: 78px 0 10px; }
.section-heading { margin-bottom: 24px; }
.glass-card {
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius);
  backdrop-filter: blur(18px); box-shadow: var(--shadow);
}
.about-grid { display:grid; grid-template-columns: 1fr .6fr .6fr; gap: 24px; }
.contact-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.about-text, .values-card, .contact-copy, .contact-form { padding: 28px; }
.about-image-card { overflow: hidden; padding: 0; }
.about-image-card img { width: 100%; height: 100%; object-fit: cover; }
.about-text p, .contact-copy p { color: var(--muted); line-height: 1.75; font-size: .9rem; }
.contact-image { margin: -28px -28px 18px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; height: 180px; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.about-badges, .contact-list { display:flex; flex-wrap:wrap; gap:10px; margin-top: 18px; }
.values-card h3 { margin-top:0; font-family:'Fraunces', serif; font-size:1.2rem; }
.values-card ul { margin:0; padding-left: 18px; color: var(--muted); line-height: 1.8; font-size: .9rem; }
.service-grid {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.service-card {
  background: rgba(255,255,255,.8); border:1px solid var(--line); border-radius: 26px; overflow:hidden; box-shadow: var(--shadow);
}
.service-card h3, .service-card p { padding-left: 20px; padding-right: 20px; }
.service-card h3 { margin: 14px 0 6px; font-size:1.05rem; font-family: 'Fraunces', serif; font-weight: 500; }
.service-card p { margin:0 0 18px; color: var(--muted); line-height:1.7; font-size: .88rem; }
.service-media {
  height: 260px; background-size: cover; background-position: center;
}
.stock.pediatric {
  background-image:
    linear-gradient(180deg, rgba(216,208,246,.14), rgba(216,208,246,.2)),
    url('https://images.unsplash.com/photo-1602884428077-aea0e685e312?auto=format&fit=crop&w=1200&q=80');
}
.stock.adult {
  background-image:
    linear-gradient(180deg, rgba(217,240,236,.18), rgba(217,240,236,.2)),
    url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1200&q=80');
}
.stock.movement {
  background-image:
    linear-gradient(180deg, rgba(246,226,221,.2), rgba(246,226,221,.18)),
    url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=1200&q=80');
}
.gallery-grid {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; grid-auto-rows: 270px;
}
.gallery-item {
  overflow:hidden; border-radius: 26px; box-shadow: var(--shadow); background: rgba(255,255,255,.76); border:1px solid var(--line);
}
.gallery-item img { width:100%; height:100%; object-fit: cover; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.logo-panel {
  display:grid; place-items:center; padding: 30px; background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(217,240,236,.78));
}
.logo-panel img { object-fit: contain; max-width: 340px; }
.cta-card {
  padding: 0; border-radius: 34px; display:grid; grid-template-columns: .4fr 1fr; overflow: hidden;
  background: linear-gradient(135deg, rgba(216,208,246,.52), rgba(217,240,236,.72)); border:1px solid var(--line); box-shadow: var(--shadow);
}
.cta-image { overflow: hidden; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-content { padding: 30px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.contact-form { display:grid; gap: 14px; }
.contact-form label { display:grid; gap: 6px; font-weight:500; font-size: .88rem; }
.contact-form input, .contact-form textarea {
  width:100%; border-radius: 16px; border:1px solid var(--line); background: rgba(255,255,255,.88); padding: 12px 14px; font: inherit; font-size: .88rem; color: var(--text);
}
.site-footer { padding: 44px 0 60px; display:flex; align-items:center; justify-content:center; gap: 14px; color: var(--muted); font-size: .85rem; }

.social-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.social-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 32px 20px; text-align: center; transition: transform .2s ease, box-shadow .2s ease;
}
.social-card:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(120, 128, 163, .18); }
.social-icon { width: 42px; height: 42px; color: var(--accent-strong); }
.social-name { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; }
.social-handle { color: var(--muted); font-size: .85rem; }

@media (max-width: 960px) {
  .site-header, .hero, .about-grid, .contact-grid, .service-grid, .gallery-grid, .social-grid { grid-template-columns: 1fr; display:grid; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-image { height: 220px; }
  .cta-content { padding: 24px; }
  .site-header { position: static; }
  .nav { display:none; }
  .hero { padding-top: 26px; }
  .hero-visual { min-height: 500px; }
  .portrait-card { inset: 0 0 80px 0; }
  .gallery-grid { grid-auto-rows: 240px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .about-image-card { min-height: 240px; }
}

@media (max-width: 640px) {
  .page-shell { width: min(100% - 22px, 1180px); }
  h1 { max-width: 12ch; }
  .brand span { display:none; }
  .hero-visual { min-height: 420px; }
  .portrait-card { border-radius: 26px; }
  .floating-note { width: calc(100% - 18px); }
  .service-media { height: 220px; }
}
