/* EverFlow Heating & Air — Global Styles */
:root {
  --navy-950: #061226;
  --navy-900: #0a1d3a;
  --navy-800: #122a4f;
  --navy-700: #1b3a6b;
  --navy-100: #e8eef7;
  --orange-500: #f26a1f;
  --orange-600: #d9550f;
  --orange-50: #fff3eb;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-200: #e2e6ec;
  --gray-300: #ccd2dc;
  --gray-400: #97a0b0;
  --gray-500: #6b7384;
  --gray-700: #3f4655;
  --gray-900: #161a22;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(6, 18, 38, 0.06), 0 1px 1px rgba(6, 18, 38, 0.04);
  --shadow-md: 0 4px 14px rgba(6, 18, 38, 0.08), 0 2px 4px rgba(6, 18, 38, 0.04);
  --shadow-lg: 0 18px 40px rgba(6, 18, 38, 0.12), 0 6px 12px rgba(6, 18, 38, 0.06);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --maxw: 1200px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Source Serif Pro', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--navy-950);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.25rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.125rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ==== HEADER ==== */
.emergency-banner {
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.85rem;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.emergency-banner .pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--orange-500);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242, 106, 31, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(242, 106, 31, 0); }
}
.emergency-banner strong { font-weight: 600; }
.emergency-banner a { color: var(--orange-500); font-weight: 600; margin-left: 6px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.site-header .inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy-950);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--navy-900);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--orange-500);
}
.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.15s;
}
.nav a:hover, .nav a.active { color: var(--navy-900); }
.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.phone-link svg { color: var(--orange-500); }

@media (max-width: 880px) {
  .nav { display: none; }
  .header-cta .phone-link span:not(.short) { display: none; }
}

/* ==== BUTTONS ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.18s, background 0.18s, color 0.18s;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(242, 106, 31, 0.28);
}
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 8px 22px rgba(242, 106, 31, 0.4); }
.btn-secondary {
  background: var(--navy-900);
  color: var(--white);
}
.btn-secondary:hover { background: var(--navy-800); }
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--gray-300);
}
.btn-outline:hover { border-color: var(--navy-900); background: var(--gray-50); }
.btn-sm { padding: 10px 16px; font-size: 0.88rem; }
.btn-lg { padding: 17px 28px; font-size: 1.05rem; }

/* ==== HERO ==== */
.hero {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(242, 106, 31, 0.18), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(27, 58, 107, 0.6), transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 90px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 106, 31, 0.12);
  color: var(--orange-500);
  border: 1px solid rgba(242, 106, 31, 0.3);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em { color: var(--orange-500); font-style: normal; }
.hero-sub {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-trust .item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust .num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-trust .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  background: var(--white);
  color: var(--gray-900);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-card.top { top: 24px; left: -28px; }
.hero-card.bottom { bottom: 28px; right: -24px; }
.hero-card .ic {
  width: 40px; height: 40px;
  background: var(--orange-50);
  color: var(--orange-500);
  border-radius: 8px;
  display: grid; place-items: center;
}
.hero-card .ic.green { background: #e8f7ee; color: #1ea35a; }
.hero-card-title { font-weight: 600; font-size: 0.95rem; }
.hero-card-sub { font-size: 0.8rem; color: var(--gray-500); }

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 64px; }
  .hero-image-wrap { aspect-ratio: 4/3; max-width: 520px; }
  .hero-card.top { left: 12px; }
  .hero-card.bottom { right: 12px; }
}

/* Centered hero variant */
.hero.hero-centered { position: relative; overflow: hidden; }
.hero-centered-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 1;
}
.hero.hero-centered::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11,18,32,0.7) 0%, rgba(11,18,32,0.92) 100%);
}

/* ==== TRUST BAR ==== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}
.trust-bar .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item .icon {
  width: 38px; height: 38px;
  background: var(--gray-50);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--navy-900);
  flex-shrink: 0;
}
.trust-item .text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
}
.trust-item .text small {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.stars { color: var(--orange-500); letter-spacing: 1px; }

@media (max-width: 880px) {
  .trust-bar .row { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ==== SECTION ==== */
section { padding: 96px 0; }
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-500);
  margin-bottom: 14px;
}
.section-head p {
  font-size: 1.13rem;
  color: var(--gray-500);
  margin-top: 16px;
}
.section-bg-gray { background: var(--gray-50); }
.section-bg-navy { background: var(--navy-950); color: var(--white); }
.section-bg-navy h2, .section-bg-navy h3 { color: var(--white); }

