/* Bundy Excavator Hire — Bundaberg QLD */
:root {
  --ink: #0b0b0b;
  --ink-2: #161616;
  --ink-3: #1f1f1f;
  --yellow: #FFC700;
  --yellow-dark: #d6a400;
  --cream: #F5F2EC;
  --cream-dark: #e6e0d2;
  --line: rgba(255,255,255,0.08);
  --muted: #9a958a;
  --text-dark: #1a1a1a;
  --header-h: 72px;
  --shadow: 0 18px 50px -22px rgba(0,0,0,0.7);
  --ease: cubic-bezier(0.2,0.65,0.25,1);
}
html { scroll-padding-top: var(--header-h); scroll-behavior: smooth; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Barlow', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px; line-height: 1.6;
  background: var(--cream); color: var(--text-dark);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--yellow-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Barlow Condensed', sans-serif;
  font-weight: 600; letter-spacing: 0.02em;
  line-height: 1.1; text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 700; letter-spacing: 0.01em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; letter-spacing: 0.06em; }
p { margin-bottom: 1rem; }

.container { width: min(100% - 2.5rem, 1240px); margin-inline: auto; }
.section { padding: 80px 0; position: relative; isolation: isolate; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(245,242,236,0.78); }

/* ---------- Header ---------- */
header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h);
  padding: 0.5rem 1.6rem;
  background: rgba(11,11,11,0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.85rem; line-height: 1; min-width: 0; color: var(--cream); }
.brand img { width: 50px; height: 50px; object-fit: contain; flex-shrink: 0; display: block; }
.brand-text { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.brand-name { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.08rem; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.1; color: var(--cream); }
.brand-tag { font-size: 0.62rem; letter-spacing: 0.22em; color: var(--yellow); text-transform: uppercase; margin-top: 3px; line-height: 1; font-weight: 600; }

nav.site-nav { display: flex; align-items: center; gap: 0.4rem; }
.site-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(245,242,236,0.72);
  padding: 0.7rem 0.95rem; border-radius: 3px;
  transition: color .2s, background .2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--yellow); }
.nav-cta {
  background: var(--yellow); color: var(--ink) !important;
  padding: 0.75rem 1.2rem !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--cream); color: var(--ink) !important; }

