/* Rubbish Made Easy — Rubbish Removal */
:root {
  --green-950: #0a1f14;
  --green-900: #0f2e1d;
  --green-800: #164a2e;
  --green-700: #1b6b3f;
  --green-600: #228b4e;
  --green-500: #2db35f;
  --green-400: #4dcb7a;
  --green-100: #e6f7ec;
  --green-50: #f2fbf5;
  --amber: #f0a202;
  --amber-soft: #fff4d6;
  --ink: #132019;
  --ink-soft: #3d5246;
  --muted: #6b7f72;
  --line: #d5e5db;
  --white: #ffffff;
  --danger: #c0392b;
  --danger-soft: #fdecea;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(15, 46, 29, 0.1);
  --shadow-sm: 0 4px 16px rgba(15, 46, 29, 0.08);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Outfit", var(--font);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* no left/right slide bar — page only scrolls up/down */
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

img {
  max-width: 100%;
}

a {
  color: var(--green-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 1em; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, 720px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 2px 12px rgba(15, 46, 29, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green-900);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
}

.logo:hover { text-decoration: none; }

.logo-mark {
  display: grid;
  place-items: center;
  color: var(--green-600);
}

.logo-text span {
  color: var(--green-600);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green-700);
}

.nav-links .btn {
  color: var(--white);
}

.nav-links .btn:hover {
  color: var(--white);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 859px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    gap: 1rem;
    align-items: stretch;
  }
  .nav-links.open .btn {
    text-align: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}

.btn:active { transform: scale(0.98); }

.btn-sm { padding: 0.45rem 0.95rem; font-size: 0.88rem; }
.btn-lg { padding: 0.9rem 1.6rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}
.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--green-600);
  color: var(--green-700);
  background: var(--green-50);
}

.btn-light {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--green-50);
  color: var(--green-900);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-danger {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: transparent;
}
.btn-danger:hover {
  background: var(--danger);
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(45, 179, 95, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(240, 162, 2, 0.1), transparent 50%),
    linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    padding: 4.5rem 0 5.5rem;
  }
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 0.75rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-600);
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.hero-trust li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-trust strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.hero-trust span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Quote card */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.quote-badge {
  display: inline-block;
  background: var(--amber-soft);
  color: #8a5a00;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.quote-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 1rem;
}

.quote-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.quote-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.quote-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quote-list strong {
  display: block;
  font-size: 0.95rem;
}

.quote-list span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.quote-list em {
  font-style: normal;
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.95rem;
}

.load-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.load-s { background: var(--green-400); }
.load-m { background: var(--green-600); }
.load-l { background: var(--green-800); }

.quote-note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--green-50);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.section-sub {
  color: var(--ink-soft);
  margin: 0;
}

.cards-3 {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.service-card {
  transition: transform 0.15s, box-shadow 0.15s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.icon-wrap {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

.legal-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 1.75rem 0 0;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
  counter-reset: none;
}

@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  position: relative;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.est-form label,
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.est-form select,
.est-form input[type="text"],
.booking-form select,
.booking-form input,
.booking-form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.est-form select:focus,
.booking-form select:focus,
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(45, 179, 95, 0.18);
}

.booking-form textarea {
  resize: vertical;
  min-height: 80px;
}

.check-row {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.6rem !important;
  font-weight: 500 !important;
  cursor: pointer;
}

.check-row > input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.schedule-note {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.urgent-row {
  margin-bottom: 1rem !important;
  padding: 0.75rem 0.9rem;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.urgent-row .optional {
  display: block;
  margin-top: 0.2rem;
  font-weight: 400;
}

.urgent-warning {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink);
  background: #fff8e6;
  border: 1px solid #f0d78c;
  border-radius: var(--radius-sm);
}

.urgent-warning strong {
  color: #8a6d00;
}

.est-schedule-note {
  font-size: 0.85rem;
  margin: 0 0 1rem;
  line-height: 1.4;
}

.check-row input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--green-600);
}

