/* ============================================================
   Harley's Hounds — site stylesheet
   Design direction: Concept 2 "Adventure" (client-selected)
   ============================================================ */

:root {
  --black: #0E1210;
  --forest: #16211B;
  --forest-2: #1B2A22;
  --bone: #EDE9DF;
  --moss: #A9B89A;
  --sage: #B3C89E;
  --sage-dim: rgba(179, 200, 158, 0.14);
  --line: rgba(237, 233, 223, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', -apple-system, sans-serif;
  background: var(--black);
  color: var(--bone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.display {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.95;
}
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 36px; }

/* ---------- Nav ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 36px;
  background: linear-gradient(rgba(14, 18, 16, 0.75), transparent);
}
nav.scrolled {
  background: rgba(14, 18, 16, 0.94);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
  border-bottom: 1px solid rgba(237, 233, 223, 0.08);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 76px; height: 76px; border-radius: 50%; }
.logo {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}
.logo span { color: var(--sage); }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  list-style: none;
}
.nav-links a { opacity: 0.85; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--sage); }
.nav-links a.active { border-bottom: 2px solid var(--sage); padding-bottom: 3px; }

.btn {
  display: inline-block;
  background: var(--sage); color: var(--black);
  padding: 13px 28px;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: none; cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.btn:hover { background: var(--bone); transform: translateY(-2px); }
.btn.outline {
  background: transparent; color: var(--bone);
  box-shadow: inset 0 0 0 2px var(--bone);
}
.btn.outline:hover { box-shadow: inset 0 0 0 2px var(--sage); color: var(--sage); }

/* Design A/B toggle */
.design-toggle {
  display: flex; gap: 7px; align-items: center;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.design-toggle .cur { color: var(--sage); }
.design-toggle a { opacity: 0.45; }
.design-toggle a:hover { opacity: 1; color: var(--bone); }
.design-toggle .sep { opacity: 0.35; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
  z-index: 70;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--bone);
  margin: 6px 0; transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,18,16,0.35) 0%, rgba(14,18,16,0.18) 32%, rgba(14,18,16,0.62) 58%, rgba(14,18,16,0.92) 92%);
}
.hero-content { position: relative; z-index: 2; padding: 0 0 72px; width: 100%; }
.hero h1 { font-size: clamp(3.2rem, 8.4vw, 7.6rem); margin-bottom: 26px; }
.hero h1 .accent { color: var(--sage); }
.hero-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.hero p { max-width: 46ch; opacity: 0.95; font-size: 1rem; margin-bottom: 28px; text-shadow: 0 1px 14px rgba(14,18,16,0.75), 0 1px 3px rgba(14,18,16,0.6); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  text-align: right;
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.18em; opacity: 0.7; line-height: 2;
}
.hero-meta .meta-badge {
  width: 122px; display: block; margin: 0 0 16px auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 190px 0 90px;
  overflow: hidden;
  background: var(--forest);
}
.page-hero.has-photo { padding: 220px 0 100px; }
.page-hero .hero-bg::after {
  background: linear-gradient(180deg, rgba(14,18,16,0.6) 0%, rgba(14,18,16,0.45) 45%, rgba(14,18,16,0.92) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.8rem, 6.5vw, 5.4rem); max-width: 14ch; }
.page-hero h1 .accent { color: var(--sage); }
.page-hero p { max-width: 52ch; opacity: 0.85; margin-top: 22px; font-size: 1.05rem; }

/* ---------- Ticker ---------- */
.ticker { background: var(--sage); color: var(--black); overflow: hidden; padding: 14px 0; }
.ticker-track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: tick 26s linear infinite; }
.ticker-track span {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.02em;
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
h2.display { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 20px; }
.section-intro { opacity: 0.75; max-width: 56ch; margin-bottom: 60px; }

/* ---------- Service rows (home preview) ---------- */
.svc-row {
  display: grid;
  grid-template-columns: 90px 1.1fr 1fr 320px;
  gap: 36px; align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  transition: background 0.2s;
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row:hover { background: rgba(237, 233, 223, 0.03); }
.svc-num { font-family: 'Archivo Black', sans-serif; font-size: 1.4rem; color: var(--sage); }
.svc-row h3 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.05;
}
.svc-row h3 .price { display: block; font-size: 0.55em; color: var(--sage); margin-top: 8px; letter-spacing: 0.04em; }
.svc-row p { font-size: 0.9rem; opacity: 0.75; }
.svc-row .ph { aspect-ratio: 16 / 9; overflow: hidden; }
.svc-row .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); transition: transform 0.5s; }
.svc-row:hover .ph img { transform: scale(1.05); }
.svc-row .more {
  display: inline-block; margin-top: 14px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--sage);
}

/* ---------- Trust band (home) ---------- */
.stats { background: var(--forest); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat .icon { color: var(--sage); font-size: 1.1rem; margin-bottom: 16px; }
.stat h4 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 1.02rem; line-height: 1.25; margin-bottom: 10px;
}
.stat p { font-size: 0.86rem; line-height: 1.55; opacity: 0.7; max-width: 30ch; margin: 0 auto; }

