/* ═══════════════════════════════════════════════
   HOWDY WASH ATX — Shared Stylesheet
   Texas Flag · Patriotic · Western Craftsman
   ═══════════════════════════════════════════════ */

:root {
  /* Texas flag palette */
  --tx-red: #BF0A30;
  --tx-red-glow: #D41A42;
  --tx-blue: #002868;
  --tx-blue-mid: #1A3D6D;
  --tx-blue-light: #2A5290;
  --tx-white: #FFFCF8;

  /* Western warmth */
  --saddle: #2E1A0E;
  --leather: #5C3A1E;
  --tan: #A67B52;
  --wheat: #D4B896;
  --cream: #F4EDE4;
  --parchment: #FAF6F0;

  /* Accent */
  --rust: #BF5B2E;
  --rust-glow: #D46A3A;
  --ember: #E8803F;
  --aged-gold: #C4A23D;
  --aged-gold-light: #D9BA55;
  --star-gold: #FFD700;

  /* Semantic */
  --white: #FFFCF8;
  --text: #2A1E14;
  --text-mid: #5E4D3C;
  --text-soft: #8A7968;
  --border: rgba(92,58,30,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--parchment);
  line-height: 1.72;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998; opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3 { font-family: 'Rye', serif; line-height: 1.15; color: var(--saddle); }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ══════ UTILITY ══════ */
.tc { text-align: center; }
.mx { margin-left: auto; margin-right: auto; }

/* ── Lone Star Divider ── */
.star-div {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 0 auto 20px;
}
.star-div::before, .star-div::after {
  content: ''; height: 2px; width: 50px;
  background: linear-gradient(90deg, transparent, var(--tx-red), var(--tx-blue), transparent);
  border-radius: 1px;
}
.star-div .lone-star {
  width: 22px; height: 22px; flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,40,104,0.25));
}

/* ── Texas Flag Ribbon ── */
.tx-ribbon {
  display: flex; height: 4px; width: 100%;
}
.tx-ribbon .r-blue  { flex: 1; background: var(--tx-blue); }
.tx-ribbon .r-white { flex: 1; background: var(--white); }
.tx-ribbon .r-red   { flex: 1; background: var(--tx-red); }

/* ── Section tokens ── */
.s-eye { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--tx-red); }
.s-h   { font-size: clamp(1.85rem, 3.5vw, 2.6rem); margin: 10px 0 14px; }
.s-sub  { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; line-height: 1.72; }

/* ══════ HEADER ══════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,252,248,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s, background 0.4s;
}
.header::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 4px; display: flex;
  background: linear-gradient(90deg, var(--tx-blue) 33.33%, var(--white) 33.33%, var(--white) 66.66%, var(--tx-red) 66.66%);
  opacity: 0.7;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,40,104,0.08); background: rgba(255,252,248,0.96); }
.header.scrolled::after { opacity: 1; }
.h-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.h-brand { display: flex; align-items: center; gap: 14px; }
.h-brand img { height: 62px; width: 62px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 10px rgba(0,40,104,0.15); border: 2px solid rgba(0,40,104,0.1); }
.b-text { line-height: 1.15; }
.b-text .nm { font-family: 'Rye', serif; font-size: 1.1rem; color: var(--saddle); }
.b-text .tg { font-size: 0.66rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--tx-red); }

.n-links { display: flex; align-items: center; gap: 4px; }
.n-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--text-mid); padding: 10px 16px; border-radius: 6px;
  transition: color 0.25s, background 0.25s;
}
.n-links a:hover, .n-links a.active { color: var(--tx-blue); background: rgba(0,40,104,0.05); }
.n-cta {
  margin-left: 10px !important; background: var(--tx-red) !important; color: var(--white) !important;
  padding: 11px 24px !important; border-radius: 6px !important;
  box-shadow: 0 2px 12px rgba(191,10,48,0.25);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s !important;
}
.n-cta:hover { background: var(--tx-red-glow) !important; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(191,10,48,0.35) !important; }
.n-cta.active { background: var(--tx-red-glow) !important; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.burger span { display: block; width: 24px; height: 2px; background: var(--saddle); border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════ PAGE HERO (inner pages) ══════ */
.page-hero {
  background: var(--tx-blue);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 90%, rgba(191,10,48,0.1), transparent),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(0,40,104,0.2), transparent),
    linear-gradient(175deg, #001840 0%, var(--tx-blue) 50%, #1A2744 100%);
}
/* Lone stars background */
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 8l4.12 12.68h13.33l-10.78 7.83 4.12 12.68L40 33.36l-10.79 7.83 4.12-12.68-10.78-7.83h13.33z' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--white); margin-bottom: 14px; }
.page-hero h1 em { font-style: normal; color: var(--star-gold); }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.page-hero .hero-flag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,215,0,0.3); background: rgba(255,215,0,0.08);
  padding: 7px 22px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--star-gold); margin-bottom: 24px;
}
.page-hero .hero-flag svg { width: 13px; height: 13px; fill: var(--star-gold); }

