/* =============================================
   JUST ASK RENTALS — Chase, BC
   True Value Hardware sign-accurate palette: red, white & blue
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  --white:      #ffffff;
  --paper:      #f6f7f9;
  --ink:        #14171a;
  --steel-600:  #5b6570;
  --blue-800:   #002d6b;
  --blue-600:   #0a4da0;
  --red-700:    #b40e28;
  --red-500:    #d81f3f;
  --line:       #e2e5e8;

  --grad-red:  linear-gradient(135deg, var(--red-500), var(--red-700));
  --grad-blue: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  --grad-flag: linear-gradient(90deg, var(--red-500), var(--blue-600));

  --font-script: 'Kaushan Script', cursive;
  --font-block:  'Anton', 'Arial Narrow', sans-serif;
  --font-label:  'Oswald', 'Arial Narrow', sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --r:   16px;
  --sh-sm: 0 3px 14px rgba(20,23,26,.07);
  --sh-md: 0 10px 30px rgba(20,23,26,.10);
  --sh-lg: 0 24px 60px rgba(20,23,26,.14);
  --glow-red:  0 0 0 1px rgba(216,31,63,.25), 0 14px 30px rgba(216,31,63,.18);
  --glow-blue: 0 0 0 1px rgba(10,77,160,.25), 0 14px 30px rgba(10,77,160,.16);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul { list-style: none; }
svg { display: block; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ===== FOCUS ===== */
:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 3px; border-radius: 4px; }

/* ===== REVEAL SYSTEM ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; will-change: transform; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; } .d5 { transition-delay: .4s; } .d6 { transition-delay: .48s; }

/* ===== SHARED ===== */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
section:not(#hero):not(#trust) { padding: 4.5rem 0; background: var(--white); }
section#offer, section#why { background: var(--paper); }

.eyebrow {
  display: block; font-family: var(--font-label); font-size: .74rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--blue-800); text-align: center; margin-bottom: .75rem;
}
.eyebrow-left { text-align: left; }
.section-title {
  font-size: clamp(1.9rem, 5.5vw, 2.9rem); font-weight: 800; text-align: center;
  color: var(--ink); margin-bottom: .75rem; letter-spacing: -.02em; font-family: var(--font-body);
}
.accent-red { font-style: normal; background: var(--grad-red); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.accent-blue { font-style: normal; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-sub { text-align: center; color: var(--steel-600); font-size: 1.02rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }
.rule { display: block; width: 56px; height: 4px; background: var(--grad-flag); border-radius: 2px; margin: 1.25rem auto 3rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem; border-radius: 10px; font-size: .92rem; font-weight: 700;
  letter-spacing: .01em; min-height: 52px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--grad-red); color: var(--white); box-shadow: var(--sh-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow-red); }
.btn-outline { background: transparent; color: var(--blue-800); border: 1.5px solid var(--blue-600); }
.btn-outline:hover { background: rgba(10,77,160,.06); border-color: var(--blue-800); transform: translateY(-2px); }

/* ===== NAV ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 1.25rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: box-shadow .3s ease, border-color .3s ease;
}
#nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 20px rgba(20,23,26,.06); }
.nav-inner { max-width: 1140px; margin: 0 auto; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.nav-logo { display: flex; align-items: baseline; gap: .35rem; flex-shrink: 0; }
.nav-logo-script { font-family: var(--font-script); font-size: 1.5rem; color: var(--red-500); line-height: 1; }
.nav-logo-block { font-family: var(--font-block); font-size: 1.05rem; color: var(--blue-800); text-transform: uppercase; letter-spacing: .03em; transform: skewX(-8deg); display: inline-block; }
.nav-links { display: none; gap: 2rem; align-items: center; }
.nav-links a { position: relative; font-family: var(--font-label); font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--steel-600); transition: color .2s; padding-bottom: 3px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--grad-flag); border-radius: 1px; transition: width .25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-call { display: inline-flex; align-items: center; gap: 6px; background: var(--grad-red); color: var(--white); padding: .55rem 1.1rem; border-radius: 8px; font-size: .76rem; font-weight: 700; letter-spacing: .02em; min-height: 42px; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease; }
.nav-call svg { width: 14px; height: 14px; }
.nav-call:hover { transform: translateY(-1px); box-shadow: var(--glow-red); }
.hamburger { padding: 8px; min-width: 44px; min-height: 44px; display: flex; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .nav-links { display: flex; } .hamburger { display: none; } }

/* ===== MOBILE OVERLAY ===== */
#mob-ov {
  position: fixed; inset: 0; z-index: 999; background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem; transform: translateY(-100%); transition: transform .4s cubic-bezier(.4,0,.2,1); pointer-events: none;
}
#mob-ov.open { transform: translateY(0); pointer-events: all; }
#mob-ov a { font-family: var(--font-label); font-size: 1.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--ink); padding: .65rem 0; border-bottom: 1px solid var(--line); width: 100%; max-width: 320px; text-align: center; opacity: 0; transform: translateY(16px); transition: opacity .3s ease, transform .3s ease, color .2s; }
#mob-ov.open a { opacity: 1; transform: translateY(0); }
#mob-ov.open a:nth-child(1) { transition-delay: .06s; }
#mob-ov.open a:nth-child(2) { transition-delay: .12s; }
#mob-ov.open a:nth-child(3) { transition-delay: .18s; }
#mob-ov.open a:nth-child(4) { transition-delay: .24s; }
#mob-ov.open a:nth-child(5) { transition-delay: .3s; }
#mob-ov a:last-child { border-bottom: none; color: var(--red-500); }
#mob-ov a:hover { color: var(--red-500); }

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 7rem 1.25rem 5rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}
.hero-glow {
  position: absolute; top: 50%; left: 50%; width: min(920px, 150vw); height: min(680px, 110vw);
  transform: translate(-50%, -50%); pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 32% 38%, rgba(216,31,63,.16), transparent 55%),
    radial-gradient(circle at 68% 62%, rgba(10,77,160,.16), transparent 55%);
  filter: blur(50px);
}

