:root {
  --primary-color: #ffffff;           /* Brand red (BENEFITS) */
  --secondary-color: #ff84e6;         /* Coral-pink accent */
  --text-light: #ffffff;              /* Main text on dark */
  --background-dark: #000000;         /* Page background */
  --surface-dark: #121212;            /* Cards / alt sections */
  --text-muted: #cccccc;              /* Secondary text */
  --link: #00c2ff;                    /* brighter cyan for contrast */
  --link-hover: #7ad7ff;              /* lighter on hover */
  --highlight-pink: #f4b6c2;          /* Optional highlight */
  --radius: 12px;
  --container-max: 1200px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --transition: 200ms ease-in-out;
}

/* GLOBAL RESET */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* BODY */
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: var(--background-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* SERVICES — airy, left-aligned, short measure */
#services .container { text-align: left; }

.services-list {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .services-list {
    grid-template-columns: 1fr 1fr;      /* two columns on desktop */
    gap: var(--space-5);
  }
}

/* Badge for Afterpay */
.afterpay-badge {
  margin: 30px auto auto;
  text-align: center;
  min-width: 200px;
  width: 45%;
  
}

/* Each service = slim media object with a tiny accent dot */
.service {
  position: relative;
  padding-left: 28px;                     /* room for the dot */
}

.service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 0 0 4px rgba(255,255,255,0.04); /* soft halo, not a box */
}

/* Headings: remove the pink underline inside Services to reduce clutter */
#services h3 {
  margin: 0 0 8px;
  color: var(--text-light);
}
#services h3::after { display: none; }

/* Paragraphs: shorter line length + lighter tone */
#services p {
  margin: 0;
  max-width: 60ch;                        /* short measure = not blocky */
  color: var(--text-muted);
}

/* LAYOUT */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-2);
  text-align: center;
}
.container--narrow { max-width: 900px; }

main { padding: var(--space-4) 0; }
section { padding: var(--space-5) 0; }

.section--alt {
  background: var(--surface-dark);
  border-radius: var(--radius);
  box-shadow: 0 0 24px rgba(0,0,0,0.5);
  width: 96%;
  max-width: 1200px;   /* keeps content from being ultra-wide */
  margin: 0 auto;
}


.section--band { padding-top: calc(var(--space-5) + 6px); }
.section--band::before {
  content: "";
  display: block;
  height: 4px;
  width: min(200px, 40%);
  margin: 0 auto var(--space-4);
  border-radius: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

/* MEDIA UTILITIES */
.responsive-media { width: 100%; height: auto; border-radius: var(--radius); }

/* HEADER */
header {
  background-color: var(--background-dark);
  padding: var(--space-2) 0 var(--space-4);
}
.logo-img { display: block; margin: 0 auto; width: 90%; height: auto; }

/* NAVIGATION */
nav { margin-top: var(--space-2); }
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-left: 0;
  margin: 0;
}
nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition), background-color var(--transition), outline-color var(--transition);
}
nav a:hover { color: var(--secondary-color); }
nav a:focus-visible { outline: 2px solid var(--secondary-color); outline-offset: 2px; }

/* HEADINGS */
h1{
  line-height: 1.2;
  margin: 0 0 var(--space-2);
  color: var(--primary-color);
}
h2{
  line-height: 1.2;
  margin: 0 0 var(--space-2);
  color: var(--secondary-color);
}

h1 { font-size: clamp(2rem, 3vw + 1rem, 3rem); }
h2 { font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem); }

/* Add h3 style to improve hierarchy scanning */
h3 {
  margin: var(--space-3) 0 var(--space-2);
  font-size: clamp(1.125rem, 1.2vw + 0.75rem, 1.375rem);
  color: var(--text-light);
  position: relative;
}
h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: var(--space-1) auto 0;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 1px;
}

/* TEXT */
p, li { font-size: 1.05rem; line-height: 1.65; }
p { margin: 0 0 var(--space-2); }
li { margin: 0 0 var(--space-1); }

/* LINKS (base) */
a {
  color: var(--link);
  text-decoration: none;
  transition: color var(--transition), text-decoration-color var(--transition);
}
a:hover { color: var(--link-hover); }
a:focus-visible { outline: 2px solid var(--link); outline-offset: 2px; }

/* Inline links must be visually distinct (don’t rely on color) */
a:not(.button):not(.nav-link) {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.1em;
}
a:not(.button):not(.nav-link):hover { text-decoration-thickness: 0.14em; }

/* BUTTONS */
.button,
button {
  background-color: var(--secondary-color); /* #ff79e4 */
  color: #000; /* high contrast on pink */
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: transform var(--transition), filter var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.button:hover,
button:hover {
  background-color: #ff64dd;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.button:active,
button:active { transform: translateY(0); box-shadow: none; }
.button:focus-visible,
button:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.button:visited { color: #000; }

/* IMAGES (generic) */
img { border-radius: var(--radius); }

/* “Card” utility for breaking up long text blocks */
.card {
  background: var(--surface-dark);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Simple content grid (e.g., split text/images) */
.content-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .content-grid--2 { grid-template-columns: 1fr 1fr; }
  .content-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* FOOTER */
footer {
  background-color: var(--background-dark);
  padding: var(--space-2) 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* MAP PLACEHOLDER */
#map-placeholder {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  border-radius: 12px;
  cursor: pointer;
}

/* CONTACT — Minimal, airy, no cards */
.contact {
  padding: var(--space-5) 0;
}

.contact .eyebrow {
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.contact h2 {
  margin-bottom: var(--space-2);
}

.contact .lede {
  max-width: 50ch;
  margin: 0 auto var(--space-4);
  color: var(--text-muted);
}

/* Two-column layout: details | map (stacks on mobile) */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* Slim, lined list — no boxes */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 600px) {
  .contact-list li { grid-template-columns: 1fr; gap: var(--space-1); }
}

/* Labels + content */
.contact-label {
  color: var(--text-muted);
  font-weight: 600;
}
.contact-value {
  font-size: 1.15rem;
  line-height: 1.5;
}

/* Emphasis for primary actions */
.contact-value .tel {
  font-size: clamp(1.25rem, 1.2vw + 1rem, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.contact-value .tel:hover { color: var(--link-hover); border-bottom-color: var(--link-hover); }

.contact-value .mailto {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Slim “chip” buttons for CTAs (optional) */
.contact-actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text-light);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}
.chip:hover { border-color: var(--link-hover); color: var(--link-hover); }

/* Map placeholder integrates cleanly */
.contact-map #map-placeholder {
  height: 420px;           /* a touch shorter for balance */
  background: #0a0a0a;     /* slightly darker than surfaces */
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .container { padding: 0 var(--space-2); }
  nav ul { flex-direction: column; gap: 10px; }
  .button, button { width: 100%; }
  .logo-img { width: 90%; height: auto; }
  .contact-details { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 0.95rem; }
  section { padding: var(--space-4) 0; }
  .logo-img { width: 90%; height: auto; }
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.skip-link:focus {
  position: absolute;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  overflow: visible;
  border-radius: 4px;
}

