/* =====================================================================
   HW Buyers Agency — shared site stylesheet
   Used by: index.html, about.html, services.html, why-us.html, contact.html
   ===================================================================== */

/* ------------ PALETTE THEMES ------------ */
/* Palette A — Calile: Sage & Travertine (Recommended / default) */
:root,
[data-palette="A"] {
  --bg:        #F5EFE4;
  --bg-alt:    #EAE1D0;
  --ink:       #2E2A24;
  --ink-soft:  #5C544A;
  --accent:    #7F8C6E;
  --accent-2:  #A68558;
  --hairline:  #CFC4AE;
  --hero-overlay: rgba(20, 18, 14, 0.28);
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}
[data-palette="B"] {
  --bg:        #F3F1EB;
  --bg-alt:    #E6E1D4;
  --ink:       #0D0D0D;
  --ink-soft:  #4A4540;
  --accent:    #B87A56;
  --accent-2:  #8A6545;
  --hairline:  #C9C1AD;
  --hero-overlay: rgba(10, 8, 6, 0.32);
  --font-display: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  --font-body:    'Jost', 'Inter', system-ui, sans-serif;
}
[data-palette="C"] {
  --bg:        #EFE7D9;
  --bg-alt:    #E1D5BE;
  --ink:       #3B2D23;
  --ink-soft:  #6B5745;
  --accent:    #8B5E3C;
  --accent-2:  #6C6B4D;
  --hairline:  #C9B997;
  --hero-overlay: rgba(30, 20, 10, 0.30);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ------------ BASE ------------ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background-color .4s ease, color .4s ease;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
}
section[id], footer[id] { scroll-margin-top: 20px; }

/* ------------ NAV ------------ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
}
.nav.solid {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
  padding: 24px 56px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  display: block;
  height: 130px;
  width: auto;
  /* Logo is black-on-transparent — invert to white when placed over hero */
  filter: brightness(0) invert(1);
  transition: filter .3s ease;
}
.nav.solid .nav-logo img {
  /* On solid-background nav keep the logo black */
  filter: none;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 44px;
}
.nav ul a {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
}
.nav.solid ul a { color: var(--ink); }
.nav ul a.active { color: var(--accent); }
.nav ul a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s ease;
}
.nav ul a:hover::after,
.nav ul a.active::after { width: 100%; }

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  transition: transform .3s ease, opacity .2s ease, background-color .3s ease;
  transform-origin: center;
}
.nav.solid .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ------------ HERO (homepage) ------------ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh; /* iOS Safari: use "small" viewport height so the hero doesn't extend under the address bar */
  min-height: 640px;
  overflow: hidden;
  color: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.6s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.10) 35%, rgba(0,0,0,0.55) 100%),
    var(--hero-overlay);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 96px;
}
.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.92;
}
.hero h1 {
  font-size: clamp(44px, 7.2vw, 108px);
  line-height: 0.95;
  font-weight: 300;
  color: #fff;
  max-width: 14ch;
  letter-spacing: -0.015em;
}
.hero-sub {
  margin-top: 28px;
  max-width: 48ch;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
  opacity: 0.92;
}
.hero-dots {
  position: absolute;
  bottom: 56px; right: 56px;
  z-index: 3;
  display: flex;
  gap: 12px;
}
.hero-dots button {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: background .3s;
  padding: 0;
}
.hero-dots button.active { background: #fff; }

/* ------------ SUB-PAGE HERO ------------ */
.page-hero {
  position: relative;
  height: 72vh;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%),
    var(--hero-overlay);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 230px 56px 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.page-hero .page-kicker {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.92;
}
.page-hero h1 {
  font-size: clamp(40px, 5.8vw, 84px);
  line-height: 1.0;
  font-weight: 300;
  color: #fff;
  max-width: 18ch;
  letter-spacing: -0.015em;
}
.page-hero .page-sub {
  margin-top: 22px;
  max-width: 52ch;
  font-size: 17px;
  font-weight: 300;
  opacity: 0.92;
}

/* ------------ SECTIONS ------------ */
.section {
  padding: 140px 56px;
  max-width: 1400px;
  margin: 0 auto;
}
.section.narrow { max-width: 980px; }
.section-tight { padding: 90px 56px; }

.label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
}
.label::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

/* INTRO (shared) */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.intro h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  max-width: 11ch;
  margin-top: 20px;
}
.intro-body p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.advantage-title {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 40px 0 20px;
  font-weight: 500;
}
.advantage-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.advantage-list li {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  color: var(--ink);
}
.advantage-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 1px;
  background: var(--accent);
}

/* SIMPLIFY (image + text, used on homepage) */
.simplify { background: var(--bg-alt); padding: 140px 56px; }
.simplify-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.simplify img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.simplify-text h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  margin: 20px 0 28px;
  max-width: 12ch;
}
.simplify-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* CTA button */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 18px 32px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all .3s ease;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.cta:hover { background: var(--ink); color: var(--bg); }
.cta::after { content: "→"; font-size: 14px; }
.cta.ghost-light {
  border-color: #fff;
  color: #fff;
}
.cta.ghost-light:hover { background: #fff; color: var(--ink); }

/* ------------ GALLERY STRIP ------------ */
.gallery { padding: 0 0 140px; }
.gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px 60px;
}
.gallery-inner h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  max-width: 18ch;
  line-height: 1.05;
  margin-top: 16px;
}