.hero-inner { position: relative; z-index: 1; max-width: 860px; width: 100%; }

.sign-board {
  position: relative; display: inline-block; margin: 0 auto 1.75rem;
  background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: 22px;
  padding: 2.5rem 2.75rem 2.1rem; box-shadow: var(--sh-lg); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(16px) scale(.97); animation: signIn .9s cubic-bezier(.2,.7,.3,1) .1s forwards;
}
@keyframes signIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@media (prefers-reduced-motion: reduce) { .sign-board { animation: none; opacity: 1; transform: none; } }

.sign-lockup { display: flex; flex-direction: column; align-items: center; }

.bolt {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: linear-gradient(135deg, var(--steel-600), var(--ink));
  opacity: .3; box-shadow: inset 0 1px 1px rgba(255,255,255,.6);
}
.bolt-tl { top: 14px; left: 14px; }
.bolt-tr { top: 14px; right: 14px; }
.bolt-bl { bottom: 14px; left: 14px; }
.bolt-br { bottom: 14px; right: 14px; }

.sign-label { font-family: var(--font-label); font-weight: 600; font-size: clamp(.78rem, 1.8vw, 1.05rem); letter-spacing: .22em; text-transform: uppercase; color: var(--blue-800); margin-bottom: .55rem; }
.sign-script { font-family: var(--font-script); font-size: clamp(3.6rem, 14vw, 7.8rem); line-height: .95; background: var(--grad-red); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: -.05em; }
.sign-block { font-family: var(--font-block); font-size: clamp(2.15rem, 8vw, 4.1rem); line-height: 1; text-transform: uppercase; letter-spacing: .05em; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; transform: skewX(-9deg); margin-top: .32rem; }
.sign-phone { display: inline-block; margin-top: 1.35rem; font-size: 1.12rem; font-weight: 700; color: var(--ink); letter-spacing: .02em; border-bottom: 2px solid var(--line); padding-bottom: 2px; transition: border-color .2s, color .2s; }
.sign-phone:hover { color: var(--red-500); border-color: var(--red-500); }

