/* South Pittsburgh Veterinary Service
   Editorial, warm-paper, trust-focused. */

:root {
  /* warm paper neutrals */
  --bg: #fbfaf7;
  --paper: #ffffff;
  --surface: #f3efe5;
  --surface-2: #ebe6da;
  --border: #e0d9c8;
  --border-strong: #c9c0aa;

  /* deep warm text */
  --ink: #1a1814;
  --ink-soft: #3d3833;
  --muted: #6b635a;
  --soft: #968d80;

  /* deep ink-navy accent, not tailwind blue */
  --accent: #1f3a5f;
  --accent-hover: #15294a;
  --accent-soft: #e6ecf3;
  --accent-paper: #f4f1e8;

  /* warm highlight for testimonial pulls */
  --highlight: #c2a64a;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  --container: 1200px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 4vw, 48px);

  --serif: 'Fraunces', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.15s ease; }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); font-weight: 400; }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--sans); letter-spacing: -0.005em; }

p { margin: 0 0 1.1em; color: var(--ink-soft); }
p.lead { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.55; }

::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--bg); padding: 10px 14px; z-index: 1000; }
.skip-link:focus { left: 0; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand:hover { text-decoration: none; color: var(--ink); }
.brand img { height: 38px; width: auto; }
.brand-mark { font-family: var(--serif); font-size: 1.05rem; line-height: 1.1; font-weight: 500; }
.brand-mark span { display: block; font-family: var(--sans); font-size: 0.72rem; color: var(--soft); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: var(--ink-soft); font-size: 0.95rem; padding: 8px 12px; text-decoration: none; transition: color 0.15s ease; }
.nav a:hover { color: var(--ink); text-decoration: none; }
.nav a.active { color: var(--ink); }
.nav .btn { margin-left: 8px; }

.nav-toggle { display: none; border: 1px solid var(--border-strong); background: var(--paper); border-radius: var(--r-sm); width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; content: ''; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 20px; display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 8px; border-bottom: 1px solid var(--border); }
  .nav a:last-of-type { border-bottom: none; }
  .nav .btn { margin: 12px 0 0; text-align: center; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-weight: 500; font-size: 0.95rem;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-hover); color: var(--bg); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--ink); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--accent); background: transparent; }
