/* ========================================
   NASCO ELECTRICAL — Site Styles
   Brand: Upscale minimalist, black + platinum + brass accent
   ======================================== */

:root {
  --ink: #0a0a0a;
  --ink-2: #141414;
  --ink-3: #1c1c1c;
  --platinum: #d9d9d9;
  --platinum-mid: #b0b0b0;
  --platinum-dim: #8a8a8a;
  --bone: #f6f5f2;
  --bone-2: #ebe9e4;
  --brass: #b08d57;
  --brass-dark: #8e6f42;
  --line: rgba(255,255,255,0.09);
  --line-light: rgba(10,10,10,0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 60px rgba(10,10,10,0.22);
  --radius: 4px;
  --radius-lg: 8px;
  --max: 1200px;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a1a;
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ink); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--brass); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; font-weight: 600; }
h4 { font-size: 1rem; margin-bottom: 0.75rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

p { margin-bottom: 1rem; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 1.15rem;
  color: #3a3a3a;
  max-width: 640px;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== Header / Nav ===== */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--platinum);
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  object-fit: cover;
  background: var(--ink);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--platinum);
}
.brand-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--platinum-dim);
  margin-top: 0.25rem;
}

.nav {
  display: flex;
  list-style: none;
  gap: 0.15rem;
}
.nav a {
  display: block;
  padding: 0.5rem 0.95rem;
  color: var(--platinum-mid);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: color 0.2s;
}
.nav a:hover { color: var(--platinum); }
.nav a.active { color: var(--brass); }

.btn-call {
  background: transparent;
  color: var(--platinum);
  border: 1px solid var(--platinum-dim);
  padding: 0.55rem 1.05rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.25s;
}
.btn-call:hover {
  background: var(--platinum);
  color: var(--ink);
  border-color: var(--platinum);
}

/* ===== Buttons ===== */

.btn {
  display: inline-block;
  padding: 0.95rem 1.9rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  margin: 0.25rem 0.25rem 0.25rem 0;
}
.btn-primary {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bone);
}
.btn-light {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.btn-light:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}
.btn-ghost-light {
  background: transparent;
  color: var(--platinum);
  border-color: var(--platinum-dim);
}
.btn-ghost-light:hover {
  background: var(--platinum);
  color: var(--ink);
  border-color: var(--platinum);
}
.btn-lg { padding: 1.1rem 2.3rem; font-size: 0.9rem; }

/* ===== Hero ===== */

.hero {
  background: var(--ink);
  color: var(--platinum);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(176,141,87,0.12) 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(217,217,217,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-text h1 { color: var(--bone); font-weight: 400; }
.hero-text h1 em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}
.hero-text .lead { color: rgba(230,230,230,0.78); max-width: 560px; margin-bottom: 2rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  list-style: none;
  font-size: 0.82rem;
  color: var(--platinum-dim);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.trust-row strong { color: var(--brass); font-weight: 500; }

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-width: 340px;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

/* ===== Hero Carousel ===== */

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.hero-carousel .slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-carousel .slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(8%);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.hero-carousel .slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.hero-carousel .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  transition: filter 0.4s;
}
.hero-carousel .slide.is-active img { filter: brightness(1); }
.hero-carousel figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 55%, transparent 100%);
  color: var(--bone);
  pointer-events: none;
}
.hero-carousel .slide-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.3rem;
}
.hero-carousel .slide-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.55);
  color: var(--bone);
  border: 1px solid rgba(217,217,217,0.2);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  opacity: 0;
  z-index: 2;
}
.hero-carousel:hover .carousel-arrow,
.hero-carousel:focus-within .carousel-arrow { opacity: 1; }
.carousel-arrow:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}
.carousel-arrow.prev { left: 0.75rem; }
.carousel-arrow.next { right: 0.75rem; }

.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  z-index: 2;
}
.dot {
  width: 24px;
  height: 3px;
  background: rgba(212,175,55,0.35);
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s, box-shadow 0.25s;
}
.dot:hover { background: rgba(212,175,55,0.65); }
.dot.is-active {
  background: #d4af37;
  width: 36px;
  box-shadow: 0 0 10px rgba(212,175,55,0.45);
}
.dot:focus-visible {
  outline: 1px solid #d4af37;
  outline-offset: 3px;
}
.carousel-arrow:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel .slide { transition: opacity 0.2s; transform: none; }
  .hero-carousel .slide.is-active { transform: none; }
}

@media (max-width: 860px) {
  .hero-carousel { max-width: 420px; }
  .hero-carousel .slide-title { font-size: 1.15rem; }
  .carousel-arrow { opacity: 1; width: 36px; height: 36px; }
}

/* ===== Page Hero (subpages) ===== */

.page-hero {
  background: var(--ink);
  color: var(--platinum);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--bone); font-weight: 400; }
.page-hero .lead { color: rgba(230,230,230,0.72); margin: 0 auto; }
.page-hero .eyebrow { color: var(--brass); }

/* ===== Sections ===== */

.section { padding: 6rem 0; }
.section-tight { padding: 4.5rem 0; }
.section-dark {
  background: var(--ink);
  color: var(--platinum);
}
.section-dark h2, .section-dark h3 { color: var(--bone); }
.section-dark .section-sub { color: rgba(230,230,230,0.7); }
.section-dark .eyebrow { color: var(--brass); }

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.section-title em { font-style: italic; color: var(--brass); }
.section-sub {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto 3.5rem;
  font-weight: 300;
}
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head .eyebrow { margin-bottom: 0.75rem; }

/* ===== Grids ===== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* ===== Cards ===== */