/* ---------- Gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gal-grid .g { overflow: hidden; }
.gal-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, filter 0.5s; filter: saturate(1.02); }
.gal-grid .g:hover img { transform: scale(1.04); }
.g1 { grid-column: span 7; aspect-ratio: 16/10; }
.g2 { grid-column: span 5; aspect-ratio: 4/5; grid-row: span 2; }
.g3 { grid-column: span 4; aspect-ratio: 1/1; }
.g4 { grid-column: span 3; aspect-ratio: 3/4; }
.g5 { grid-column: span 12; aspect-ratio: 21/8; }

/* ---------- Quote ---------- */
.quote { background: var(--sage); color: var(--black); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.quote blockquote {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.15; margin-bottom: 24px;
}
.quote cite {
  font-style: normal;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
}

/* ---------- CTA ---------- */
.cta { text-align: center; padding: 168px 0; position: relative; overflow: hidden; }
.cta h2 { font-size: clamp(3rem, 7vw, 6rem); margin-bottom: 30px; }
.cta h2 span { -webkit-text-stroke: 1.5px var(--bone); color: transparent; }
.cta p { opacity: 0.75; max-width: 46ch; margin: 0 auto 34px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid rgba(237, 233, 223, 0.12); padding: 34px 0; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; }
.foot-badge { display: flex; justify-content: center; padding: 10px 0 30px; }
.foot-badge img { width: 230px; }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; opacity: 0.6; }
.foot-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-nav a:hover { color: var(--sage); }

/* ---------- Services page ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.svc-detail:first-of-type { border-top: none; padding-top: 0; }
.svc-detail .txt .tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--sage);
  border: 1px solid var(--sage);
  padding: 6px 14px; margin-bottom: 22px;
}
.svc-detail h3 { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1; margin-bottom: 10px; }
.svc-detail .rate { font-family: 'Archivo Black', sans-serif; color: var(--sage); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 24px; }
.svc-detail .rate span { opacity: 0.6; font-family: 'Archivo', sans-serif; font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 0.9rem; }
.svc-detail p { opacity: 0.8; margin-bottom: 18px; }
.svc-detail ul { list-style: none; margin: 22px 0 0; }
.svc-detail ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 0.92rem; opacity: 0.85;
  border-top: 1px solid rgba(237, 233, 223, 0.08);
}
.svc-detail ul li::before { content: "✦"; position: absolute; left: 0; color: var(--sage); }
.svc-detail .img { overflow: hidden; aspect-ratio: 4/3; }
.svc-detail .img img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail.flip .img { order: -1; }

/* Highlight callout (boarding differentiator) */
.callout {
  background: var(--sage); color: var(--black);
  padding: 26px 30px; margin-top: 28px;
}
.callout strong {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase; letter-spacing: 0.02em;
  display: block; margin-bottom: 6px; font-size: 1.05rem;
}
.callout p { opacity: 1; margin: 0; font-size: 0.95rem; }

/* Included strip */
.included { background: var(--forest); }
.included-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.included .item .icon { font-size: 1.6rem; color: var(--sage); margin-bottom: 16px; }
.included .item h4 { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; font-size: 1rem; margin-bottom: 10px; letter-spacing: 0.02em; }
.included .item p { font-size: 0.88rem; opacity: 0.7; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; counter-reset: step; }
.step { border-top: 2px solid var(--sage); padding-top: 26px; }
.step .n { font-family: 'Archivo Black', sans-serif; color: var(--sage); font-size: 0.9rem; letter-spacing: 0.2em; margin-bottom: 14px; }
.step h4 { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; font-size: 1.25rem; margin-bottom: 12px; }
.step p { font-size: 0.92rem; opacity: 0.75; }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: start; }
.about-grid .txt p { opacity: 0.82; margin-bottom: 20px; font-size: 1.02rem; }
.about-grid .txt p:first-of-type { font-size: 1.25rem; opacity: 0.95; line-height: 1.5; }
.about-photo { overflow: hidden; }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-photo figcaption { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; opacity: 0.55; padding-top: 14px; }

.cred-band { background: var(--forest); }
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.cred { text-align: center; padding: 10px; }
.cred .icon { font-size: 1.8rem; color: var(--sage); margin-bottom: 14px; }
.cred h4 { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; font-size: 0.95rem; margin-bottom: 8px; }
.cred p { font-size: 0.82rem; opacity: 0.65; }

.harley-block { background: var(--sage); color: var(--black); }
.harley-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.harley-inner h2 { margin-bottom: 24px; }
.harley-inner p { opacity: 0.85; margin-bottom: 18px; }
.harley-line {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem; line-height: 1.4;
  margin-top: 30px; opacity: 1;
}
.harley-inner .img { overflow: hidden; border-radius: 50%; aspect-ratio: 1/1; max-width: 380px; margin: 0 auto; }
.harley-inner .img img { width: 100%; height: 100%; object-fit: cover; }
/* Logo badge variant: the mark is already a circle, so don't clip or crop it */
.harley-inner .img.logo-badge { overflow: visible; border-radius: 0; max-width: 440px; }
.harley-inner .img.logo-badge img { object-fit: contain; }

