/* ═══════════════════════════════════════════════════════════════
   Right Auto Repairs — Tullamarine VIC
   Light theme. Warm off-white, deep workshop green, charcoal text.
   Calm and legible on a phone in bright daylight.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg:         #FAF9F6;   /* page — warm off-white */
  --bg-2:       #F1EFE9;   /* alternating sections */
  --bg-3:       #E9E6DE;   /* subtle fills */
  --card:       #FFFFFF;
  --line:       #E3E0D8;
  --line-2:     #D3CFC4;

  --text:       #1C1F23;
  --text-sub:   #5C636B;
  --text-mute:  #8A9199;

  --green:      #157A38;   /* accessible on white — links, icons, buttons */
  --green-hi:   #1E9E4A;   /* hover / brighter accents */
  --green-dp:   #0F5C2A;   /* pressed, deep headings */
  --green-tint: #E9F4EC;   /* soft green fills */
  --green-line: #C3E2CC;

  --amber:      #A84A06;   /* GarageMate accent — darkened to clear WCAG AA on light */

  --shadow:     0 2px 4px rgba(28,31,35,.04), 0 10px 30px rgba(28,31,35,.07);
  --shadow-sm:  0 1px 2px rgba(28,31,35,.05), 0 3px 10px rgba(28,31,35,.05);

  --f-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --f-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --f-pa:      "Noto Sans Gurmukhi", "DM Sans", sans-serif;

  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--f-body); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap.narrow { max-width: 800px; }

