/* ============================================================
   LGS HVAC Inc — Katy, TX
   White-first, dual-accent (cooling blue + heating red),
   editorial display + utility body, generous whitespace.
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #ffffff;
  --surface:   #ffffff;
  --surface-2: #f6f8fb;        /* cool wash for alternating sections */
  --surface-3: #f0f3f8;
  --ink:       #0d1b2a;        /* near-black with the faintest navy cast */
  --ink-soft:  #2a384a;
  --muted:     #5a6678;
  --rule:      #e3e8ef;

  /* Accents — pulled from the LGS logo */
  --cool:      #0c3a82;        /* deep royal blue (cooling, primary) */
  --cool-hi:   #1a4fb0;
  --cool-tint: #e8f0fc;
  --heat:      #c43224;        /* warm red (heating) */
  --heat-hi:   #e15040;
  --heat-tint: #fbe9e7;

  /* Type */
  --display:   'Newsreader', 'Iowan Old Style', 'Charter', Georgia, serif;
  --body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono:      'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Layout */
  --maxw:      1200px;
  --gutter:    24px;
  --radius:    10px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

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

/* ===== Type scale ===== */
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cool);
  font-weight: 600;
  display: inline-block;
}
.kicker.heat { color: var(--heat); }
.kicker.muted { color: var(--muted); }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-weight: 500;
}
h1 { font-size: clamp(40px, 6.4vw, 76px); line-height: 1.0; }
h1 em { font-style: italic; color: var(--cool); font-weight: 400; }
h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 12px; }
h2 em { font-style: italic; color: var(--cool); font-weight: 400; }
h3 { font-size: 22px; margin-bottom: 6px; }

.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--cool);
  color: #fff;
}
.btn-primary:hover { background: var(--cool-hi); }
.btn-heat {
  background: var(--heat);
  color: #fff;
}
.btn-heat:hover { background: var(--heat-hi); }
.btn-ghost {
  border: 1px solid var(--rule);
  color: var(--ink);
  background: #fff;
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-arrow::after { content: '→'; font-family: var(--body); }

/* ===== Top nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background-image: url('assets/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 720px) {
  .brand { font-size: 22px; gap: 10px; }
  .brand-mark { width: 52px; height: 52px; }
}
.foot .brand-mark {
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.06));
}
.brand .lgs { color: var(--ink); }
.brand .hvac { font-style: italic; color: var(--cool); font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--cool);
}
.nav-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.nav-links a.nav-cta {
  background: var(--cool);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-links a.nav-cta:hover { background: var(--cool-hi); color: #fff; }
.nav-links a.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 16px var(--gutter) 24px;
  border-top: 1px solid var(--rule);
  gap: 6px;
}
.nav.open .mobile-menu { display: flex; }
.mobile-menu a {
  padding: 14px 4px;
  font-family: var(--display);
  font-size: 22px;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu a:last-child {
  background: var(--cool);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  margin-top: 12px;
  border: 0;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  padding: 16px;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero-copy h1 { margin: 18px 0 22px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.hero-meta strong { color: var(--ink); font-weight: 600; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-image {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(13, 27, 42, 0.25);
}
@media (max-width: 600px) {
  .hero-image { aspect-ratio: 4/3; }
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 27, 42, 0.18) 100%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  background: #fff;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cool);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px -10px rgba(13, 27, 42, 0.3);
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  100% { box-shadow: 0 0 0 9px rgba(22, 163, 74, 0); }
}

.hero-stat {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 12px;
}
.hero-stat .item .n {
  font-family: var(--display);
  font-size: 26px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
}
.hero-stat .item .l {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 420px) {
  .hero-stat { padding: 12px 14px; gap: 8px; }
  .hero-stat .item .n { font-size: 22px; }
  .hero-stat .item .l { font-size: 8.5px; letter-spacing: 0.14em; }
}

/* ===== Section helper ===== */
section.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
section.section.alt {
  background: var(--surface-2);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 56px);
  flex-wrap: wrap;
}
.section-head .text { max-width: 660px; }
.section-head h2 { margin-bottom: 10px; }

/* ===== Service cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 50px -28px rgba(13, 27, 42, 0.2);
  border-color: transparent;
}
.service-card .photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-3);
}
.service-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .photo img { transform: scale(1.05); }
.service-card .body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cool);
  margin-bottom: 4px;
}
.service-card .pill.heat { color: var(--heat); }
.service-card .pill.green { color: #16a34a; }
.service-card h3 { font-size: 26px; }
.service-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.service-card .more {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .more::after {
  content: '→';
  transition: transform 0.18s ease;
}
.service-card:hover .more::after { transform: translateX(3px); }

/* ===== Trust strip ===== */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.trust-item strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.trust-item .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 720px) { .trust-divider { display: none; } }