/* ---------- Testimonials page ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--forest);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex; flex-direction: column;
}
.testi-card .stars { color: var(--sage); letter-spacing: 4px; margin-bottom: 20px; }
.testi-card blockquote { font-size: 1.02rem; line-height: 1.55; opacity: 0.9; margin-bottom: 26px; flex: 1; }
.testi-card cite { font-style: normal; }
.testi-card cite .name { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; font-size: 0.9rem; display: block; }
.testi-card cite .dog { font-size: 0.8rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.12em; }
.testi-note {
  margin-top: 48px; padding: 22px 28px;
  border: 1px dashed var(--sage);
  color: var(--sage);
  font-size: 0.9rem; text-align: center;
}

/* ---------- FAQ page ---------- */
.faq-list { max-width: 860px; }
.faq-map { margin-top: 28px; }
.faq-map svg { display: block; width: 100%; max-width: 640px; height: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 28px 0;
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Archivo', sans-serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--sage);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--sage); }
.faq-item .answer { padding: 0 0 30px; max-width: 68ch; opacity: 0.8; }
.faq-item .answer p { margin-bottom: 14px; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: start; }
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 10px; color: var(--sage);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--forest);
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  padding: 15px 18px;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--sage); }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-note { font-size: 0.82rem; opacity: 0.55; margin-top: 18px; }
#form-status { min-height: 1.4em; margin-top: 16px; font-size: 0.92rem; }
#form-status.ok { color: var(--sage); }
#form-status.err { color: #d98a7e; }

/* ---------- Thank-you modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8, 11, 9, 0.82);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--forest);
  border: 1px solid var(--line);
  padding: 60px 44px 48px;
  text-align: center; max-width: 430px; margin: 24px;
  transform: translateY(14px);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal .icon { color: var(--sage); font-size: 1.5rem; margin-bottom: 18px; }
.modal h3 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase; font-size: 1.7rem; margin-bottom: 14px;
}
.modal p { opacity: 0.75; font-size: 0.95rem; line-height: 1.6; margin-bottom: 30px; }

.expect-card { background: var(--forest); border: 1px solid var(--line); padding: 40px 36px; }
.expect-card h3 { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; font-size: 1.3rem; margin-bottom: 28px; }
.expect-card ol { list-style: none; counter-reset: ex; }
.expect-card ol li {
  counter-increment: ex;
  position: relative;
  padding: 0 0 26px 52px;
}
.expect-card ol li:last-child { padding-bottom: 0; }
.expect-card ol li::before {
  content: counter(ex, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: 'Archivo Black', sans-serif;
  color: var(--sage); font-size: 1rem;
}
.expect-card ol li h5 { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; font-size: 0.95rem; margin-bottom: 6px; }
.expect-card ol li p { font-size: 0.88rem; opacity: 0.7; }
.expect-card .alt { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 0.88rem; opacity: 0.7; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .svc-row { grid-template-columns: 60px 1fr 1fr; }
  .svc-row .ph { display: none; }
  .included-grid, .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .wrap { padding: 0 24px; }
  nav { padding: 12px 24px; }
  .brand img { width: 54px; height: 54px; }
  .logo { font-size: 1rem; white-space: nowrap; }
  .nav-toggle { display: block; }
  /* backdrop-filter on the scrolled nav makes it the containing block for
     fixed children, collapsing the menu overlay to nav height — disable on mobile */
  nav.scrolled { backdrop-filter: none; background: rgba(14, 18, 16, 0.97); }
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14, 18, 16, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 65;
  }
  .nav-links.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a.active { border-bottom: none; }
  .svc-row { grid-template-columns: 1fr; gap: 14px; padding: 36px 0; }
  .svc-num { font-size: 1.1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; gap: 56px; }
  .g1, .g2, .g3, .g4 { grid-column: span 12; grid-row: auto; }
  .g5 { grid-column: span 12; aspect-ratio: 4/3; }
  section { padding: 76px 0; }
  .hero-meta { text-align: left; }
  .hero-meta .meta-badge { margin: 0 0 14px 0; width: 96px; }
  .svc-detail { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .svc-detail.flip .img { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .about-grid, .harley-inner, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 150px 0 70px; }
  .foot { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .cred-grid, .included-grid { grid-template-columns: 1fr; }
}

/* Instagram links (mock — pending approval) */
.ig-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap; text-align: center; max-width: 100%;
  color: var(--sage); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid var(--sage-dim); padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.ig-link:hover { color: var(--bone); border-color: var(--sage); }
.ig-foot { display: inline-flex; align-items: center; gap: 7px; }

@media (max-width: 520px) {
  .ig-link { font-size: 0.72rem; letter-spacing: 0.09em; gap: 8px; }
}
.ig-nav { display: flex; align-items: center; opacity: 0.85; line-height: 0; }
.ig-nav:hover { opacity: 1; color: var(--sage); }