.page-wave { position: relative; margin-top: -1px; }
.page-wave svg { display: block; width: 100%; height: auto; }

/* ══════ BUTTONS ══════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 16px 34px; border-radius: 6px; transition: all 0.3s ease;
}
.btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn-r { background: var(--tx-red); color: var(--white); box-shadow: 0 4px 20px rgba(191,10,48,0.3); }
.btn-r:hover { background: var(--tx-red-glow); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(191,10,48,0.4); }
.btn-b { background: var(--tx-blue); color: var(--white); box-shadow: 0 4px 20px rgba(0,40,104,0.3); }
.btn-b:hover { background: var(--tx-blue-mid); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,40,104,0.4); }
.btn-g { border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
.btn-g:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn-o { background: transparent; border: 2px solid var(--tx-blue); color: var(--tx-blue); }
.btn-o:hover { background: var(--tx-blue); color: var(--white); transform: translateY(-2px); }

/* ══════ SERVICE CARDS ══════ */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 24px; }

.sc {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 34px 30px 30px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.sc::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--tx-blue), var(--tx-red));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.sc:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,40,104,0.08); }
.sc:hover::after { transform: scaleX(1); }
.sc.prem { border-color: var(--aged-gold); background: linear-gradient(170deg, var(--white) 70%, rgba(255,215,0,0.04)); }
.sc.prem::after { background: linear-gradient(90deg, var(--aged-gold), var(--tx-red)); transform: scaleX(1); }

.prem-tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--aged-gold), var(--tx-red));
  color: var(--white); padding: 3px 12px; border-radius: 100px;
}

.sc-ico {
  width: 52px; height: 52px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,40,104,0.08), rgba(191,10,48,0.04));
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.sc-ico svg { width: 26px; height: 26px; stroke: var(--tx-blue); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sc h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; color: var(--saddle); }
.sc p  { font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 22px; }
.sc-btn {
  align-self: flex-start; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--tx-blue); background: rgba(0,40,104,0.06); padding: 10px 20px; border-radius: 6px;
  transition: all 0.25s;
}
.sc-btn:hover { background: var(--tx-blue); color: var(--white); }

/* ══════ VETERAN / TEXAS BADGE ══════ */
.vb {
  display: flex; align-items: flex-start; gap: 16px;
  background: linear-gradient(135deg, rgba(0,40,104,0.06), rgba(191,10,48,0.03));
  border: 1px solid rgba(0,40,104,0.12); border-radius: 12px; padding: 20px 24px; margin-top: 24px;
  position: relative; overflow: hidden;
}
.vb::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--tx-blue), var(--tx-red));
}
.vb svg { width: 32px; height: 32px; fill: var(--tx-blue); flex-shrink: 0; margin-top: 2px; }
.vb strong { display: block; font-size: 0.88rem; color: var(--tx-blue); margin-bottom: 2px; }
.vb span  { font-size: 0.88rem; color: var(--tx-blue-light); line-height: 1.55; }

.met {
  background: var(--cream); border-radius: 14px; padding: 30px 24px; text-align: center;
  border: 1px solid var(--border); transition: transform 0.3s;
}
.met:hover { transform: translateY(-3px); }
.met .v { font-family: 'Rye', serif; font-size: 2rem; color: var(--tx-blue); line-height: 1; margin-bottom: 6px; }
.met .l { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-soft); }

/* ══════ FORM ══════ */
.fc {
  background: var(--white); border-radius: 18px; padding: 42px 38px;
  box-shadow: 0 8px 40px rgba(0,40,104,0.08);
}
.fc h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.25rem; text-align: center; margin-bottom: 28px; }
.fg  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fd  { display: flex; flex-direction: column; gap: 5px; }
.fd.full { grid-column: 1 / -1; }
.fd label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-mid); }
.fd input, .fd select, .fd textarea {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; padding: 12px 16px;
  border: 1.5px solid rgba(0,40,104,0.12); border-radius: 8px;
  background: var(--cream); color: var(--text); outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.fd input:focus, .fd select:focus, .fd textarea:focus {
  border-color: var(--tx-blue); background: var(--white); box-shadow: 0 0 0 3px rgba(0,40,104,0.08);
}
.fd textarea { resize: vertical; min-height: 100px; }
.fd select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23002868' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.sub-btn {
  width: 100%; margin-top: 6px; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 16px;
  background: var(--tx-red); color: var(--white); border-radius: 8px;
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(191,10,48,0.25);
}
.sub-btn:hover { background: var(--tx-red-glow); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(191,10,48,0.35); }
.ff { text-align: center; font-size: 0.78rem; color: var(--text-soft); margin-top: 14px; }

