/* =========================================================
   Essex Tree Care Ltd — Site Styles
   Clean, professional, sage-green brand
   ========================================================= */

:root {
  --sage: #A3B88A;          /* brand colour from existing site */
  --sage-dark: #7d9663;
  --forest: #2f4429;        /* deep green for headings / accents */
  --forest-soft: #3c5636;
  --bark: #4a4038;
  --cream: #f7f8f3;
  --paper: #ffffff;
  --ink: #23281f;
  --muted: #5f6b57;
  --line: #e4e7dc;
  --accent: #d98b2b;        /* warm call-to-action accent */
  --accent-dark: #bd7419;
  --shadow-sm: 0 2px 8px rgba(47, 68, 41, .07);
  --shadow-md: 0 10px 30px rgba(47, 68, 41, .12);
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1160px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--forest-soft); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--forest);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--tint { background: var(--cream); }
.section--forest { background: var(--forest); color: #eef1e7; }
.section--forest h2, .section--forest h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--sage-dark);
  margin-bottom: .8rem;
}
.section--forest .eyebrow { color: var(--sage); }

.section-head { max-width: 720px; margin: 0 auto 2.6rem; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--forest .section-head p { color: #d4dcc9; }

.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 1.6rem;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-dark); color: #fff; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--outline { background: transparent; border-color: var(--sage-dark); color: var(--forest); }
.btn--outline:hover { background: var(--sage); border-color: var(--sage); color: #fff; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark { height: 46px; width: auto; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-weight: 600; color: var(--forest); font-size: 1.15rem; }
.brand__tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-dark); }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  color: var(--ink);
  font-weight: 500;
  padding: .5rem .8rem;
  border-radius: 8px;
  font-size: .97rem;
}
.nav a:hover, .nav a.active { color: var(--forest); background: var(--cream); }
.header-cta { display: flex; align-items: center; gap: .8rem; }
.header-phone {
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
  font-size: 1.02rem;
}
.header-phone span { display:block; font-size:.66rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--sage-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--forest);
  margin: 5px 0; transition: .25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(120deg, rgba(31,44,26,.86), rgba(47,68,41,.62)),
              url("../img/hero.svg") center/cover no-repeat;
}
.hero__inner { padding-top: clamp(3.5rem, 10vw, 8rem); padding-bottom: clamp(3.5rem, 10vw, 8rem); max-width: 660px; }
.hero h1 { color: #fff; }
.hero p { font-size: 1.2rem; color: #eef1e7; max-width: 34em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.4rem; }
.hero__badge { display: flex; align-items: center; gap: .5rem; font-size: .92rem; color: #e7ecdd; }
.hero__badge svg { width: 22px; height: 22px; flex: none; }

.page-hero {
  background: linear-gradient(120deg, var(--forest), var(--forest-soft));
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.page-hero h1 { color: #fff; margin-bottom: .3rem; }
.page-hero p { color: #d4dcc9; font-size: 1.1rem; max-width: 42em; margin: 0; }
.crumbs { font-size: .85rem; color: var(--sage); margin-bottom: 1rem; }
.crumbs a { color: #dfe6d3; }

/* ---------- Feature strip ---------- */
.strip {
  background: var(--sage);
  color: #22301b;
}
.strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.4rem; padding-bottom: 1.4rem; }
.strip__item { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.strip__item svg { width: 26px; height: 26px; flex: none; }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 16 / 10; background: var(--sage); position: relative; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.4rem 1.5rem 1.6rem; }
.card__body h3 { margin-bottom: .5rem; }
.card__body p { color: var(--muted); margin-bottom: 1rem; }
.card__link { font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }

/* Service icon card */
.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  height: 100%;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.svc__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--cream); color: var(--forest);
  margin-bottom: 1.1rem;
}
.svc__icon svg { width: 30px; height: 30px; }
.svc h3 { margin-bottom: .45rem; }
.svc p { color: var(--muted); margin: 0; font-size: .97rem; }

/* Detailed service block */
.svc-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.4rem; align-items: center; }
.svc-detail:not(:last-child) { margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--line); }
.svc-detail--rev .svc-detail__media { order: 2; }
.svc-detail__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.svc-detail__media img { width: 100%; height: 100%; object-fit: cover; }
ul.ticks { list-style: none; padding: 0; margin: 1rem 0 0; }
ul.ticks li { position: relative; padding-left: 1.9rem; margin-bottom: .55rem; color: var(--muted); }
ul.ticks li::before {
  content: "";
  position: absolute; left: 0; top: .35em;
  width: 1.2rem; height: 1.2rem;
  background: var(--sage);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2rem,4vw,2.8rem); color: var(--sage); font-weight: 600; }
.stat__label { color: #d4dcc9; font-size: .95rem; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split__media img { width: 100%; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.quote__stars { color: #e9a825; letter-spacing: 2px; margin-bottom: .6rem; }
.quote p { font-style: italic; color: var(--ink); }
.quote__who { font-weight: 700; color: var(--forest); margin-top: .8rem; font-style: normal; }
.quote__where { color: var(--muted); font-size: .88rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2rem,5vw,3.4rem);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #fff2e2; max-width: 40em; margin: 0 auto 1.5rem; }

/* ---------- Clients ---------- */
.client-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.client-wall span {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 84px; padding: 1rem 1.1rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--serif); font-weight: 600; color: var(--forest); font-size: 1rem;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s;
}
.client-wall span:hover { transform: translateY(-3px); border-color: var(--sage); }

.clients-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.clients-cols h3 { font-size: 1.05rem; margin-bottom: .8rem; padding-bottom: .5rem; border-bottom: 2px solid var(--sage); }
.clients-cols ul { list-style: none; padding: 0; margin: 0; }
.clients-cols li { color: var(--muted); padding: .35rem 0; font-weight: 500; }
@media (max-width: 900px) { .client-wall, .clients-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .client-wall { grid-template-columns: repeat(2, 1fr); } .clients-cols { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.gallery figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; position: relative; aspect-ratio: 1/1; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(31,44,26,.85));
  color: #fff; font-size: .85rem; font-weight: 600;
  padding: 1.4rem .9rem .7rem;
}

/* ---------- Blog ---------- */
.post-meta { font-size: .82rem; color: var(--sage-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.article { max-width: 760px; margin: 0 auto; }
.article h2 { margin-top: 2rem; }
.article img { border-radius: var(--radius); margin: 1.5rem 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: start; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: .35rem; color: var(--forest); font-size: .95rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .8rem .9rem; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font: inherit; color: var(--ink); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(163,184,138,.3);
}
.form-note { font-size: .85rem; color: var(--muted); }
.contact-info { background: var(--cream); border-radius: var(--radius); padding: 1.8rem; }
.contact-info ul { list-style: none; padding: 0; margin: 0; }
.contact-info li { display: flex; gap: .9rem; padding: .8rem 0; border-bottom: 1px dashed var(--line); }
.contact-info li:last-child { border-bottom: 0; }
.contact-info svg { width: 22px; height: 22px; color: var(--sage-dark); flex: none; margin-top: 3px; }
.contact-info strong { color: var(--forest); display: block; }
.form-success {
  display: none; background: #edf3e4; border: 1px solid var(--sage);
  color: var(--forest); padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1rem;
}

/* ---------- Footer ---------- */
.site-footer { background: #1f2c1a; color: #c7d1ba; padding: 3.2rem 0 1.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-family: var(--font); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #c7d1ba; }
.site-footer a:hover { color: var(--sage); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-brand p { font-size: .95rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__tag { color: var(--sage); }
.social { display: flex; gap: .7rem; margin-top: 1rem; }
.social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.social a:hover { background: var(--sage); }
.social svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.4rem; font-size: .85rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; color: #97a689; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split, .svc-detail, .contact-grid { grid-template-columns: 1fr; }
  .svc-detail--rev .svc-detail__media { order: 0; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }

  .nav, .header-phone { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .6rem 22px 1rem; gap: .1rem;
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a { padding: .8rem .6rem; border-radius: 8px; }
}
@media (max-width: 560px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .strip .container { justify-content: flex-start; gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Logo on dark footer ---------- */
.site-footer .brand__mark {
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  box-sizing: border-box;
  height: 52px;
}

/* ---------- Radio group (careers form) ---------- */
.radio-group { display: flex; gap: 1.4rem; padding-top: .5rem; }
.radio-group .radio { display: flex; align-items: center; gap: .45rem; font-weight: 500; color: var(--ink); cursor: pointer; }
.radio-group input { width: auto; margin: 0; accent-color: var(--sage-dark); transform: translateY(1px); }

/* ---------- Clients logo wall ---------- */
.logo-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.logo-tile {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  min-height: 150px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .4rem; padding: 1.4rem 1.2rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.logo-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.logo-tile img { max-height: 84px; max-width: 82%; object-fit: contain; }
.logo-tile .logo-name {
  font-family: var(--serif); font-weight: 600; font-size: 1.08rem; color: var(--forest); line-height: 1.25;
}
.logo-tile .logo-type {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-dark);
}
@media (max-width: 900px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Form error banner ---------- */
.form-error {
  display: none; background: #fdecec; border: 1px solid #e0a3a3;
  color: #8a2b2b; padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1rem;
}

/* =========================================================
   MOBILE REFINEMENTS
   ========================================================= */

/* Stop iOS zooming in when a field is tapped (needs >=16px) */
@media (max-width: 900px) {
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; }
}

@media (max-width: 900px) {
  /* --- Header: keep it compact and on one line --- */
  .header-inner { padding: .55rem 16px; gap: .5rem; }
  .brand { gap: .55rem; min-width: 0; }
  .brand__mark { height: 40px; }
  .brand__name { font-size: 1.05rem; white-space: nowrap; }
  .brand__tag { font-size: .58rem; letter-spacing: .08em; white-space: nowrap; }
  .header-cta { gap: .4rem; }
  .header-cta .btn {
    padding: .6rem 1rem;
    font-size: .88rem;
    white-space: nowrap;
  }
  .nav-toggle { padding: 6px; }

  /* --- Sections: tighter vertical rhythm --- */
  .section { padding: 2.75rem 0; }
  .container { padding-left: 18px; padding-right: 18px; }
  .section-head { margin-bottom: 1.8rem; }
}

@media (max-width: 620px) {
  /* Brand tagline is a nicety — drop it so the logo + name fit cleanly */
  .brand__tag { display: none; }
  .brand__name { font-size: 1.1rem; }
  .brand__mark { height: 38px; }

  /* Hero typography scaled for small screens */
  .hero h1 { font-size: 1.95rem; line-height: 1.18; }
  .hero p { font-size: 1.02rem; }
  .hero .eyebrow { font-size: .62rem; letter-spacing: .1em; }
  .hero__badges { gap: .7rem; flex-direction: column; margin-top: 1.8rem; }
  .hero__badge { font-size: .88rem; }

  /* Full-width buttons read better and are easier to tap */
  .hero__actions { flex-direction: column; gap: .7rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-band .btn { width: 100%; justify-content: center; }

  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 1rem; }

  h2 { font-size: 1.55rem; }
  .section-head p, .lead { font-size: 1rem; }

  /* Trust strip stacks neatly */
  .strip .container { flex-direction: column; gap: .6rem; }
  .strip__item { font-size: .92rem; }

  /* Stats side by side rather than a long column */
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .stat__num { font-size: 1.75rem; }

  /* Gallery + client wall: two per row keeps them a sensible size */
  .gallery { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .logo-wall { gap: .7rem; }
  .logo-tile { min-height: 120px; padding: 1rem .8rem; }
  .logo-tile .logo-name { font-size: .92rem; }

  /* Service detail blocks */
  .svc-detail:not(:last-child) { margin-bottom: 2.4rem; padding-bottom: 2.4rem; }
  .svc, .card__body, .contact-info, .quote { padding: 1.3rem 1.2rem; }

  /* Two-column form rows go single-column */
  .contact-grid .grid--2,
  form .grid--2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: .4rem; }
}

/* Very small phones */
@media (max-width: 400px) {
  .header-cta .btn { padding: .55rem .8rem; font-size: .82rem; }
  .brand__name { font-size: 1rem; }
  .hero h1 { font-size: 1.8rem; }
  .gallery { grid-template-columns: 1fr; }
}

/* Tap targets comfortable on touch devices */
@media (hover: none) {
  .nav a { padding: .85rem .6rem; }
  .btn:hover { transform: none; }
  .card:hover, .svc:hover, .logo-tile:hover { transform: none; }
}