.est-result {
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.est-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.est-price {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1.1;
  margin: 0.2rem 0;
}

.est-range {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.price-table td:last-child {
  font-weight: 700;
  color: var(--green-700);
  text-align: right;
}

.table-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Booking */
.booking-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.book-progress {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.prog-step {
  flex: 1;
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.prog-step span {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--line);
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.prog-step.active {
  color: var(--green-800);
  border-color: var(--green-400);
  background: var(--green-100);
}

.prog-step.active span {
  background: var(--green-600);
  color: var(--white);
}

.prog-step.done {
  color: var(--green-700);
  border-color: var(--green-300, var(--green-400));
}

.prog-step.done span {
  background: var(--green-500);
  color: var(--white);
}

.booking-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.booking-form legend {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  padding: 0;
}

.form-row {
  display: grid;
  gap: 0 1rem;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* AU postcode: keep the 4-digit field compact */
.postcode-field {
  max-width: 12rem;
}

.postcode-field input {
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

.postcode-field input[readonly] {
  background: var(--green-50, #f2fbf5);
  color: var(--ink-soft, #3d5246);
  cursor: default;
}

/* Suburb type-ahead combobox */
.suburb-combo {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.suburb-combo > label {
  margin-bottom: 0.35rem;
}

.suburb-combo-field {
  position: relative;
}

.suburb-combo-field input {
  width: 100%;
  padding-right: 2.5rem;
}

.suburb-combo-toggle {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.suburb-combo-toggle:hover {
  color: var(--ink);
  background: var(--green-50, #f2fbf5);
}

.suburb-list {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.suburb-list [role="option"] {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.suburb-list [role="option"]:hover,
.suburb-list [role="option"].is-active {
  background: var(--green-50, #f2fbf5);
  color: var(--green-900);
}

.suburb-list .suburb-pc {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.suburb-list-empty {
  padding: 0.7rem 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.suburb-hint {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.suburb-hint-warn {
  color: var(--ink-soft, #3d5246);
  background: var(--amber-soft, #fff4d6);
  border: 1px solid rgba(240, 162, 2, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem;
}

.suburb-hint a {
  font-weight: 600;
}

.suburb-combo .error-msg a {
  font-weight: 600;
}

.service-area-note {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.state-fixed input[readonly] {
  background: var(--green-50, #f2fbf5);
  color: var(--ink-soft, #3d5246);
  cursor: default;
  border-color: var(--line);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85em;
}

.load-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

@media (min-width: 560px) {
  .load-options {
    grid-template-columns: repeat(4, 1fr);
  }
}

.load-option {
  margin: 0 !important;
  cursor: pointer;
}

.load-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.load-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.9rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.15s, background 0.15s;
  height: 100%;
}

.load-card strong {
  font-size: 0.95rem;
}

.load-card span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

.load-card em {
  font-style: normal;
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.85rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.load-option input:checked + .load-card {
  border-color: var(--green-600);
  background: var(--green-50);
}

.load-option input:focus-visible + .load-card {
  box-shadow: 0 0 0 3px rgba(45, 179, 95, 0.25);
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.summary {
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.15rem;
  font-size: 0.95rem;
}

.summary dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem 1rem;
  margin: 0;
}

.summary dt {
  color: var(--muted);
  font-weight: 500;
}

.summary dd {
  margin: 0;
  font-weight: 600;
}

.summary .est-line {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.summary .est-line strong {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--green-700);
}

/* Success */
.booking-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.success-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 1.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.ref-line {
  font-size: 1.1rem;
  background: var(--green-50);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

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

.field-error {
  border-color: var(--danger) !important;
}

.error-msg {
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 500;
  margin: -0.65rem 0 0.85rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.25rem 1rem;
}

.faq-item summary {
  font-weight: 600;
  padding: 0.9rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--green-600);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  padding-right: 1.5rem;
}

/* CTA */
/* Contact / enquiry */
.contact-wrap {
  display: grid;
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 800px) {
  .contact-wrap {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  }
  .contact-wrap .contact-success {
    grid-column: 2;
  }
}

.contact-aside h3 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 1.15rem;
}

.contact-points {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-points li {
  margin-bottom: 0.35rem;
}

.contact-aside-note {
  margin: 0;
  font-size: 0.9rem;
}

.contact-form .step-actions {
  justify-content: flex-start;
}

.form-status {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
}

.form-status.is-error {
  color: var(--danger);
  font-weight: 600;
}

/* Honeypot — clipped in-place (not left:-9999px, which causes a horizontal scrollbar) */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cta-band {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--white);
  padding: 3rem 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  margin: 0 0 0.35rem;
}

.cta-band p {
  margin: 0;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
  }
}

.footer-logo {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-logo .logo-text span {
  color: var(--green-400);
}

.footer-tag {
  margin: 0;
  max-width: 22em;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

/* Nav-style link stacks (Explore column) */
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.4rem;
}

.footer-links a:hover {
  color: var(--white);
}

/* Inline links inside Contact / prose */
.footer-contact p {
  margin: 0 0 0.65rem;
  line-height: 1.55;
  max-width: 28em;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-contact a {
  display: inline;
  margin: 0;
  color: var(--green-300, #86efac);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-meta {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-owner {
  opacity: 0.45;
  font-size: 0.8rem;
}

.footer-owner a {
  color: inherit;
}

.footer-bottom-only {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
  justify-content: center;
}

/* Privacy / legal pages */
.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.legal-page p,
.legal-page li {
  line-height: 1.65;
  color: var(--text, #1a2e1f);
}

.legal-page ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.legal-page li {
  margin-bottom: 0.35rem;
}

.legal-back {
  margin-top: 2.5rem;
}

.terms-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.check-row span a {
  color: var(--green-700, #1b5e3b);
  text-decoration: underline;
}

/* Admin */
.admin-body {
  background: var(--green-50);
  min-height: 100vh;
}

.admin-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 800px) {
  .admin-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.admin-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--green-800);
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-end;
}

.filter-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.filter-label select {
  font: inherit;
  font-weight: 500;
  padding: 0.45rem 0.65rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.bookings-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.booking-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.booking-item-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.booking-item h3 {
  margin: 0;
  font-size: 1.05rem;
}

.booking-ref {
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  color: var(--muted);
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.badge-pending { background: var(--amber-soft); color: #8a5a00; }
.badge-confirmed { background: var(--green-100); color: var(--green-800); }
.badge-done { background: #e8eef5; color: #2c4a6e; }
.badge-cancelled { background: var(--danger-soft); color: var(--danger); }

.booking-meta {
  display: grid;
  gap: 0.35rem 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

@media (min-width: 640px) {
  .booking-meta {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-meta strong {
  color: var(--ink);
  font-weight: 600;
}

.booking-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
}

/* Admin login + blocked slots */
.admin-login {
  max-width: 420px;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
}

.admin-login h2 {
  margin: 0.25rem 0 0.5rem;
}

.admin-login-hint {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
}

.admin-panel {
  margin-bottom: 0.5rem;
}

.admin-panel-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
}

.block-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: flex-end;
  margin: 1.15rem 0 0.85rem;
}

.block-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.block-form input,
.block-form select {
  font: inherit;
  font-weight: 400;
  padding: 0.55rem 0.7rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  min-width: 10rem;
}

.block-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.blocked-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.blocked-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.admin-panel code {
  font-size: 0.85em;
  background: var(--green-50);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.empty-state p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Utilities */
[hidden] {
  display: none !important;
}