/* ══════ CONTACT CARDS ══════ */
.cc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.cc {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 38px 28px; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.cc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--tx-blue), var(--tx-red));
}
.cc:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,40,104,0.06); }
.cc svg { width: 36px; height: 36px; stroke: var(--tx-blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 14px; }
.cc h4  { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-soft); margin-bottom: 8px; }
.cc a, .cc p { font-size: 1.05rem; font-weight: 600; color: var(--saddle); }
.cc a:hover  { color: var(--tx-red); }

/* ══════ PERKS LIST ══════ */
.perks { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.perks li { display: flex; align-items: center; gap: 14px; color: var(--text-mid); font-size: 0.95rem; }
.perks li svg { width: 20px; height: 20px; stroke: var(--tx-red); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.perks.dark li { color: rgba(255,255,255,0.75); }
.perks.dark li svg { stroke: var(--star-gold); }

/* ══════ CTA BANNER ══════ */
.cta-banner {
  background: var(--tx-blue);
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(191,10,48,0.08), transparent),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0,40,104,0.15), transparent);
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 8l4.12 12.68h13.33l-10.78 7.83 4.12 12.68L40 33.36l-10.79 7.83 4.12-12.68-10.78-7.83h13.33z' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner .wrap { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 520px; margin: 0 auto 32px; }

/* ══════ CONTENT SECTIONS ══════ */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--white); }
.content-prose { max-width: 720px; }
.content-prose p { color: var(--text-mid); font-size: 1.02rem; margin-bottom: 18px; line-height: 1.78; }
.content-prose h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--saddle); margin: 36px 0 12px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.svc-detail {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 26px; transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
}
.svc-detail::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background: linear-gradient(180deg, var(--tx-blue), var(--tx-red)); }
.svc-detail:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,40,104,0.06); }
.svc-detail h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--saddle); margin-bottom: 6px; padding-left: 12px; }
.svc-detail p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; padding-left: 12px; }

/* ══════ FOOTER ══════ */
.footer { background: var(--tx-blue); color: rgba(255,255,255,0.55); padding: 0 0 30px; position: relative; z-index: 1; }
.footer-flag-bar {
  display: flex; height: 6px; margin-bottom: 56px;
}
.footer-flag-bar .fb  { flex: 1; background: var(--tx-blue); }
.footer-flag-bar .fw  { flex: 2; }
.footer-flag-bar .fwt { background: #FFFFFF; flex: 1; }
.footer-flag-bar .fwr { background: var(--tx-red); flex: 1; }
.f-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.f-brand img { height: 64px; border-radius: 50%; margin-bottom: 14px; border: 2px solid rgba(255,255,255,0.1); }
.f-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer h6 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--star-gold); margin-bottom: 18px; }
.fl { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fl a { font-size: 0.9rem; transition: color 0.2s; }
.fl a:hover { color: var(--white); }
.fci { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.fci svg { width: 16px; height: 16px; stroke: var(--star-gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.fci a { font-size: 0.9rem; transition: color 0.2s; }
.fci a:hover { color: var(--white); }
.f-bar { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; }
.f-bar .tx-pride { display: inline-flex; align-items: center; gap: 6px; }
.f-bar .tx-pride svg { width: 14px; height: 14px; fill: var(--star-gold); }

/* ══════ TOAST ══════ */
.toast {
  position: fixed; bottom: 28px; left: 50%; z-index: 9999;
  transform: translateX(-50%) translateY(130px);
  background: var(--tx-blue); color: var(--white);
  padding: 14px 30px; border-radius: 12px;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; stroke: var(--star-gold); fill: none; stroke-width: 2.5; }

/* ══════ ANIMATIONS ══════ */
@keyframes rd { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }
.page-hero h1, .page-hero p, .page-hero .hero-flag { animation: rd 0.7s ease both; }
.page-hero p { animation-delay: 0.12s; }

/* ══════ RESPONSIVE ══════ */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail-grid { grid-template-columns: 1fr 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }
  .h-inner { height: 76px; }
  .h-brand img { height: 50px; width: 50px; }
  .b-text .nm { font-size: 0.95rem; }
  .n-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; background: var(--white);
    padding: 12px 20px 20px; box-shadow: 0 12px 30px rgba(0,0,0,0.1); gap: 2px;
  }
  .n-links.open { display: flex; }
  .n-links a { width: 100%; padding: 13px 16px; }
  .n-cta { margin: 8px 0 0 !important; text-align: center; display: block !important; }
  .burger { display: flex; }
  .page-hero { padding: 110px 0 60px; }
  .content-section { padding: 60px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .fg { grid-template-columns: 1fr; }
  .fc { padding: 28px 22px; }
  .cc-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; gap: 28px; }
  .f-bar { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .page-hero h1 { font-size: 2rem; }
  .cta-banner h2 { font-size: 1.6rem; }
}
