/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0e0e0e;
  --white: #fafaf8;
  --green: #1a9e6e;
  --green-light: #d8f5ea;
  --green-mid: #4cc494;
  --gray: #6b6b6b;
  --gray-light: #f2f2f0;
  --border: rgba(0,0,0,0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.nav-logo {
  display: flex;
  align-items: center;
  color: var(--black);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 1rem 2.5rem;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* ── Hero ── */
.hero {
  padding: 9rem 2.5rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
  padding-bottom: 4rem;
}
.hero-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}
.hero h1 em {
  font-style: italic;
  color: var(--green);
}
.hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--black);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--black); transform: translateY(-1px); }

/* Browser mockup */
.hero-visual { position: relative; }
.browser {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
}
.dots { display: flex; gap: 5px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ff6058; }
.dot.y { background: #ffbd2e; }
.dot.g { background: #28c940; }
.browser-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--gray);
  margin-left: 6px;
}
.browser-body { padding: 1.5rem; }
.mock-header {
  height: 10px;
  background: var(--green);
  border-radius: 5px;
  width: 55%;
  margin-bottom: 12px;
}
.mock-line {
  height: 7px;
  background: var(--gray-light);
  border-radius: 4px;
  margin-bottom: 8px;
}
.mock-line.w90 { width: 90%; }
.mock-line.w70 { width: 70%; }
.mock-line.w80 { width: 80%; }
.mock-btn {
  height: 28px;
  width: 90px;
  background: var(--green-light);
  border-radius: 14px;
  margin: 14px 0;
}
.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.mock-card {
  height: 50px;
  background: var(--gray-light);
  border-radius: 8px;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}
.stat span {
  font-size: 11px;
  color: var(--gray);
}

/* Marquee */
.hero-marquee {
  overflow: hidden;
  background: var(--black);
  padding: 14px 0;
  margin-top: auto;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}
.marquee-track span:not(:last-child) { color: rgba(255,255,255,0.3); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Sections ── */
.section { padding: 6rem 2.5rem; }
.section.alt { background: var(--gray-light); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 540px;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.service-card.featured {
  border-color: var(--green);
  border-width: 2px;
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.service-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 300;
}
.service-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ── Work ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.work-thumb {
  height: 160px;
  overflow: hidden;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.work-thumb.cafe { background: #e8f7f0; }
.work-thumb.tradie { background: #e3eef9; }
.work-thumb.salon { background: #f7eaf3; }

/* Mini nav bar inside thumbnail */
.work-mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.7);
}
.wmn-logo { font-family: var(--font-display); font-size: 11px; font-weight: 700; }
.cafe .wmn-logo { color: #0f6e56; }
.tradie .wmn-logo { color: #185fa5; }
.salon .wmn-logo { color: #882e55; }
.wmn-links { display: flex; gap: 6px; }
.wmn-links span { display: block; width: 22px; height: 4px; border-radius: 2px; background: rgba(0,0,0,0.12); }

/* Mini hero inside thumbnail */
.work-mock-hero {
  flex: 1;
  padding: 14px 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.wmh-title { height: 9px; border-radius: 4px; width: 70%; }
.wmh-sub { height: 6px; border-radius: 3px; width: 55%; }
.wmh-btn { height: 20px; width: 64px; border-radius: 10px; margin-top: 4px; }
.cafe-hero .wmh-title { background: #1a9e6e; }
.cafe-hero .wmh-sub { background: rgba(26,158,110,0.3); }
.cafe-hero .wmh-btn { background: #1a9e6e; }
.tradie-hero .wmh-title { background: #185fa5; }
.tradie-hero .wmh-sub { background: rgba(24,95,165,0.3); }
.tradie-hero .wmh-btn { background: #185fa5; }
.salon-hero .wmh-title { background: #882e55; }
.salon-hero .wmh-sub { background: rgba(136,46,85,0.3); }
.salon-hero .wmh-btn { background: #882e55; }

.work-info { padding: 1rem 1.25rem; }
.work-info h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.work-info p { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.work-bottom { display: flex; align-items: center; justify-content: space-between; }
.work-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  background: var(--gray-light);
  color: var(--gray);
  padding: 3px 10px;
  border-radius: 20px;
}
.work-view { font-size: 12px; font-weight: 500; color: var(--green); }

/* ── Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity:0; transform: scale(0.96) translateY(10px); } to { opacity:1; transform: scale(1) translateY(0); } }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.modal-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.modal-sub { font-size: 12px; color: var(--gray); margin-top: 2px; }
.modal-close {
  background: var(--gray-light);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }
.modal-body { padding: 0; }
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}
.modal-note { font-size: 13px; color: var(--gray); }

/* Preview content inside modal */
.preview-site { font-family: var(--font-body); }
.preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}
.preview-nav-logo { font-family: var(--font-display); font-size: 16px; font-weight: 800; }
.preview-nav-links { display: flex; gap: 16px; }
.preview-nav-links a { font-size: 12px; color: var(--gray); text-decoration: none; }
.preview-hero {
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.preview-hero-text h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.preview-hero-text p { font-size: 13px; color: var(--gray); margin-bottom: 16px; line-height: 1.6; max-width: 320px; }
.preview-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}
.preview-hero-img {
  width: 180px;
  height: 120px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.preview-section { padding: 2rem; border-top: 1px solid var(--border); }
.preview-section h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 1rem; }
.preview-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.preview-card { border-radius: 10px; padding: 14px; border: 1px solid var(--border); }
.preview-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.preview-card p { font-size: 11px; color: var(--gray); line-height: 1.5; }
.preview-card .pc-price { font-size: 14px; font-weight: 700; margin-top: 8px; }
.preview-info-row { display: flex; gap: 16px; flex-wrap: wrap; }
.preview-info-chip { background: var(--gray-light); border-radius: 8px; padding: 10px 14px; font-size: 12px; }
.preview-info-chip strong { display: block; font-size: 11px; color: var(--gray); margin-bottom: 2px; font-weight: 400; }
.preview-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.preview-gallery-item { border-radius: 8px; height: 60px; }

/* ── Process ── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.process-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 2.5rem;
  flex-shrink: 0;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--border);
}
.process-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.process-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-content p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Testimonials ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.stars { color: #f5a623; font-size: 14px; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; }
.testi-biz { font-size: 12px; color: var(--gray); }

/* ── Contact ── */
.contact-section { background: var(--black); }
.contact-section .section-label { color: var(--green-mid); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-sub { color: rgba(255,255,255,0.5); }
.contact-inner { max-width: 700px; }
.contact-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  flex: 1;
  min-width: 160px;
  transition: background 0.2s, transform 0.2s;
}
.contact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.contact-icon { font-size: 20px; margin-bottom: 8px; }
.contact-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-val { font-size: 14px; font-weight: 500; color: var(--white); }

/* ── Footer ── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 12px; }
  .process-connector { display: none; }
  .contact-cards { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 7rem 1.25rem 0; }
  .section { padding: 4rem 1.25rem; }
  .nav { padding: 1rem 1.25rem; }
  .mobile-menu { padding: 1rem 1.25rem; }
}