.btn-ghost::after { content: ' →'; transition: transform 0.2s ease; display: inline-block; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ===== Hero ===== */
.hero { padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 80px); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: end; }
.hero-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-meta::before { content: ''; width: 36px; height: 1px; background: var(--border-strong); }
.hero h1 { margin-bottom: 28px; max-width: 14ch; }
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero p.lead { max-width: 46ch; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.hero-media { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-credit { position: absolute; bottom: 16px; left: 16px; right: 16px; background: rgba(26, 24, 20, 0.78); backdrop-filter: blur(8px); color: var(--bg); padding: 12px 16px; border-radius: var(--r-sm); font-size: 0.82rem; line-height: 1.4; }
.hero-credit strong { color: var(--bg); font-weight: 600; font-family: var(--serif); font-style: italic; font-size: 0.95rem; }
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { aspect-ratio: 4 / 3; order: -1; }
}

/* ===== Section base ===== */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-paper { background: var(--paper); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-surface { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-ink { background: var(--ink); color: var(--bg); }
.section-ink h2, .section-ink h3 { color: var(--bg); }
.section-ink p { color: #c8c0b3; }

.kicker { display: inline-block; font-family: var(--sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; position: relative; padding-left: 28px; }
.kicker::before { content: ''; position: absolute; left: 0; top: 50%; width: 18px; height: 1px; background: var(--accent); }

.section-head { max-width: 720px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { padding-left: 0; }
.section-head.center .kicker::before { display: none; }
.section-head p { font-size: 1.1rem; color: var(--ink-soft); margin: 18px 0 0; }

/* ===== Trust strip (under hero) ===== */
.trust-strip { padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--paper); }
.trust-inner { display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: center; justify-content: space-between; }
.trust-item { display: flex; align-items: baseline; gap: 12px; font-size: 0.95rem; color: var(--ink-soft); }
.trust-item .num { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); font-weight: 400; line-height: 1; }
.trust-item .label { color: var(--muted); font-size: 0.88rem; }
@media (max-width: 720px) { .trust-inner { justify-content: flex-start; } }

/* ===== Editorial intro (philosophy as paragraph, not chip) ===== */
.editorial { display: grid; grid-template-columns: 280px 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.editorial-side { position: sticky; top: 100px; }
.editorial-side .kicker { padding-left: 0; }
.editorial-side .kicker::before { display: none; }
.editorial-side h2 { font-size: clamp(1.6rem, 2.6vw, 2rem); }
.editorial-body p { font-size: 1.125rem; line-height: 1.7; color: var(--ink-soft); max-width: 60ch; }
.editorial-body p.opening::first-letter { font-family: var(--serif); font-size: 3.6em; line-height: 0.8; float: left; padding: 8px 12px 0 0; color: var(--accent); font-weight: 400; }
.editorial-body strong { color: var(--ink); font-weight: 600; }
@media (max-width: 880px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial-side { position: static; }
}

/* ===== Services card grid (4-up) ===== */
.section-services { background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-head { text-align: center; margin: 0 auto 56px; max-width: 760px; }
.services-head .kicker { padding-left: 0; }
.services-head .kicker::before { display: none; }
.services-head p { font-size: 1.05rem; color: var(--ink-soft); margin: 18px auto 0; max-width: 60ch; }

.services-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.svc { background: var(--surface); padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px); display: flex; flex-direction: column; min-height: 320px; transition: background 0.2s ease, transform 0.2s ease; }
.svc:hover { background: var(--paper); transform: translateY(-2px); }
.svc-icon { width: 52px; height: 52px; color: var(--ink); margin-bottom: 28px; flex-shrink: 0; }
.svc-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc h3 { font-family: var(--sans); font-size: 1.2rem; font-weight: 600; line-height: 1.25; color: var(--ink); margin: 0 0 14px; letter-spacing: -0.005em; }
.svc p { font-size: 0.92rem; line-height: 1.6; color: var(--ink-soft); margin: 0; }

.services-cta { display: flex; justify-content: center; margin-top: 48px; }
.services-cta .btn { padding: 14px 32px; border-radius: var(--r-pill); font-size: 0.92rem; letter-spacing: 0.04em; }

@media (max-width: 1080px) { .services-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .services-cards { grid-template-columns: repeat(2, 1fr); } .svc { min-height: 0; } }
@media (max-width: 520px)  { .services-cards { grid-template-columns: 1fr; } }

/* ===== Trust / Why us — split editorial ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.split-image { aspect-ratio: 5 / 6; overflow: hidden; border-radius: var(--r-lg); background: var(--surface); }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { margin-bottom: 24px; max-width: 16ch; }
.split p { font-size: 1.05rem; }
.split-points { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 22px; }
.split-points li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.split-points li .marker { font-family: var(--serif); font-size: 1.4rem; color: var(--accent); line-height: 1.2; font-feature-settings: "tnum" 1; }
.split-points li h4 { margin: 0 0 4px; }
.split-points li p { margin: 0; font-size: 0.95rem; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split-image { aspect-ratio: 4 / 3; order: -1; } }

/* ===== Locations editorial ===== */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 56px); }
.loc { padding: 36px 0; border-top: 1px solid var(--border-strong); }
.loc .city { font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.loc h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 1.85rem); font-weight: 400; margin-bottom: 16px; }
.loc p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 22px; max-width: 42ch; }
.loc-meta { display: grid; gap: 14px; margin-bottom: 24px; }
.loc-meta-row { display: grid; grid-template-columns: 90px 1fr; gap: 14px; align-items: baseline; font-size: 0.95rem; }
.loc-meta-row dt { color: var(--soft); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.loc-meta-row dd { margin: 0; color: var(--ink); }
.loc-meta-row dd a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--border-strong); }
.loc-meta-row dd a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.loc-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
@media (max-width: 880px) { .loc-grid { grid-template-columns: 1fr; gap: 0; } .loc:nth-child(2) { border-top: 1px solid var(--border-strong); } }

/* ===== Pharmacy as descriptive editorial ===== */
.pharmacy-intro { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(24px, 5vw, 80px); margin-bottom: 56px; align-items: end; }
.pharmacy-intro h2 { margin-bottom: 0; }
.pharmacy-intro p { margin: 0; font-size: 1.05rem; }
.pharmacy-partners { display: grid; gap: 0; }
.partner-row { display: grid; grid-template-columns: 220px 1fr auto; gap: clamp(20px, 4vw, 48px); align-items: center; padding: 32px 0; border-top: 1px solid var(--border); }
.partner-row:last-child { border-bottom: 1px solid var(--border); }
.partner-row h3 { font-family: var(--serif); font-size: 1.5rem; margin: 0; font-weight: 400; }
.partner-row .partner-meta { display: block; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.partner-row p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; max-width: 56ch; }
.partner-row .btn { white-space: nowrap; }
@media (max-width: 880px) {
  .pharmacy-intro { grid-template-columns: 1fr; }
  .partner-row { grid-template-columns: 1fr; gap: 14px; }
  .partner-row .btn { justify-self: start; }
}