.hero-sub { font-size: clamp(1rem, 2vw, 1.12rem); color: var(--steel-600); max-width: 520px; margin: 0 auto 1.75rem; line-height: 1.7; }
.hero-cta { display: flex; flex-direction: column; gap: .875rem; align-items: center; }
.scroll-ind { position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); color: var(--blue-600); font-size: 1.2rem; animation: bounceDown 2s ease-in-out infinite; z-index: 2; }
@keyframes bounceDown { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: .55; } 50% { transform: translateX(-50%) translateY(9px); opacity: 1; } }
@media (min-width: 640px) { .hero-cta { flex-direction: row; justify-content: center; } }

/* ===== TRUST BAR ===== */
#trust { background: var(--paper); position: relative; padding: 1.4rem 1.25rem; }
#trust::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-flag); }
.trust-inner {
  max-width: 720px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: .5rem .7rem; text-align: center; transition: opacity .2s ease;
}
.trust-inner:hover { opacity: .8; }
.trust-stars { color: var(--blue-800); width: 20px; height: 20px; }
.trust-stars svg { width: 20px; height: 20px; }
.trust-num { font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.trust-label { font-size: .82rem; color: var(--steel-600); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.trust-sep { color: var(--line); }
.trust-arrow { width: 16px; height: 16px; color: var(--red-500); margin-left: .2rem; }

/* ===== OFFER CARDS ===== */
.offer-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.offer-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 2rem 1.75rem; box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.offer-card.red-tint:hover { transform: translateY(-6px); box-shadow: var(--glow-red); border-color: rgba(216,31,63,.3); }
.offer-card.blue-tint:hover { transform: translateY(-6px); box-shadow: var(--glow-blue); border-color: rgba(10,77,160,.3); }
.offer-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; color: var(--white); }
.offer-card.red-tint .offer-icon { background: var(--grad-red); }
.offer-card.blue-tint .offer-icon { background: var(--grad-blue); }
.offer-icon svg { width: 26px; height: 26px; }
.offer-name { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: .6rem; }
.offer-desc { font-size: .92rem; color: var(--steel-600); line-height: 1.65; margin-bottom: 1.1rem; }
.offer-tag { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.offer-tag-red { background: rgba(216,31,63,.08); color: var(--red-700); border: 1px solid rgba(216,31,63,.22); }
.offer-tag-blue { background: rgba(10,77,160,.08); color: var(--blue-800); border: 1px solid rgba(10,77,160,.22); }
@media (min-width: 768px) { .offer-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== ABOUT (MEET CHARLIE) ===== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; align-items: center; }
.about-text h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 800; color: var(--ink); margin-bottom: 1rem; letter-spacing: -.01em; }
.about-text p { color: var(--steel-600); font-size: 1rem; line-height: 1.8; margin-bottom: 1.1rem; }
.about-stat-col { display: flex; flex-direction: column; gap: 1rem; }
.about-stat { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 1.25rem 1.5rem; }
.about-stat-red { border-left: 3px solid var(--red-500); }
.about-stat-blue { border-left: 3px solid var(--blue-600); }
.about-stat-num { display: block; font-size: 2.1rem; font-weight: 900; color: var(--ink); line-height: 1; margin-bottom: .3rem; }
.about-stat-label { font-size: .8rem; color: var(--steel-600); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1.2fr 1fr; } }