/* ── Type ── */
h1, h2, h3, .display {
  font-family: var(--f-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .01em;
  line-height: .98; margin: 0; color: var(--text);
}
h2 { font-size: clamp(32px, 5vw, 50px); }
h3 { font-size: clamp(20px, 2.4vw, 25px); letter-spacing: .02em; }
.pa { font-family: var(--f-pa); }

.eyebrow {
  font-family: var(--f-body); font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--green);
  margin: 0 0 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 26px; border-radius: 6px; border: 2px solid transparent;
  font-family: var(--f-body); font-size: 15px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; white-space: nowrap;
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-green {
  background: var(--green); color: #fff; box-shadow: var(--shadow-sm);
}
.btn-green:hover { background: var(--green-hi); box-shadow: var(--shadow); }
.btn-ghost {
  border-color: var(--line-2); color: var(--text); background: var(--card);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #33383E; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ── Utility bar ── */
.utility {
  background: var(--green-tint); color: var(--text-sub);
  font-size: 13.5px; border-bottom: 1px solid var(--green-line);
}
.utility .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 44px; flex-wrap: wrap; }
.utility a { color: var(--green); text-decoration: none; font-weight: 700; }
.utility a:hover { color: var(--green-dp); }
.utility .punjabi-note { font-family: var(--f-pa); color: var(--green-dp); font-size: 14px; font-weight: 600; }
.utility .u-right { display: flex; gap: 20px; align-items: center; }

/* ── Header ── */
.site-head {
  background: var(--card); position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid var(--line); box-shadow: 0 1px 3px rgba(28,31,35,.04);
}
.site-head .wrap { display: flex; align-items: center; gap: 26px; min-height: 82px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; margin-right: auto; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  border: 3px solid var(--green); display: grid; place-items: center;
}
.brand-mark svg { width: 22px; height: 22px; color: var(--green); }
.brand-name { font-family: var(--f-display); font-size: 26px; line-height: .92; text-transform: uppercase; color: var(--text); }
.brand-name span { display: block; font-family: var(--f-pa); font-size: 12px;
  text-transform: none; color: var(--green); letter-spacing: 0; margin-top: 3px; }

.nav { display: flex; gap: 26px; }
.nav a {
  color: var(--text-sub); text-decoration: none; font-size: 14px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.on { color: var(--green); border-bottom-color: var(--green); }

.nav-toggle { display: none; background: none; border: 0; color: var(--text); padding: 8px; cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 88% -10%, var(--green-tint) 0%, transparent 62%),
    linear-gradient(178deg, #FFFFFF 0%, var(--bg) 55%, var(--bg-2) 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(105deg, transparent 38%, #000 100%);
          mask-image: linear-gradient(105deg, transparent 38%, #000 100%);
}
.hero .wrap { position: relative; padding-top: 92px; padding-bottom: 92px; }
.hero-inner { max-width: 720px; }
.hero h1 { font-size: clamp(46px, 8vw, 88px); }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-pa {
  font-family: var(--f-pa); font-size: clamp(26px, 4.4vw, 40px); color: var(--green);
  margin: 20px 0 4px; line-height: 1.35; font-weight: 600;
}
.hero-pa-en { font-size: 15px; color: var(--text-mute); letter-spacing: .16em; text-transform: uppercase; margin: 0 0 26px; font-weight: 600; }
.hero p.lede { font-size: 18.5px; color: var(--text-sub); margin: 0 0 32px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-sm .wrap { padding-top: 62px; padding-bottom: 62px; }
.hero-sm h1 { font-size: clamp(40px, 6.5vw, 68px); }
.hero-sm .lede { margin-bottom: 0; }

/* ── Trust strip — the one strong block of colour ── */
.trust { background: var(--green); color: #fff; }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding-top: 28px; padding-bottom: 28px; }
.trust div { text-align: center; padding: 4px 10px; }
.trust b { display: block; font-family: var(--f-display); font-size: 34px; line-height: 1; }
.trust span { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .88; }

/* ── Sections ── */
section { padding: 88px 0; }
.section-head { max-width: 660px; margin-bottom: 46px; }
.section-head p { color: var(--text-sub); font-size: 17.5px; margin: 16px 0 0; }
.tinted { background: var(--bg-2); }

/* ── Services grid ── */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
a.svc { text-decoration: none; display: block; }
.svc {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: 28px 24px 26px; box-shadow: var(--shadow-sm);
  transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.svc:hover { border-color: var(--green-line); transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-ico {
  width: 46px; height: 46px; border-radius: 10px; color: var(--green);
  background: var(--green-tint); margin-bottom: 16px; padding: 11px;
}
.svc-ico svg { width: 100%; height: 100%; }
.svc h3 { color: var(--text); margin-bottom: 9px; }
.svc p { font-size: 15px; color: var(--text-sub); margin: 0; line-height: 1.6; }

.more { margin: 38px 0 0; }
.more a {
  font-family: var(--f-body); font-weight: 700; font-size: 15px;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--green); text-decoration: none;
  border-bottom: 2px solid transparent; padding-bottom: 3px;
}
.more a:hover { border-bottom-color: var(--green); }

/* ── Split / why ── */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 62px; align-items: center; }
.reasons { list-style: none; margin: 30px 0 0; padding: 0; }
.reasons li { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.reasons li:last-child { border-bottom: 0; }
.reasons .tick {
  width: 26px; height: 26px; border-radius: 50%; background: var(--green);
  color: #fff; display: grid; place-items: center; flex: none; margin-top: 2px;
}
.reasons .tick svg { width: 15px; height: 15px; }
.reasons b { display: block; font-size: 16.5px; }
.reasons span { font-size: 15.5px; color: var(--text-sub); }
.figure { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ── Booking band ── */
.band { background: var(--green-tint); border-top: 1px solid var(--green-line); border-bottom: 1px solid var(--green-line); text-align: center; }
.band .pa-line { font-family: var(--f-pa); color: var(--green); font-size: 22px; margin: 14px 0 0; font-weight: 600; }
.band p { color: var(--text-sub); max-width: 560px; margin: 18px auto 32px; font-size: 17.5px; }
.band .hero-cta { justify-content: center; }
.band-note { font-size: 13.5px; color: var(--text-mute); margin-top: 22px !important; }
.band-note a { color: var(--amber); font-weight: 700; text-decoration: none; }
.band-note a:hover { text-decoration: underline; }

/* ── Visit ── */
.visit { display: grid; grid-template-columns: 1fr 1.15fr; gap: 54px; align-items: start; }
.info-row { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-of-type { border-bottom: 0; }
.info-row .ico { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 3px; }
.info-row b { display: block; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 3px; }
.info-row a, .info-row p { margin: 0; font-size: 17px; font-weight: 600; text-decoration: none; color: var(--text); }
.info-row a:hover { color: var(--green); }
.hours { margin: 0; font-size: 16px; }
.hours div { display: flex; justify-content: space-between; padding: 4px 0; max-width: 300px; }
.hours .closed { color: var(--text-mute); }
.map { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map iframe { width: 100%; height: 430px; border: 0; display: block; }

/* ── Services page ── */
.services-full { padding-bottom: 40px; }
.svc-full {
  display: grid; grid-template-columns: 64px 1fr; gap: 26px;
  padding: 44px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 100px;
}
.svc-full:last-child { border-bottom: 0; }
.svc-full-ico {
  width: 64px; height: 64px; border-radius: 12px; color: var(--green);
  background: var(--green-tint); display: grid; place-items: center; padding: 15px;
}
.svc-full-ico svg { width: 100%; height: 100%; }
.svc-full h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.svc-full p { margin: 0 0 14px; color: var(--text-sub); }
.svc-full .when {
  background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--green);
  padding: 13px 17px; border-radius: 0 8px 8px 0; font-size: 15.5px; color: var(--text-sub);
}
.svc-full .when b {
  display: block; font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--green); margin-bottom: 4px;
}
.svc-cta { margin: 20px 0 0 !important; }

/* ── About ── */
.prose p { font-size: 17.5px; color: var(--text-sub); margin: 0 0 20px; }
.prose .tagline-story {
  background: var(--green-tint); border: 1px solid var(--green-line); border-left: 3px solid var(--green);
  padding: 18px 20px; border-radius: 0 8px 8px 0; font-size: 17px; color: var(--text);
}
.prose .tagline-story strong { font-family: var(--f-pa); font-size: 21px; color: var(--green); }

/* ── FAQ ── */
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 40px 24px 0; position: relative;
  font-family: var(--f-body); font-size: 18px; font-weight: 700; color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 31px;
  width: 11px; height: 11px; border-right: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green); transform: rotate(45deg);
  transition: transform .18s ease;
}
.faq[open] summary::after { transform: rotate(-135deg); top: 36px; }
.faq summary:hover { color: var(--green); }
.faq-a { padding: 0 40px 26px 0; }
.faq-a p { margin: 0 0 13px; color: var(--text-sub); font-size: 16.5px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ── Footer ── */
.site-foot { background: var(--bg-2); color: var(--text-sub); padding: 58px 0 32px; font-size: 15px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
.site-foot h4 { font-family: var(--f-display); font-size: 17px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text); margin: 0 0 16px; }
.site-foot a { color: var(--text-sub); text-decoration: none; }
.site-foot a:hover { color: var(--green); }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { padding: 5px 0; }
.foot-pa { font-family: var(--f-pa); color: var(--green); font-size: 17px; margin: 12px 0 0; font-weight: 600; }
.foot-base { border-top: 1px solid var(--line-2); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--text-mute); }

.powered {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line-2);
  text-align: center; font-size: 13.5px; color: var(--text-mute);
}
.powered a { color: var(--amber); font-weight: 700; text-decoration: none; }
.powered a:hover { text-decoration: underline; }
.powered span { color: var(--text-mute); }

/* ── Sticky mobile call/book bar ── */
.mobile-bar { display: none; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .split, .visit { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 74px; }
  section { padding: 62px 0; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--card); border-top: 1px solid var(--line);
    padding: 8px 22px 18px; box-shadow: var(--shadow);
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .site-head { position: relative; }
  .site-head .wrap { position: relative; min-height: 68px; }
  .utility .u-right { display: none; }
  .hero .wrap { padding-top: 52px; padding-bottom: 58px; }
  .hero-sm .wrap { padding-top: 44px; padding-bottom: 46px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); gap: 20px 6px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .svc-full { grid-template-columns: 1fr; gap: 16px; padding: 34px 0; }
  .svc-full-ico { width: 54px; height: 54px; padding: 12px; }
  .faq summary { font-size: 16.5px; padding-right: 34px; }
  .powered span { display: block; margin-top: 3px; }

  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: var(--line-2); box-shadow: 0 -4px 18px rgba(28,31,35,.13);
  }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 17px 10px; text-decoration: none; font-weight: 700; font-size: 15px;
    letter-spacing: .04em; text-transform: uppercase;
  }
  .mobile-bar .call { background: var(--card); color: var(--text); }
  .mobile-bar .book { background: var(--green); color: #fff; }
  .mobile-bar svg { width: 17px; height: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
