:root {
  --ink: #102f4b;
  --ink-2: #1d4a69;
  --sky: #eaf5fb;
  --sand: #f8f5ef;
  --gold: #f4b73f;
  --gold-2: #ffcf62;
  --mint: #e2f0ec;
  --coral: #e86b4f;
  --call-red: #c62828;
  --call-red-hover: #a61f1f;
  --white: #ffffff;
  --line: #d9e5ed;
  --muted: #5d7283;
  --shadow: 0 18px 54px rgba(17, 47, 75, .12);
  --radius: 22px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font); line-height: 1.55; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link { position: fixed; top: 10px; left: 10px; background: var(--ink); color: white; padding: 10px 14px; border-radius: 8px; transform: translateY(-160%); z-index: 999; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: var(--gold); }
.kicker { font-size: .9rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.h1, h1 { margin: 14px 0 18px; max-width: 15ch; font-size: clamp(2.55rem, 5vw, 4.75rem); line-height: .98; letter-spacing: -.055em; }
h2 { margin: 10px 0 14px; font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.04; letter-spacing: -.04em; }
h3 { margin: 0 0 8px; font-size: 1.2rem; letter-spacing: -.02em; }
p { margin: 0 0 18px; }
.lead { max-width: 56ch; color: #3d5a6d; font-size: 1.12rem; }
.section { padding: 88px 0; }
.section.soft { background: var(--sand); }
.section.sky { background: var(--sky); }
.section.mint { background: var(--mint); }

.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 11px 19px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17, 47, 75, .14); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-2); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: #174361; }
.btn-light { border-color: rgba(255,255,255,.4); color: white; background: rgba(255,255,255,.08); backdrop-filter: blur(6px); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-small { min-height: 40px; padding: 8px 14px; font-size: .92rem; }
.btn-call {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #de3838 0%, var(--call-red) 100%);
  color: white;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(198, 40, 40, .24);
  animation: callPulse 2.4s ease-in-out infinite;
}
.btn-call::after {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-20deg);
  animation: callShine 3.4s ease-in-out infinite;
}
.btn-call:hover {
  background: linear-gradient(180deg, #d53030 0%, var(--call-red-hover) 100%);
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(166, 31, 31, .28);
}
.btn-call span {
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  animation: callIconWiggle 1.8s ease-in-out infinite;
}

/* Call-first conversion actions */
.card-call { margin-top: 9px; }
.footer-call,
.utility-call {
  position: relative;
  overflow: hidden;
}
.footer-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  padding: 7px 12px;
  border: 1px solid var(--call-red);
  border-radius: 999px;
  background: linear-gradient(180deg, #de3838 0%, var(--call-red) 100%);
  color: white;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(198, 40, 40, .18);
}
.footer-call:hover { background: linear-gradient(180deg, #d53030 0%, var(--call-red-hover) 100%); border-color: var(--call-red-hover); color: white !important; }
.footer-call::after,
.utility-call::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg);
  animation: callShine 3.8s ease-in-out infinite;
}


.utility { background: var(--ink); color: #dceaf3; font-size: .83rem; }
.utility .container { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.utility-links { display: flex; gap: 18px; align-items: center; }
.utility a:hover { color: white; }
.utility strong { color: white; }
.utility-call { display: inline-flex; align-items: center; gap: 7px; margin-left: 5px; padding: 4px 10px; border: 1px solid var(--call-red); border-radius: 999px; background: linear-gradient(180deg, #de3838 0%, var(--call-red) 100%); color: white !important; font-weight: 850; white-space: nowrap; transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; box-shadow: 0 8px 18px rgba(198, 40, 40, .18); }
.utility-call::before { content: "☎"; font-size: .9rem; display: inline-block; animation: callIconWiggle 1.8s ease-in-out infinite; }
.utility-call:hover { border-color: var(--call-red-hover); background: linear-gradient(180deg, #d53030 0%, var(--call-red-hover) 100%); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(166, 31, 31, .2); }

.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(16,47,75,.08); backdrop-filter: blur(14px); }
.header-row { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 190px; }
.brand img { width: 40px; height: 40px; }
.brand-text { display: grid; line-height: .95; }
.brand-text strong { font-size: 1.1rem; letter-spacing: -.04em; }
.brand-text span { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { position: relative; font-weight: 750; font-size: .95rem; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; border-radius: 99px; transform: scaleX(0); transform-origin: left; background: var(--gold); transition: transform .2s ease; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 8px; border-radius: 10px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--ink); margin: 5px auto; transition: transform .2s ease, opacity .2s ease; }

.hero { overflow: hidden; position: relative; padding: 70px 0 60px; background: linear-gradient(113deg, #edf7fc 0%, #f8f5ef 57%, #f4e4ba 100%); }
.hero .container { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 44px; }
.hero-copy { position: relative; z-index: 1; padding: 18px 0; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 21px; }
.hero-note { display: flex; align-items: center; gap: 12px; color: #50697a; font-size: .92rem; font-weight: 650; }
.hero-note i { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; background: white; color: var(--ink); box-shadow: 0 8px 20px rgba(15,47,75,.1); font-style: normal; }
.hero-visual { min-height: 530px; position: relative; }
.hero-photo { position: absolute; right: -7%; top: 0; width: 92%; height: 87%; border-radius: 32px; object-fit: cover; box-shadow: var(--shadow); }
.hero-visual::after { content: ""; position: absolute; right: -20%; bottom: -25%; width: 80%; height: 60%; border-radius: 50%; background: rgba(244,183,63,.5); filter: blur(1px); }
.fuel-card { position: absolute; left: 0; bottom: 28px; z-index: 2; width: min(325px, 85%); padding: 22px; border: 1px solid rgba(255,255,255,.7); border-radius: 19px; background: rgba(255,255,255,.93); box-shadow: 0 18px 40px rgba(15,47,75,.15); backdrop-filter: blur(10px); }
.fuel-card strong { display: block; font-size: 1.05rem; margin-bottom: 5px; }
.fuel-card p { color: var(--muted); font-size: .9rem; margin: 0; }
.fuel-card .meter { display: flex; gap: 5px; margin-top: 16px; }
.fuel-card .meter span { height: 8px; flex: 1; border-radius: 99px; background: #d9e8ed; }
.fuel-card .meter span.active { background: var(--gold); }
.hero-dots { position: absolute; left: -5px; top: 28px; display: grid; grid-template-columns: repeat(4, 9px); gap: 8px; opacity: .5; }
.hero-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-2); }

.stats { margin-top: -1px; background: var(--ink); color: white; }
.stats-grid { min-height: 120px; display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 25px 35px; display: flex; align-items: center; gap: 16px; border-right: 1px solid rgba(255,255,255,.14); }
.stat:last-child { border: 0; }
.stat-icon { flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: rgba(244,183,63,.18); font-size: 1.32rem; }
.stat strong { display: block; font-size: 1rem; }
.stat span { color: #bdd0dc; font-size: .88rem; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 62px; align-items: center; }
.split.reverse { grid-template-columns: 1.1fr .9fr; }
.image-stack { position: relative; min-height: 470px; }
.image-stack img.main { width: 88%; height: 440px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.image-stack .small { position: absolute; right: 0; bottom: 0; width: 43%; height: 210px; object-fit: cover; border: 8px solid white; border-radius: 20px; box-shadow: var(--shadow); }
.image-stack .tag { position: absolute; left: 0; top: 30px; transform: translateX(-18%); padding: 10px 15px; border-radius: 13px; background: var(--gold); color: var(--ink); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.feature-list { padding: 0; margin: 24px 0 28px; list-style: none; display: grid; gap: 13px; }
.feature-list li { display: flex; gap: 11px; color: #314e61; font-weight: 650; }
.feature-list li::before { content: "✓"; display: grid; place-items: center; width: 21px; height: 21px; flex: 0 0 auto; margin-top: 1px; border-radius: 50%; background: var(--mint); color: var(--ink); font-weight: 900; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 26px; margin-bottom: 35px; }
.section-head p { margin: 0; max-width: 52ch; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { position: relative; min-height: 100%; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .22s ease, box-shadow .22s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon { display: grid; place-items: center; width: 53px; height: 53px; margin-bottom: 21px; border-radius: 16px; background: var(--sky); font-size: 1.5rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card a.more { display: inline-flex; gap: 8px; align-items: center; margin-top: 4px; color: var(--ink); font-weight: 850; }
.card a.more:hover { color: var(--coral); }
.service-card { padding: 0; }
.service-card .photo { width: 100%; height: 210px; object-fit: cover; }
.service-card .body { padding: 25px 26px 27px; }
.service-card .badge { position: absolute; z-index: 1; top: 16px; left: 16px; padding: 7px 11px; border-radius: 99px; background: rgba(255,255,255,.95); color: var(--ink); font-size: .75rem; font-weight: 850; }

.location-card { overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; border-radius: 24px; background: var(--ink); color: white; box-shadow: var(--shadow); }
.location-card .copy { padding: 45px; }
.location-card h2 { max-width: 12ch; }
.location-card p { color: #c9d9e3; }
.location-card .map { min-height: 335px; position: relative; background: linear-gradient(145deg,#94d3c2 0%, #cae9e0 35%, #f3dd9f 36%, #b5d6e3 72%, #76a8bf 100%); overflow: hidden; }
.location-card .map::before { content: ""; position: absolute; inset: 0; opacity: .7; background-image: linear-gradient(28deg, transparent 45%, rgba(255,255,255,.7) 46%, rgba(255,255,255,.7) 48%, transparent 49%), linear-gradient(110deg, transparent 46%, rgba(255,255,255,.76) 47%, rgba(255,255,255,.76) 50%, transparent 51%), radial-gradient(circle at 60% 55%, #f8bf47 0 7px, transparent 8px); background-size: 210px 110px, 180px 130px, 100% 100%; }
.map-pin { position: absolute; top: 42%; left: 53%; z-index: 1; display: grid; place-items: center; width: 52px; height: 52px; border: 8px solid white; border-radius: 50% 50% 50% 4px; background: var(--coral); transform: rotate(-45deg); box-shadow: 0 10px 20px rgba(0,0,0,.18); }
.map-pin::after { content: ""; width: 14px; height: 14px; border-radius: 50%; background: white; }

.testimonial { position: relative; border-radius: 24px; background: #f6fafc; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .45s ease; }
.quote { min-width: 100%; padding: 53px max(48px, 7vw); }
.quote-mark { font-family: Georgia, serif; color: var(--gold); font-size: 5rem; line-height: .65; }
.quote blockquote { max-width: 45ch; margin: 14px 0 25px; font-size: clamp(1.3rem, 2.2vw, 1.8rem); line-height: 1.35; letter-spacing: -.025em; font-weight: 650; }
.quote cite { font-style: normal; color: var(--muted); font-weight: 700; }
.slider-controls { position: absolute; right: 30px; bottom: 30px; display: flex; gap: 8px; }
.slider-controls button { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: white; font-size: 1.2rem; }
.slider-controls button:hover { background: var(--gold); border-color: var(--gold); }

.cta { position: relative; overflow: hidden; padding: 74px 0; color: white; background: var(--ink); }
.cta::before { content: ""; position: absolute; width: 460px; height: 460px; top: -240px; right: -130px; border-radius: 50%; background: var(--gold); opacity: .98; }
.cta::after { content: ""; position: absolute; width: 420px; height: 420px; bottom: -300px; left: 14%; border-radius: 50%; border: 55px solid rgba(255,255,255,.08); }
.cta .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 38px; }
.cta h2 { margin: 0; max-width: 15ch; }
.cta p { max-width: 48ch; margin: 10px 0 0; color: #cde0eb; }

.footer { background: #0b253a; color: #d9e6ed; }
.footer-top { padding: 55px 0 36px; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 35px; }
.footer .brand { color: white; margin-bottom: 15px; }
.footer .brand-text span { color: #a8bfcc; }
.footer p { color: #a9c0cc; max-width: 33ch; }
.footer h3 { margin-bottom: 14px; color: white; font-size: .9rem; text-transform: uppercase; letter-spacing: .09em; }
.footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; }
.footer li { font-size: .92rem; }
.footer a:hover { color: var(--gold); }
.footer-bottom { min-height: 65px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.11); color: #98b0bd; font-size: .84rem; }
.footer-bottom nav { display: flex; gap: 18px; }

.page-hero { padding: 75px 0; position: relative; overflow: hidden; color: white; background: var(--ink); }
.page-hero::before { content: ""; position: absolute; top: -150px; right: -50px; width: 480px; height: 480px; border-radius: 50%; background: var(--gold); opacity: .9; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lead { color: #d2e3eb; }
.breadcrumb { margin-bottom: 20px; display: flex; align-items: center; gap: 9px; color: #cadbe4; font-size: .88rem; }
.breadcrumb a:hover { color: var(--gold); }

.form-shell { padding: 33px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; color: #355266; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cbdce5; border-radius: 10px; padding: 13px 14px; color: var(--ink); background: #fbfdfe; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink-2); box-shadow: 0 0 0 3px rgba(45,114,153,.15); }
.field textarea { min-height: 115px; resize: vertical; }
.form-status { min-height: 24px; margin-top: 13px; color: #1f6c4d; font-size: .93rem; font-weight: 700; }
.quote-box { margin-top: 21px; padding: 17px 18px; display: flex; gap: 13px; border-radius: 15px; background: var(--sky); color: #315166; font-size: .9rem; }
.quote-box strong { color: var(--ink); }

.faq { max-width: 850px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: white; }
.faq-q { width: 100%; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 0; background: white; color: var(--ink); text-align: left; font-weight: 820; }
.faq-q i { font-style: normal; font-size: 1.4rem; transition: transform .2s ease; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 20px; transition: max-height .3s ease, padding .3s ease; color: var(--muted); }
.faq-item.open .faq-a { max-height: 230px; padding: 0 20px 18px; }

.notice { border-radius: 17px; background: #fff6d9; padding: 18px 19px; color: #614b18; font-size: .93rem; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.contact-block { padding: 24px; border-radius: 18px; background: var(--sky); }
.contact-block + .contact-block { margin-top: 15px; }
.contact-block a { color: var(--ink); font-weight: 800; }




@keyframes callPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(198, 40, 40, .24); transform: translateY(0); }
  50% { box-shadow: 0 14px 34px rgba(198, 40, 40, .34); transform: translateY(-1px); }
}

@keyframes callShine {
  0% { left: -90%; }
  55%, 100% { left: 135%; }
}

@keyframes callIconWiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  10% { transform: rotate(-10deg) scale(1.04); }
  18% { transform: rotate(10deg) scale(1.04); }
  26% { transform: rotate(-8deg) scale(1.03); }
  34% { transform: rotate(8deg) scale(1.03); }
  42% { transform: rotate(0deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-call,
  .btn-call span,
  .btn-call::after,
  .footer-call::after,
  .utility-call::before,
  .utility-call::after {
    animation: none !important;
  }
}
@media (max-width: 1040px) {
  .nav { position: fixed; top: 118px; inset: 0 0 auto 0; display: none; padding: 22px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 14px 30px rgba(15,47,75,.13); }
  .nav.open { display: grid; align-items: start; gap: 7px; }
  .nav a { padding: 12px; }
  .nav a.btn { margin-top: 8px; }
  .menu-toggle { display: block; }
  .hero .container, .split, .split.reverse, .contact-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
  .hero-copy { padding-top: 0; }
  .hero-visual { min-height: 420px; max-width: 650px; width: 100%; margin: 0 auto; }
  .hero-photo { right: 0; width: 86%; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .stat:last-child { border-bottom: 0; }
  .image-stack { min-height: 405px; }
  .image-stack img.main { height: 380px; }
  .location-card { grid-template-columns: 1fr; }
  .location-card .map { min-height: 250px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-top > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .utility { display: none; }
  .header-row { min-height: 68px; }
  .nav { top: 68px; }
  .brand { min-width: auto; }
  .brand img { width: 35px; height: 35px; }
  .brand-text strong { font-size: 1rem; }
  .brand-text span { font-size: .63rem; }
  .h1, h1 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  h2 { font-size: 2rem; }
  .section { padding: 62px 0; }
  .section-head, .cta .container { display: block; }
  .section-head .btn { margin-top: 18px; }
  .hero-visual { min-height: 345px; }
  .hero-photo { width: 94%; height: 90%; border-radius: 23px; }
  .fuel-card { bottom: 0; padding: 17px; }
  .grid-3, .grid-2, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .image-stack { min-height: 326px; }
  .image-stack img.main { width: 89%; height: 305px; }
  .image-stack .small { height: 140px; width: 44%; border-width: 5px; }
  .image-stack .tag { transform: none; top: 16px; left: 13px; }
  .location-card .copy { padding: 30px; }
  .cta { padding: 58px 0; }
  .cta .btn { margin-top: 22px; }
  .footer-top { grid-template-columns: 1fr; padding-top: 45px; }
  .footer-top > :first-child { grid-column: auto; }
  .footer-bottom { padding: 18px 0; display: grid; align-items: start; }
  .footer-bottom nav { flex-wrap: wrap; }
  .page-hero { padding: 57px 0; }
  .form-shell { padding: 23px; }
}


/* Privacy policy page */
.policy-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); align-items: start; gap: 54px; }
.policy-sidebar { position: sticky; top: 106px; display: grid; gap: 5px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--sand); }
.policy-sidebar .eyebrow { margin-bottom: 7px; }
.policy-sidebar a { padding: 8px 9px; border-radius: 9px; color: #3d5a6d; font-size: .9rem; font-weight: 750; }
.policy-sidebar a:hover { background: white; color: var(--ink); }
.policy-content { max-width: 790px; }
.policy-content section { scroll-margin-top: 120px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.policy-content section:first-of-type { padding-top: 9px; }
.policy-content section:last-of-type { border-bottom: 0; }
.policy-content h2 { font-size: clamp(1.55rem, 2.5vw, 2.25rem); max-width: 24ch; }
.policy-content p { color: var(--muted); }
.policy-date { margin: 0 0 22px; color: #486174; font-size: .93rem; }
.policy-note { margin-bottom: 20px; padding: 18px 20px; border-left: 4px solid var(--gold); border-radius: 12px; color: #425d6e; background: var(--sky); font-size: .93rem; }
.policy-contact { display: grid; gap: 7px; margin-top: 16px; padding: 20px; border-radius: 16px; background: var(--sand); color: #385364; }
.policy-contact strong { color: var(--ink); }
.policy-contact a { color: var(--ink); font-weight: 800; }
@media (max-width: 900px) { .policy-layout { grid-template-columns: 1fr; gap: 28px; } .policy-sidebar { position: static; grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .policy-sidebar { grid-template-columns: 1fr; padding: 16px; } .policy-content section { padding: 25px 0; } }


/* Propane Delivers brand refinements */
.brand { gap: 12px; }
.brand img { width: 44px; height: 44px; }
.brand-text strong { font-size: 1.08rem; line-height: 1.05; letter-spacing: -0.01em; }
.brand-text span { font-size: .78rem; }
.policy-note {
  border-left: 4px solid #d62828;
  background: #fff7f7;
}
.policy-date {
  padding: 10px 14px;
  background: #f6f8fb;
  border: 1px solid #e1e8ef;
  border-radius: 14px;
  display: inline-block;
}
.policy-contact {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #e1e8ef;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(0,0,0,.05);
}
@media (max-width: 880px) {
  .brand-text strong { font-size: 1rem; }
  .brand-text span { font-size: .72rem; }
}


/* Premium animated call button upgrade */
.btn-call {
  isolation: isolate;
  position: relative;
  overflow: visible;
  border-color: rgba(255, 255, 255, .12);
  background: linear-gradient(135deg, #ff4a3d 0%, #d62828 48%, #991616 100%);
  color: #fff;
  box-shadow:
    0 14px 32px rgba(198, 40, 40, .32),
    inset 0 1px 0 rgba(255, 255, 255, .38),
    inset 0 -2px 0 rgba(80, 0, 0, .18);
  animation: callBreathPremium 2.45s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.btn-call::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  border: 2px solid rgba(214, 40, 40, .45);
  opacity: 0;
  transform: scale(.92);
  animation: callRingPremium 2.45s ease-out infinite;
  pointer-events: none;
}

.btn-call::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, transparent 32%, rgba(255,255,255,.48) 47%, transparent 62%, transparent 100%);
  transform: translateX(-135%) skewX(-18deg);
  animation: callShinePremium 3.05s ease-in-out infinite;
  pointer-events: none;
}

.btn-call span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transform-origin: 50% 50%;
  animation: phoneRingPremium 1.55s ease-in-out infinite;
}

.btn-call:hover,
.btn-call:focus-visible {
  background: linear-gradient(135deg, #ff5b4f 0%, #c91f1f 48%, #820f0f 100%);
  transform: translateY(-4px) scale(1.035);
  box-shadow:
    0 18px 42px rgba(198, 40, 40, .42),
    0 0 0 5px rgba(214, 40, 40, .12),
    inset 0 1px 0 rgba(255, 255, 255, .45);
}

.btn-call:active {
  transform: translateY(-1px) scale(.99);
}

.utility-call,
.footer-call {
  background: linear-gradient(135deg, #ff4a3d 0%, #d62828 52%, #991616 100%) !important;
  box-shadow: 0 8px 20px rgba(198, 40, 40, .26), inset 0 1px 0 rgba(255,255,255,.32);
  animation: callMiniBreathPremium 2.7s ease-in-out infinite;
}

.utility-call:hover,
.footer-call:hover {
  background: linear-gradient(135deg, #ff5b4f 0%, #c91f1f 52%, #820f0f 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(198, 40, 40, .34), inset 0 1px 0 rgba(255,255,255,.38);
}

.utility-call::before {
  animation: phoneRingPremium 1.55s ease-in-out infinite !important;
}

@keyframes callBreathPremium {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 14px 32px rgba(198, 40, 40, .32),
      inset 0 1px 0 rgba(255, 255, 255, .38),
      inset 0 -2px 0 rgba(80, 0, 0, .18);
  }
  50% {
    transform: translateY(-1px) scale(1.018);
    box-shadow:
      0 20px 45px rgba(198, 40, 40, .45),
      0 0 0 5px rgba(214, 40, 40, .08),
      inset 0 1px 0 rgba(255, 255, 255, .42),
      inset 0 -2px 0 rgba(80, 0, 0, .15);
  }
}

@keyframes callMiniBreathPremium {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}

@keyframes callRingPremium {
  0% { opacity: 0; transform: scale(.92); }
  18% { opacity: .52; }
  70%, 100% { opacity: 0; transform: scale(1.22); }
}

@keyframes callShinePremium {
  0% { transform: translateX(-135%) skewX(-18deg); opacity: 0; }
  18% { opacity: 1; }
  48%, 100% { transform: translateX(135%) skewX(-18deg); opacity: 0; }
}

@keyframes phoneRingPremium {
  0%, 100% { transform: rotate(0deg) scale(1); }
  8% { transform: rotate(-14deg) scale(1.08); }
  16% { transform: rotate(13deg) scale(1.08); }
  24% { transform: rotate(-10deg) scale(1.05); }
  32% { transform: rotate(8deg) scale(1.04); }
  40% { transform: rotate(0deg) scale(1); }
}

@media (max-width: 620px) {
  .btn-call {
    min-height: 52px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav .btn-call {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-call,
  .btn-call::before,
  .btn-call::after,
  .btn-call span,
  .utility-call,
  .utility-call::before,
  .utility-call::after,
  .footer-call,
  .footer-call::after {
    animation: none !important;
  }
}