/* ===== WHY JUST ASK ===== */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.why-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 2.25rem 1.75rem; overflow: hidden; box-shadow: var(--sh-sm); }
.why-num { position: absolute; top: -.5rem; right: .5rem; font-size: 5.5rem; font-weight: 900; line-height: 1; opacity: .08; user-select: none; }
.why-card.red-tint .why-num { color: var(--red-500); }
.why-card.blue-tint .why-num { color: var(--blue-600); }
.why-card h3 { position: relative; font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-bottom: .6rem; }
.why-card p { position: relative; font-size: .92rem; color: var(--steel-600); line-height: 1.7; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== TESTIMONIALS ===== */
.pull-quote { position: relative; max-width: 760px; margin: 0 auto 3rem; text-align: center; padding: 0 1rem; }
.pq-mark { position: absolute; top: -2.5rem; left: 50%; transform: translateX(-50%); font-size: 8rem; line-height: 1; background: var(--grad-red); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: .3; user-select: none; pointer-events: none; font-family: Georgia, serif; }
.pq-stars { display: flex; justify-content: center; gap: 4px; color: var(--blue-800); margin-bottom: 1.25rem; position: relative; }
.pq-stars svg { width: 18px; height: 18px; }
.pq-text { font-size: clamp(1.15rem, 2.8vw, 1.5rem); font-weight: 700; color: var(--ink); line-height: 1.55; margin-bottom: 1.1rem; position: relative; }
.pq-attr { font-family: var(--font-label); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red-700); position: relative; }

.rev-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem; max-width: 780px; margin-left: auto; margin-right: auto; }
.rev-card { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--blue-600); border-radius: var(--r); padding: 1.75rem 1.6rem; box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease; }
.rev-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.rev-stars { display: flex; gap: 2px; color: var(--blue-800); margin-bottom: .9rem; }
.rev-stars svg { width: 14px; height: 14px; }
.rev-text { font-size: 1.02rem; font-weight: 600; color: var(--ink); line-height: 1.65; margin-bottom: .9rem; }
.rev-name { font-family: var(--font-label); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red-700); }
.rev-source { font-size: .76rem; color: var(--steel-600); }

.reviews-foot { text-align: center; padding-top: 2rem; border-top: 1px solid var(--line); font-size: .92rem; color: var(--steel-600); }
.reviews-foot a { color: var(--red-700); font-weight: 700; border-bottom: 1.5px solid rgba(180,14,40,.3); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.reviews-foot a:hover { color: var(--red-500); border-color: var(--red-500); }
@media (min-width: 640px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 170px); gap: 1rem; }
.gallery-item { position: relative; border-radius: var(--r); overflow: hidden; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.gallery-item-wide { grid-column: span 2; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .4s ease; position: relative; z-index: 1; }
.gallery-img.loaded { opacity: 1; }
.gallery-placeholder {
  position: absolute; inset: 0; z-index: 2;
  background: repeating-linear-gradient(45deg, var(--paper) 0 14px, var(--white) 14px 28px, rgba(216,31,63,.10) 28px 30px, var(--paper) 30px 42px, var(--white) 42px 56px, rgba(10,77,160,.10) 56px 58px);
  display: flex; align-items: flex-end; justify-content: flex-start; padding: .9rem 1rem;
}
.gallery-placeholder span { font-family: var(--font-label); font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--white); background: var(--blue-800); padding: 4px 10px; border-radius: 6px; }
.gallery-placeholder.hidden { display: none; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 220px); } }