/* ===== Testimonials ===== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
.quote { padding: 0; }
.quote blockquote { font-family: var(--serif); font-size: 1.2rem; line-height: 1.45; color: var(--ink); margin: 0 0 20px; font-weight: 400; }
.quote blockquote::before { content: '"'; font-family: var(--serif); font-size: 3.5rem; line-height: 0.5; color: var(--highlight); display: block; margin-bottom: 8px; font-style: normal; }
.quote cite { font-style: normal; font-size: 0.9rem; color: var(--muted); display: block; }
.quote cite strong { color: var(--ink); font-weight: 600; display: block; font-size: 0.95rem; margin-bottom: 2px; }
@media (max-width: 880px) { .quotes { grid-template-columns: 1fr; gap: 40px; } }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq-side .kicker { padding-left: 0; }
.faq-side .kicker::before { display: none; }
.faq-side p { font-size: 1rem; }
.faq-list { display: grid; gap: 0; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary { cursor: pointer; padding: 22px 0; font-family: var(--serif); font-size: 1.15rem; font-weight: 500; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--sans); font-weight: 300; font-size: 1.5rem; color: var(--accent); transition: transform 0.2s ease; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0 24px; max-width: 64ch; }
.faq-item .faq-body p { font-size: 1rem; color: var(--ink-soft); }
.faq-item .faq-body p:last-child { margin-bottom: 0; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }

/* ===== Areas served (local SEO) ===== */
.areas { display: flex; flex-wrap: wrap; gap: 8px 12px; margin-top: 24px; }
.areas span { font-size: 0.92rem; color: var(--ink-soft); padding: 6px 0; border-bottom: 1px solid transparent; }
.areas span::after { content: '·'; margin-left: 14px; color: var(--soft); }
.areas span:last-child::after { display: none; }

/* ===== Final CTA / Footer band ===== */
.endband { padding: clamp(64px, 9vw, 120px) 0; background: var(--ink); color: var(--bg); }
.endband h2 { color: var(--bg); max-width: 18ch; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
.endband p { color: #c8c0b3; max-width: 52ch; font-size: 1.1rem; margin-bottom: 32px; }
.endband .btn-primary { background: var(--bg); color: var(--ink); }
.endband .btn-primary:hover { background: var(--highlight); color: var(--ink); }
.endband .btn-outline { color: var(--bg); border-color: rgba(255,255,255,0.3); }
.endband .btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--bg); border-color: var(--bg); }
.endband-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: end; }
.endband-grid .endband-meta { font-size: 0.9rem; color: #968d80; line-height: 1.7; }
.endband-grid .endband-meta strong { color: var(--bg); font-weight: 500; display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 1.1rem; }
@media (max-width: 880px) { .endband-grid { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--muted); max-width: 36ch; margin-top: 16px; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; font-size: 0.95rem; line-height: 1.5; }
.footer-col a { color: var(--ink-soft); text-decoration: none; }
.footer-col a:hover { color: var(--accent); text-decoration: underline; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--soft); font-size: 0.85rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== Page headers (interior) ===== */
.page-head { padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 64px); border-bottom: 1px solid var(--border); }
.page-head h1 { margin-bottom: 20px; max-width: 18ch; }
.page-head p.lead { max-width: 60ch; font-size: 1.15rem; }
.page-head .crumbs { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.page-head .crumbs a { color: var(--muted); text-decoration: none; }
.page-head .crumbs a:hover { color: var(--ink); }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px) clamp(20px, 3vw, 32px); }
.team-card { display: flex; flex-direction: column; }
.team-photo { aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface); margin-bottom: 18px; border-radius: var(--r-md); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo.placeholder { display: flex; align-items: center; justify-content: center; color: var(--soft); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.team-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 4px; }
.team-role { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.team-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ===== Contact page ===== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-md); padding: clamp(28px, 4vw, 40px); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-weight: 500; font-size: 0.9rem; color: var(--ink); }
.field input, .field textarea, .field select { font: inherit; padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: var(--r-sm); background: var(--paper); color: var(--ink); transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; margin-top: 12px; }
.hours-table th, .hours-table td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--border); }
.hours-table th { font-weight: 500; color: var(--muted); width: 38%; font-size: 0.9rem; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table td.closed { color: var(--soft); }

.map-frame { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-top: 20px; }
.map-frame iframe { width: 100%; height: 240px; border: 0; display: block; }

.note { margin-top: 18px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); color: var(--ink-soft); font-size: 0.92rem; }
.note strong { color: var(--ink); font-weight: 600; }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ===== Blog ===== */
.post-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 5vw, 64px); padding-bottom: clamp(48px, 6vw, 80px); border-bottom: 1px solid var(--border); margin-bottom: clamp(48px, 6vw, 80px); align-items: center; }
.post-feature .post-thumb { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-md); }
.post-feature h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.post-feature .post-meta { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.post-feature p { font-size: 1.05rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 48px); }
.post-card { display: flex; flex-direction: column; }
.post-card .post-thumb { aspect-ratio: 16 / 11; overflow: hidden; border-radius: var(--r-md); margin-bottom: 18px; background: var(--surface); }
.post-card .post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-thumb img { transform: scale(1.03); }
.post-card .post-meta { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.post-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 8px; line-height: 1.25; }
.post-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0 0 14px; }
.post-card a.read-more { margin-top: auto; font-size: 0.9rem; font-weight: 500; color: var(--accent); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid currentColor; align-self: flex-start; }
.post-card a.read-more:hover { color: var(--accent-hover); }

@media (max-width: 880px) { .post-feature { grid-template-columns: 1fr; } .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.muted { color: var(--muted); }
img[loading="lazy"] { background: var(--surface); }