/* Scrolling carousel */
.gallery-carousel {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 56px 20px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-card {
  position: relative;
  flex: 0 0 420px;
  scroll-snap-align: start;
  border-radius: 6px;
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Legacy grid fallback — remove once carousel is confirmed */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 12px;
  margin-top: 60px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ------------ ABOUT PAGE ------------ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
  margin-top: 70px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.process-step {
  background: var(--bg);
  padding: 48px 36px 52px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.process-step .num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
}
.process-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}
.team-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 18%;
}
.team-card h3 {
  font-size: 36px;
  margin: 28px 0 6px;
}
.team-card .role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.team-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* ------------ SERVICES PAGE ------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  margin-top: 80px;
  border: 1px solid var(--hairline);
}
.service-card {
  background: var(--bg);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 340px;
}
.service-card .num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.service-card h3 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}
.service-card .tagline {
  font-size: 16px;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 4px;
}
.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ------------ WHY US PAGE ------------ */
.benefit-list {
  list-style: none;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}
.benefit-list li {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 40px;
  position: relative;
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 42px;
  width: 24px; height: 1px;
  background: var(--accent);
}

.testimonials {
  background: var(--bg-alt);
  padding: 130px 56px;
}
.testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.testimonial {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  border: 1px solid var(--hairline);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 10px; left: 22px;
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
}
.testimonial p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--hairline);
  margin-top: 70px;
  border: 1px solid var(--hairline);
}
.client-card {
  background: var(--bg);
  padding: 40px 28px 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}
.client-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
}
.client-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ------------ CONTACT PAGE ------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05;
  margin: 20px 0 30px;
  max-width: 13ch;
}
.contact-info p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.contact-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
}
.contact-person {
  font-size: 15px;
}
.contact-person h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-person .tel {
  color: var(--accent);
  letter-spacing: 0.02em;
  font-weight: 400;
}

.contact-form {
  background: var(--bg-alt);
  padding: 60px 56px;
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--ink);
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  padding: 10px 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  font-weight: 300;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 6px;
}
.checkbox-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
}
.checkbox-group input[type=checkbox] { accent-color: var(--accent); }

/* ------------ FOOTER ------------ */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 56px 40px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 20px;
}
.footer-tagline {
  opacity: 0.75;
  font-size: 14px;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.65;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; opacity: 0.88; }
.footer-col ul li a { transition: opacity .2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
  max-width: 1400px;
  margin: 80px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  opacity: 0.55;
  display: flex;
  justify-content: space-between;
}

/* ------------ RESPONSIVE ------------ */
@media (max-width: 900px) {
  .nav, .nav.solid { padding: 14px 20px; }
  .nav-logo img { height: 72px; }

  /* show hamburger, hide the desktop ul */
  .nav-toggle { display: flex; }

  /* Mobile menu panel — full-screen overlay that slides in */
  .nav ul {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(84vw, 360px);
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: 100px 40px 60px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.7,.0,.3,1);
    box-shadow: -12px 0 40px rgba(0,0,0,0.18);
    z-index: 101;
  }
  .nav ul.open { transform: translateX(0); }
  .nav ul a,
  .nav.solid ul a {
    color: var(--ink);
    font-size: 20px;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 300;
    padding-bottom: 6px;
  }
  .nav ul a::after { display: none; }
  body.menu-open { overflow: hidden; }
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 14, 0.45);
    z-index: 100;
  }

  .hero { height: 100svh; min-height: 560px; }
  .hero h1 { font-size: clamp(42px, 11vw, 72px); }
  .hero-content { padding: 0 24px 72px; }
  .hero-sub { font-size: 15px; }

  .page-hero { min-height: 560px; height: auto; }
  .page-hero-inner { padding: 150px 24px 48px; }
  .page-hero h1 { font-size: clamp(34px, 8vw, 52px); }
  .page-hero .page-sub { font-size: 15px; }

  .section, .simplify, .testimonials { padding: 80px 24px; }
  .section-tight { padding: 60px 24px; }
  .gallery-inner { padding: 0 24px 40px; }
  .intro { grid-template-columns: 1fr; gap: 40px; }
  .simplify-inner { grid-template-columns: 1fr; gap: 40px; }
  .simplify { padding: 80px 24px; }
  .advantage-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-track { padding: 0 24px 16px; gap: 14px; }
  .gallery-card { flex: 0 0 300px; }
  .gallery-label { font-size: 17px; padding: 32px 20px 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 60px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; margin-top: 50px; }
  .hero-dots { right: 24px; bottom: 28px; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 36px 24px 40px; }
  .team-grid { grid-template-columns: 1fr; gap: 60px; }
  .team-card h3 { font-size: 30px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 24px; min-height: 0; }
  .service-card h3 { font-size: 26px; }

  .benefit-list { grid-template-columns: 1fr; gap: 24px; }
  .benefit-list li { font-size: 16px; padding-left: 36px; padding-top: 24px; }
  .benefit-list li::before { top: 38px; }
  .testimonials-inner { grid-template-columns: 1fr; gap: 20px; }
  .testimonial { padding: 40px 28px; }
  .clients-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-people { grid-template-columns: 1fr; }
  .contact-form { padding: 40px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* Tighter rules for small phones (iPhone SE / Mini, ~375px and below) */
@media (max-width: 420px) {
  .nav, .nav.solid { padding: 12px 18px; }
  .nav-logo img { height: 60px; }
  .nav ul { padding: 90px 32px 60px; }
  .hero-content { padding: 0 20px 64px; }
  .hero-sub { font-size: 14px; }
  .page-hero-inner { padding: 130px 20px 40px; }
  .section, .simplify, .testimonials { padding: 70px 20px; }
  .contact-form { padding: 36px 20px; }
}