/* ===== Why us / 4-up grid ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}
.why-card .icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cool-tint);
  color: var(--cool);
  display: grid;
  place-items: center;
}
.why-card.heat .icon {
  background: var(--heat-tint);
  color: var(--heat);
}
.why-card .icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 19px; margin-bottom: 6px; }
.why-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .testimonials { grid-template-columns: 1fr; } }

.review {
  padding: 32px 32px 28px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  position: relative;
}
.review .stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review blockquote {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 18px;
  text-wrap: balance;
}
.review .signature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.review .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface-3);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 14px;
  color: var(--cool);
  font-weight: 600;
}
.review .name { font-weight: 600; font-size: 14px; }
.review .role { font-size: 12px; color: var(--muted); }

/* ===== CTA card ===== */
.cta-block {
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 64px);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(228, 80, 64, 0.4), transparent 70%);
  pointer-events: none;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(26, 79, 176, 0.5), transparent 70%);
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
@media (max-width: 880px) { .cta-block { grid-template-columns: 1fr; gap: 28px; } }
.cta-block h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.cta-block h2 em { color: var(--heat-hi); }
.cta-block p { color: rgba(255, 255, 255, 0.78); font-size: 16px; margin-top: 10px; }
.cta-block .actions { display: flex; flex-direction: column; gap: 14px; }
.cta-tel {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 40px);
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cta-tel small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  margin-bottom: 6px;
}
.cta-block .btn-heat { padding: 16px 24px; font-size: 14px; }

/* ===== Footer ===== */
.foot {
  background: #0a1421;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 28px;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
.foot h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
}
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot a { color: rgba(255, 255, 255, 0.78); }
.foot a:hover { color: #fff; }
.foot .brand { color: #fff; margin-bottom: 16px; }
.foot .brand .lgs { color: #fff; }
.foot .brand .hvac { color: var(--cool-hi); }
.foot .blurb { color: rgba(255, 255, 255, 0.6); line-height: 1.6; max-width: 32ch; }
.foot .socials { display: flex; gap: 10px; margin-top: 18px; }
.foot .socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.15s;
}
.foot .socials a:hover { background: var(--cool); color: #fff; }
.foot .socials svg { width: 14px; height: 14px; }
.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Sticky mobile bar ===== */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  display: none;
  background: #fff;
  border-top: 1px solid var(--rule);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  gap: 10px;
  z-index: 60;
  box-shadow: 0 -8px 30px -10px rgba(13, 27, 42, 0.12);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 6px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-bar .call { background: var(--surface-2); color: var(--ink); }
.mobile-bar .quote { background: var(--cool); color: #fff; }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
}

/* ===== Page header (interior pages) ===== */
.page-head {
  padding: clamp(56px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
  border-bottom: 1px solid var(--rule);
  background: var(--surface-2);
}
.page-head .kicker { margin-bottom: 14px; }
.page-head h1 { font-size: clamp(40px, 5.4vw, 64px); margin-bottom: 18px; }
.page-head .lede { max-width: 64ch; }

/* ===== Service detail rows (services.html) ===== */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: clamp(48px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.svc-row:nth-child(even) .svc-img { order: 2; }
@media (max-width: 880px) {
  .svc-row { grid-template-columns: 1fr; gap: 28px; }
  .svc-row:nth-child(even) .svc-img { order: 0; }
}
.svc-img {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-row h2 { margin-top: 16px; margin-bottom: 16px; }
.svc-row .lede { margin-bottom: 24px; }
.svc-includes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 28px;
}
@media (max-width: 480px) { .svc-includes { grid-template-columns: 1fr; } }
.svc-includes li {
  font-size: 14.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.svc-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cool-tint);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230c3a82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 6.5 11.5 13 5'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}
.svc-row.heat .svc-includes li::before {
  background-color: var(--heat-tint);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c43224' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 6.5 11.5 13 5'/></svg>");
}

/* ===== About page ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}
.value .num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--cool);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.value h3 { font-size: 22px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cool);
  box-shadow: 0 0 0 3px var(--cool-tint);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form .submit { margin-top: 10px; align-self: flex-start; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
}
.info-block {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.info-block:last-child { border-bottom: 0; padding-bottom: 0; }
.info-block .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.info-block .value {
  font-family: var(--display);
  font-size: 21px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
  background: transparent;
  padding: 0;
  border: 0;
}
.info-block.tel .value { font-size: 28px; }
.info-block .value a { color: var(--ink); }
.info-block .value a:hover { color: var(--cool); }
.info-block .sub { font-size: 14px; color: var(--muted); margin-top: 4px; }

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink);
  padding: 4px 0;
}
.hours-list li.today { color: var(--cool); font-weight: 600; }
.hours-list .day { font-weight: 500; }
.hours-list .time { color: var(--muted); font-variant-numeric: tabular-nums; }

.map-wrap {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  aspect-ratio: 16/8;
  background: var(--surface-2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