.card {
  background: var(--bone);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--line-light);
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
}
.card-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--brass);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1rem;
}
.card h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 0.65rem; }
.card p { color: #555; font-size: 0.94rem; margin-bottom: 0; }

.section-dark .card {
  background: var(--ink-2);
  border-color: var(--line);
}
.section-dark .card:hover { border-color: var(--brass); }
.section-dark .card h3 { color: var(--bone); }
.section-dark .card p { color: rgba(230,230,230,0.7); }

/* ===== Service detail (services page) ===== */

.service-detail {
  background: var(--bone);
  padding: 2.25rem;
  border: 1px solid var(--line-light);
  border-top: 2px solid var(--brass);
  transition: transform 0.25s, border-color 0.25s;
}
.service-detail:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  border-top-color: var(--brass);
}
.service-detail h2 { font-size: 1.45rem; margin-bottom: 0.75rem; }
.service-detail ul { list-style: none; margin-top: 0.75rem; }
.service-detail li {
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  font-size: 0.92rem;
  color: #444;
}
.service-detail li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brass);
}

/* ===== Portfolio ===== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.portfolio-grid .port-item {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
  background: var(--ink);
}
.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.92);
}
.port-item:hover img { transform: scale(1.04); filter: brightness(1); }
.port-item .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 20%, transparent 100%);
  color: var(--bone);
  padding: 2rem 1.25rem 1.1rem;
  transform: translateY(0);
  transition: padding 0.3s;
}
.port-item .caption .label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.25rem;
}
.port-item .caption .title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.portfolio-section {
  margin-bottom: 4rem;
}
.portfolio-section-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.portfolio-section-header h2 { font-size: 1.75rem; margin: 0; }
.portfolio-section-header .eyebrow { margin-bottom: 0; }

/* ===== Testimonials ===== */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.quote {
  background: transparent;
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--brass);
  line-height: 1;
  opacity: 0.7;
}
.quote p {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  color: rgba(230,230,230,0.92);
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  line-height: 1.55;
}
.quote footer {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}
.quote footer .stars {
  color: var(--brass);
  margin-right: 0.5rem;
  letter-spacing: 0.1em;
}

/* ===== About ===== */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 { margin-top: 2rem; }
.about-text h2:first-child { margin-top: 0; }
.about-text p { color: #3a3a3a; font-size: 1.02rem; line-height: 1.75; }
.about-side img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line-light);
}
.value-stack { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.value-item {
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--brass);
  background: var(--bone-2);
}
.value-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.value-item span {
  font-size: 0.92rem;
  color: #555;
}

/* ===== Contact ===== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.contact-card {
  background: var(--bone);
  padding: 2.5rem 1.75rem;
  border: 1px solid var(--line-light);
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
}
.contact-card h2 { font-size: 1.2rem; margin-bottom: 0.75rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-card p { margin-bottom: 0.5rem; font-size: 1.05rem; }
.contact-card .eyebrow { margin-bottom: 0.5rem; font-size: 0.7rem; }
.muted { color: #777; font-size: 0.85rem; }

.form-wrap {
  background: var(--bone-2);
  padding: 3rem;
  border: 1px solid var(--line-light);
  margin-top: 2rem;
}
.form-wrap h2 { margin-bottom: 0.5rem; }
.form-wrap > p { color: #555; margin-bottom: 2rem; }

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(10,10,10,0.15);
  border-radius: 2px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 400;
  background: var(--bone);
  color: var(--ink);
  transition: border-color 0.2s;
  text-transform: none;
  letter-spacing: 0;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brass);
}

/* ===== CTA Band ===== */

.cta-band {
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  padding: 5rem 0;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(176,141,87,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: var(--bone); margin-bottom: 0.75rem; font-weight: 400; }
.cta-band h2 em { color: var(--brass); font-style: italic; }
.cta-band .lead { color: rgba(230,230,230,0.85); margin: 0 auto 1.75rem; }
.cta-band .eyebrow { color: var(--brass); }

/* ===== Footer ===== */

.site-footer {
  background: var(--ink);
  color: rgba(230,230,230,0.7);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand img { width: 56px; height: 56px; object-fit: cover; border: 1px solid var(--line); }
.footer-brand p { color: rgba(230,230,230,0.65); font-size: 0.92rem; line-height: 1.6; }
.site-footer h4 {
  color: var(--brass);
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
}
.site-footer p { margin-bottom: 0.5rem; line-height: 1.55; font-size: 0.94rem; }
.site-footer a { color: var(--platinum); }
.site-footer a:hover { color: var(--brass); }
.footer-links { list-style: none; }
.footer-links li { padding: 0.2rem 0; font-size: 0.94rem; }
.copy {
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: 1rem;
  color: rgba(230,230,230,0.4);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}
.copy small { font-size: 0.8rem; letter-spacing: 0.04em; }
.credit {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(230,230,230,0.5);
}
.credit a {
  color: var(--brass);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s;
}
.credit a:hover { color: var(--bone); }

/* ===== Responsive ===== */

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero { padding: 4rem 0 4.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 240px; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; padding-top: 0.5rem; border-top: 1px solid var(--line); }
  .nav a { padding: 0.5rem 0.7rem; font-size: 0.8rem; }
  .nav-wrap { padding: 0.8rem 1.25rem; }
  .section { padding: 4rem 0; }
  .contact-form { grid-template-columns: 1fr; }
  .form-wrap { padding: 1.75rem; }
  .brand-name { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.15rem; }
  .section { padding: 3rem 0; }
  .btn { padding: 0.85rem 1.5rem; font-size: 0.78rem; }
  .btn-lg { padding: 0.95rem 1.8rem; }
  .trust-row { gap: 1rem; font-size: 0.7rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .brand-tag { display: none; }
  .nav-wrap { gap: 0.5rem; }
}