/* ===== LOCATION ===== */
.loc-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.map-wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-md); order: -1; border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 280px; border: none; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--blue-800); border-radius: var(--r); padding: 2rem 1.75rem; box-shadow: var(--sh-md); }
.ci { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.ci:last-of-type { margin-bottom: 0; }
.ci-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--white); }
.ci-icon-red { background: var(--grad-red); }
.ci-icon-blue { background: var(--grad-blue); }
.ci-lbl { font-family: var(--font-label); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--steel-600); margin-bottom: .25rem; }
.ci-val { font-size: .975rem; color: var(--ink); line-height: 1.6; }
.ci-val a { color: var(--ink); font-weight: 600; transition: color .2s; }
.ci-val a:hover { color: var(--red-500); }
.ci-note { font-size: .76rem; color: var(--steel-600); font-style: italic; margin-top: .3rem; }
.hrs { border-collapse: collapse; width: 100%; }
.hrs td { padding: 3px 0; font-size: .875rem; vertical-align: top; color: var(--ink); }
.hrs td:first-child { font-size: .72rem; font-weight: 700; color: var(--steel-600); text-transform: uppercase; letter-spacing: .06em; padding-right: 1rem; white-space: nowrap; }
.hrs .closed { color: var(--steel-600); font-style: italic; }
.loc-directions { width: 100%; margin-top: 1.75rem; }
@media (min-width: 768px) { .loc-grid { grid-template-columns: 1fr 1fr; align-items: start; } .map-wrap { order: 0; } .map-wrap iframe { height: 380px; } }

/* ===== FOOTER ===== */
footer { position: relative; background: var(--paper); padding: 3rem 1.25rem 2rem; border-top: 1px solid var(--line); }
footer::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 3px; background: var(--grad-flag); }
.foot-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.75rem; text-align: center; }
.foot-logo { display: flex; flex-direction: column; align-items: center; margin-bottom: .5rem; }
.foot-logo-label { font-family: var(--font-label); font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-800); margin-bottom: .15rem; }
.foot-logo-script { font-family: var(--font-script); font-size: 1.6rem; color: var(--red-500); line-height: 1; }
.foot-logo-block { font-family: var(--font-block); font-size: 1.1rem; color: var(--blue-800); text-transform: uppercase; letter-spacing: .04em; transform: skewX(-8deg); }
.foot-tag { font-size: .82rem; color: var(--steel-600); }
.foot-nav { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: center; }
.foot-nav a { font-family: var(--font-label); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--steel-600); transition: color .2s; }
.foot-nav a:hover { color: var(--red-500); }
.foot-contact { display: flex; flex-direction: column; align-items: center; gap: .6rem; font-size: .85rem; color: var(--steel-600); }
.foot-contact a:hover { color: var(--red-500); }
.foot-social { display: flex; gap: .625rem; margin-top: .2rem; }
.soc-link { width: 38px; height: 38px; border-radius: 8px; background: var(--white); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--steel-600); transition: color .2s, border-color .2s, transform .2s; }
.soc-link svg { width: 17px; height: 17px; }
.soc-link:hover { color: var(--red-500); border-color: var(--red-500); transform: translateY(-2px); }
.foot-copy { font-size: .76rem; color: var(--steel-600); grid-column: 1 / -1; padding-top: 1.25rem; border-top: 1px solid var(--line); }
@media (min-width: 768px) {
  .foot-inner { grid-template-columns: 1.3fr 1fr 1fr; align-items: start; text-align: left; }
  .foot-brand-col, .foot-contact { align-items: flex-start; }
  .foot-logo { align-items: flex-start; }
  .foot-nav { justify-content: flex-start; flex-direction: column; gap: .6rem; }
  .foot-social { justify-content: flex-start; }
}

/* ===== SCROLL TOP ===== */
#scr-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-red); color: var(--white); box-shadow: var(--sh-md);
  display: none; align-items: center; justify-content: center; z-index: 200;
  transition: transform .2s ease, box-shadow .2s ease;
}
#scr-top svg { width: 18px; height: 18px; }
#scr-top.vis { display: flex; }
#scr-top:hover { transform: translateY(-3px); box-shadow: var(--glow-red); }

/* ===== LARGE SCREENS ===== */
@media (min-width: 1440px) {
  .wrap { max-width: 1280px; }
  .sign-script { font-size: 8.6rem; }
  .sign-block { font-size: 4.6rem; }
}