.nav-toggle {
  display: none; width: 40px; height: 40px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  background: none; border: 0; padding: 0; flex-shrink: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); transition: transform .25s var(--ease), opacity .25s var(--ease); border-radius: 1px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--header-h) + 4rem) 0 4rem;
  overflow: hidden; isolation: isolate; color: var(--cream);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.82) 100%);
}
.hero-content { max-width: 940px; padding: 0 24px; }
.eyebrow {
  display: inline-block; font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--yellow); font-weight: 600; margin-bottom: 18px;
  border: 1px solid var(--yellow); padding: 6px 16px; border-radius: 2px;
}
.hero h1 { color: var(--cream); margin-bottom: 22px; }
.hero h1 .accent { color: var(--yellow); display: block; }
.hero .lede { font-size: 1.2rem; color: #e8e3d8; margin-bottom: 34px; font-weight: 300; letter-spacing: 0.5px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 16px 32px;
  font-family: 'Oswald', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.92rem;
  background: var(--yellow); color: var(--ink) !important;
  border: 2px solid var(--yellow); border-radius: 3px;
  transition: all .25s; cursor: pointer;
}
.btn:hover { background: var(--cream); border-color: var(--cream); color: var(--ink) !important; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--cream) !important; border-color: var(--cream); }
.btn-outline:hover { background: var(--yellow); color: var(--ink) !important; border-color: var(--yellow); }
.btn-dark { background: var(--ink); border-color: var(--ink); color: var(--cream) !important; }
.btn-dark:hover { background: var(--ink-3); border-color: var(--ink-3); color: var(--cream) !important; }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--ink-2); color: var(--cream);
}
.stat { padding: 44px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num {
  font-family: 'Oswald', sans-serif; font-size: 2.4rem;
  color: var(--yellow); font-weight: 700; display: block;
}
.stat .lbl {
  color: rgba(245,242,236,0.72); text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 0.74rem; margin-top: 4px;
}

/* ---------- Section title ---------- */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { margin-bottom: 14px; }
.underline { width: 60px; height: 3px; background: var(--yellow); margin: 18px auto 0; }
.section-title .eyebrow { border: 0; padding: 0; margin-bottom: 10px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.service-tile {
  background: var(--ink-2); color: var(--cream);
  padding: 36px 28px; border-radius: 4px;
  border-top: 3px solid var(--yellow);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--line); border-top: 3px solid var(--yellow);
}
.service-tile:hover { transform: translateY(-4px); }
.service-tile h3 { color: var(--cream); margin-bottom: 10px; }
.service-tile p { color: rgba(245,242,236,0.78); font-size: 0.96rem; }
.service-tile ul { margin-top: 14px; }
.service-tile li { padding: 5px 0 5px 22px; position: relative; color: rgba(245,242,236,0.78); font-size: 0.95rem; }
.service-tile li::before { content: '▸'; color: var(--yellow); position: absolute; left: 0; top: 5px; font-weight: 700; }
.service-tile .num-tag {
  font-family: 'Oswald', sans-serif; font-size: 0.78rem;
  color: var(--yellow); letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 6px; display: block;
}

/* ---------- Page banner ---------- */
.page-banner {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 80px;
  text-align: center; color: var(--cream); overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-image: var(--bg-img);
}
.page-banner::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,11,0.7) 0%, rgba(11,11,11,0.86) 100%);
}
.page-banner h1 { color: var(--cream); margin-bottom: 12px; }
.page-banner .crumb {
  color: var(--yellow); font-family: 'Oswald', sans-serif;
  letter-spacing: 0.3em; font-size: 0.82rem; text-transform: uppercase; margin-bottom: 8px; display: block;
}
.page-banner p { color: #e8e3d8; max-width: 700px; margin: 14px auto 0; font-size: 1.05rem; }

/* ---------- BG section (parallax-style strip) ---------- */
.bg-section {
  position: relative; padding: 120px 24px; text-align: center; color: var(--cream);
  isolation: isolate; overflow: hidden;
}
.bg-section::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-image: var(--bg-img);
}
.bg-section::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,11,0.55), rgba(11,11,11,0.85));
}
.bg-section .inner { max-width: 800px; margin: 0 auto; }
.bg-section h2 { color: var(--cream); margin-bottom: 18px; }
.bg-section p { color: #e8e3d8; font-size: 1.08rem; }
.bg-section .eyebrow { border: 0; padding: 0; margin-bottom: 14px; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .img {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  border-radius: 4px; box-shadow: var(--shadow);
}

/* ---------- Form ---------- */
.form {
  background: var(--cream); padding: 40px;
  border-radius: 4px; box-shadow: 0 6px 28px rgba(0,0,0,0.1);
  max-width: 760px; margin: 0 auto;
}
.form h3 { color: var(--ink); margin-bottom: 6px; font-size: 1.05rem; letter-spacing: 0.1em; }
.form h3 + p { color: #555; font-size: 0.92rem; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; margin-bottom: 6px;
  font-family: 'Oswald', sans-serif; letter-spacing: 0.15em;
  text-transform: uppercase; font-size: 0.78rem; color: var(--ink); font-weight: 600;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid #d4cdb9; border-radius: 3px;
  font-family: 'Barlow', sans-serif; font-size: 1rem;
  background: #fff; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,199,0,0.18);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-block; padding: 10px 18px;
  border: 1.5px solid #d4cdb9; border-radius: 30px;
  font-family: 'Oswald', sans-serif; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.82rem;
  background: #fff; transition: all .2s; user-select: none;
  color: var(--ink); cursor: pointer;
}
.chip input { display: none; }
.chip:has(input:checked) { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }

.form-msg { margin-top: 18px; padding: 14px; border-radius: 3px; display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: #f2e8c8; color: #5a4400; border: 1px solid var(--yellow); }
.form-msg.error { background: #fce8e6; color: #681f1f; border: 1px solid #efbcb6; }

/* ---------- Info cards ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card {
  background: var(--cream); padding: 32px; text-align: center;
  border-radius: 4px; border-top: 3px solid var(--yellow);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.info-card .icon {
  font-size: 1.8rem; color: var(--yellow);
  margin-bottom: 12px; display: block;
}
.info-card h3 { color: var(--ink); font-size: 1.05rem; margin-bottom: 6px; }
.info-card a { color: var(--ink); font-weight: 700; font-size: 1.04rem; }
.info-card a:hover { color: var(--yellow-dark); }

/* ---------- Footer ---------- */
footer { background: #050505; color: rgba(245,242,236,0.7); padding: 64px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 42px; margin-bottom: 44px; }
.foot-grid h4 { color: var(--cream); font-family: 'Oswald', sans-serif; letter-spacing: 0.15em; margin-bottom: 16px; font-size: 0.95rem; }
.foot-grid a { color: rgba(245,242,236,0.7); display: block; padding: 5px 0; font-size: 0.93rem; }
.foot-grid a:hover { color: var(--yellow); }
.foot-brand img { height: 60px; margin-bottom: 14px; }
.foot-brand p { font-size: 0.93rem; color: rgba(245,242,236,0.6); max-width: 340px; }
.copy {
  border-top: 1px solid var(--line); padding-top: 22px;
  text-align: center; font-size: 0.82rem;
  color: rgba(245,242,236,0.42); letter-spacing: 0.1em;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  :root { --header-h: 60px; }
  header { padding: 0.45rem 1rem; }
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 0.95rem; letter-spacing: 0.08em; }
  .brand-tag { font-size: 0.56rem; letter-spacing: 0.18em; margin-top: 2px; }
  .brand { gap: 0.55rem; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0;
    background: rgba(8,8,8,0.97); border-bottom: 1px solid var(--line);
    padding: 1rem 0;
    transform: translateY(-110%); transition: transform .3s var(--ease);
  }
  .site-nav a { padding: 1rem 1.4rem; width: 100%; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 0.95rem; }
  .site-nav.open { transform: translateY(0); }
  .nav-cta { margin: 0.8rem 1.4rem; text-align: center; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form { padding: 28px 20px; }
  .info-grid { grid-template-columns: 1fr; }
  .bg-section { padding: 80px 24px; }
  .section { padding: 60px 0; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; }
}