/* ==== SERVICES ==== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.service-card .img {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  overflow: hidden;
}
.service-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.service-card:hover .img img { transform: scale(1.06); }
.service-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.95rem; color: var(--gray-500); flex: 1; margin-bottom: 18px; }
.service-card .link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .link svg { transition: transform 0.2s; }
.service-card:hover .link svg { transform: translateX(4px); }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* ==== WHY US ==== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image {
  aspect-ratio: 5/6;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: grid; gap: 22px; }
.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.why-item:hover { border-color: var(--orange-500); box-shadow: var(--shadow-md); }
.why-item .ic {
  width: 48px; height: 48px;
  background: var(--orange-50);
  color: var(--orange-500);
  border-radius: 10px;
  display: grid; place-items: center;
}
.why-item h4 { color: var(--navy-900); margin-bottom: 4px; }
.why-item p { font-size: 0.95rem; color: var(--gray-500); }

@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { aspect-ratio: 4/3; max-width: 540px; }
}

/* ==== PROCESS ==== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.process-step .num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: var(--orange-500);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--gray-500); font-size: 0.98rem; }
@media (max-width: 880px) { .process-grid { grid-template-columns: 1fr; } }

/* ==== TESTIMONIALS ==== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column;
}
.testimonial .stars { font-size: 1.05rem; margin-bottom: 16px; }
.testimonial blockquote {
  margin: 0 0 24px;
  font-size: 1.05rem;
  color: var(--gray-900);
  line-height: 1.55;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-author .name { font-weight: 600; font-size: 0.95rem; color: var(--navy-900); }
.testimonial-author .loc { font-size: 0.83rem; color: var(--gray-500); }
@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ==== FINANCING ==== */
.finance {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.finance::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242, 106, 31, 0.18), transparent 70%);
  border-radius: 50%;
}
.finance h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.finance p { color: rgba(255, 255, 255, 0.78); margin-bottom: 28px; position: relative; }
.finance-perks { display: grid; gap: 12px; position: relative; }
.finance-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem;
}
.finance-perks .check {
  width: 22px; height: 22px;
  background: var(--orange-500);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.finance-amount {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
}
.finance-amount .from { font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); text-transform: uppercase; letter-spacing: 0.1em; }
.finance-amount .price {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--orange-500);
  font-weight: 600;
  line-height: 1;
  margin: 8px 0;
}
.finance-amount .price small { font-size: 1.1rem; color: rgba(255, 255, 255, 0.6); font-family: 'Inter', sans-serif; }
.finance-amount .terms { font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); margin-top: 12px; }
@media (max-width: 880px) {
  .finance { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ==== AREAS ==== */
.areas-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.area-pill {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  text-align: center;
  transition: all 0.2s;
}
.area-pill:hover { border-color: var(--orange-500); color: var(--navy-900); }
.area-pill .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--orange-500);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 880px) { .areas-list { grid-template-columns: repeat(2, 1fr); } }

/* ==== FINAL CTA ==== */
.final-cta {
  background: var(--navy-950);
  color: var(--white);
  text-align: center;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/cta.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(0.2) contrast(1.05);
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(800px 400px at 50% 100%, rgba(242, 106, 31, 0.28), transparent 70%),
    linear-gradient(180deg, rgba(11,18,32,0.85) 0%, rgba(11,18,32,0.92) 100%);
}
.final-cta-inner { z-index: 2; }
.final-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.final-cta h2 { color: var(--white); margin-bottom: 18px; }
.final-cta p { color: rgba(255, 255, 255, 0.78); font-size: 1.18rem; margin-bottom: 36px; }
.final-cta .hero-cta { justify-content: center; }

/* ==== FOOTER ==== */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { color: var(--white); font-family: 'Fraunces', serif; font-size: 1.4rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.footer-grid p { font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 0.92rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--orange-500); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==== ANIMATIONS ==== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==== SERVICES PAGE ==== */
.page-hero {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 350px at 50% 0%, rgba(242, 106, 31, 0.16), transparent 70%);
}
.page-hero .inner { position: relative; max-width: 720px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.18rem; color: rgba(255, 255, 255, 0.78); }
.page-hero .breadcrumb { font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); margin-bottom: 20px; }
.page-hero .breadcrumb a { color: var(--orange-500); }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail h2 { margin-bottom: 16px; }
.service-detail .lead { font-size: 1.08rem; color: var(--gray-500); margin-bottom: 28px; }
.service-detail h4 { margin: 24px 0 12px; color: var(--navy-900); display: flex; align-items: center; gap: 10px; }
.service-detail h4 .ic {
  width: 26px; height: 26px;
  background: var(--orange-50); color: var(--orange-500);
  border-radius: 6px; display: grid; place-items: center;
}
.service-detail ul { padding-left: 0; list-style: none; display: grid; gap: 8px; }
.service-detail ul li {
  font-size: 0.96rem;
  color: var(--gray-700);
  padding-left: 26px;
  position: relative;
}
.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  background: var(--orange-500);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.5 4L6 11.5 2.5 8' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.5 4L6 11.5 2.5 8' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}
@media (max-width: 880px) {
  .service-detail { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .service-detail.reverse { direction: ltr; }
}

/* ==== ABOUT PAGE ==== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-intro p { font-size: 1.08rem; color: var(--gray-700); margin-bottom: 20px; }
.about-intro .signature { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.3rem; color: var(--navy-900); margin-top: 24px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.stat {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.stat .num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 6px;
}
.stat .lbl { font-size: 0.92rem; color: var(--gray-700); }
@media (max-width: 880px) {
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.value-card .ic {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--orange-50);
  color: var(--orange-500);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.value-card h4 { margin-bottom: 8px; }
.value-card p { color: var(--gray-500); font-size: 0.95rem; }
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }

/* ==== CONTACT PAGE ==== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info {
  display: grid;
  gap: 24px;
}
.contact-card {
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}
.contact-card .ic {
  width: 48px; height: 48px;
  background: var(--orange-50);
  color: var(--orange-500);
  border-radius: 10px;
  display: grid; place-items: center;
}
.contact-card h4 { margin-bottom: 4px; }
.contact-card p { color: var(--gray-700); }
.contact-card .big {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy-900);
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form .sub { color: var(--gray-500); margin-bottom: 24px; font-size: 0.95rem; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(242, 106, 31, 0.16);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .btn { width: 100%; }
.contact-form .agree { font-size: 0.8rem; color: var(--gray-500); margin-top: 14px; text-align: center; }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; }
}
