    :root {
      --bg: #ffffff;
      --bg-soft: #fafafa;
      --bg-tint: #ebf2f5;
      --bg-card: #ffffff;
      --line: #e5e5e5;
      --line-soft: #f0f0f0;
      --text: #0a0a0a;
      --text-2: #525252;
      --text-3: #a3a3a3;
      --accent: #1E4A5C;
      --accent-deep: #133340;
      --accent-bright: #2e6a87;
      --accent-soft: #ebf2f5;
      --coral: #B85638;
      --coral-deep: #8E3D26;
      --coral-bright: #E07856;
      --dark: #0a0a0a;
      --dark-soft: rgba(255, 255, 255, 0.72);
      --dark-muted: rgba(255, 255, 255, 0.45);
      --dark-line: rgba(255, 255, 255, 0.12);
      --sans: 'Manrope', system-ui, -apple-system, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1 em, h2 em, h3 em, .brand em, .footer-brand em {
      font-style: normal;
      color: inherit;
      font-weight: inherit;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }
    @media (max-width: 760px) {
      .container { padding: 0 24px; }
    }

    /* ===== TYPOGRAPHY ===== */
    .eyebrow {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      letter-spacing: -0.005em;
    }
    .eyebrow::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--coral-bright);
      border-radius: 50%;
    }

    h1 {
      font-family: var(--sans);
      font-weight: 500;
      font-size: clamp(48px, 7.5vw, 104px);
      line-height: 1.0;
      letter-spacing: -0.04em;
    }
    h2 {
      font-family: var(--sans);
      font-weight: 600;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.05;
      letter-spacing: -0.035em;
    }
    h3 {
      font-family: var(--sans);
      font-weight: 600;
      font-size: 24px;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    /* ===== NAV ===== */
    nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 40px;
      max-width: 1280px;
      margin: 0 auto;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }
    .brand img {
      height: 72px;
      width: auto;
      display: block;
    }
    @media (max-width: 760px) {
      .brand img { height: 48px; }
    }
    .nav-links {
      display: flex;
      gap: 36px;
      align-items: center;
      list-style: none;
    }
    .nav-links a {
      color: var(--text-2);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--accent); }
    .nav-cta {
      background: var(--coral);
      color: #ffffff !important;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      transition: background 0.15s;
    }
    .nav-cta:hover { background: var(--coral-deep); color: #ffffff !important; }
    @media (max-width: 760px) {
      .nav-links li:not(:last-child) { display: none; }
      .nav-inner { padding: 16px 24px; }
    }

    /* ===== HERO ===== */
    .hero {
      padding: 80px 0 100px;
      position: relative;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .hero-text { max-width: 600px; }
    .hero-text .eyebrow { margin-bottom: 32px; }
    h1 { margin-bottom: 32px; }
    .hero-sub {
      font-size: 20px;
      color: var(--text-2);
      margin-bottom: 44px;
      line-height: 1.5;
      font-weight: 400;
      max-width: 520px;
    }
    .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

    .hero-image {
      aspect-ratio: 4 / 5;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      background: #f0f0f0;
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-image-tag {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(10, 10, 10, 0.72);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      color: #ffffff;
      padding: 8px 14px;
      border-radius: 999px;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      z-index: 1;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 26px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      transition: all 0.15s;
      border: 1px solid transparent;
      cursor: pointer;
      font-family: var(--sans);
      letter-spacing: -0.01em;
    }
    .btn-primary {
      background: var(--coral);
      color: #ffffff;
    }
    .btn-primary:hover { background: var(--coral-deep); }
    .btn-ghost {
      background: transparent;
      color: var(--text);
      border-color: var(--line);
    }
    .btn-ghost:hover { border-color: var(--text); background: var(--bg-soft); }
    .btn svg { width: 16px; height: 16px; }

    @media (max-width: 900px) {
      .hero { padding: 48px 0 64px; }
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .hero-image { aspect-ratio: 16 / 11; }
    }

    /* ===== TRUST STRIP ===== */
    .trust {
      background: var(--bg-tint);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 64px 0;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 32px;
    }
    .trust-item {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .trust-icon {
      width: 28px;
      height: 28px;
      color: var(--accent);
      margin-bottom: 8px;
    }
    .trust-name {
      font-family: var(--sans);
      font-weight: 600;
      font-size: 20px;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--accent);
    }
    .trust-desc {
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.5;
    }
    @media (max-width: 1024px) {
      .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    }
    @media (max-width: 640px) {
      .trust-grid { grid-template-columns: 1fr; gap: 28px; }
    }

    /* ===== SECTION DEFAULTS ===== */
    section { padding: 140px 0; }
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      margin-bottom: 72px;
      gap: 48px;
      flex-wrap: wrap;
    }
    .section-head .eyebrow { margin-bottom: 20px; }
    .section-head h2 { max-width: 18ch; margin-top: 20px; }
    .section-intro {
      max-width: 380px;
      color: var(--text-2);
      font-size: 17px;
      line-height: 1.6;
    }
    @media (max-width: 760px) {
      section { padding: 96px 0; }
      .section-head { margin-bottom: 56px; }
    }

    /* ===== SERVICES (2x2 card grid) ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .service-card {
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .service-card:hover {
      border-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(30, 74, 92, 0.12);
    }
    .service-card-image {
      aspect-ratio: 4 / 3;
      background: #f0f0f0;
      position: relative;
      overflow: hidden;
    }
    .service-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .service-card-content {
      padding: 32px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .service-card-content h3 {
      font-family: var(--sans);
      font-weight: 600;
      font-size: 28px;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 8px;
    }
    .service-price {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 600;
      color: var(--coral);
      margin-bottom: 20px;
      letter-spacing: -0.005em;
    }
    .service-desc {
      color: var(--text-2);
      font-size: 15px;
      line-height: 1.55;
      margin-bottom: 24px;
    }
    .service-list {
      list-style: none;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
    }
    .service-list li {
      font-size: 14px;
      color: var(--text);
      padding: 6px 0;
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .service-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--coral-bright);
      flex-shrink: 0;
    }
    @media (max-width: 900px) {
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .service-card-content { padding: 28px; }
    }

    /* ===== AREA + SUBURB MARQUEE ===== */
    .area-content {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
      margin-bottom: 96px;
    }
    .area-text { color: var(--text-2); font-size: 17px; line-height: 1.6; }
    .area-text p { margin-bottom: 16px; }
    .area-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .area-tag {
      padding: 10px 18px;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      background: var(--bg);
      transition: all 0.15s;
    }
    .area-tag:hover {
      border-color: var(--accent);
      background: var(--accent);
      color: #ffffff;
    }
    .area-tag.dim {
      color: var(--text-3);
      border-style: dashed;
      background: transparent;
    }

    /* Marquee */
    .marquee {
      overflow: hidden;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 36px 0;
      margin: 0 calc(50% - 50vw);
      position: relative;
      background: var(--bg-tint);
    }
    .marquee::before, .marquee::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 2;
      pointer-events: none;
    }
    .marquee::before {
      left: 0;
      background: linear-gradient(to right, var(--bg-tint), transparent);
    }
    .marquee::after {
      right: 0;
      background: linear-gradient(to left, var(--bg-tint), transparent);
    }
    .marquee-track {
      display: flex;
      gap: 64px;
      animation: scroll 40s linear infinite;
      width: max-content;
    }
    .marquee-item {
      font-family: var(--sans);
      font-weight: 500;
      font-size: 28px;
      color: var(--text);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 64px;
      letter-spacing: -0.02em;
    }
    .marquee-item::after {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
    }
    @keyframes scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @media (max-width: 900px) {
      .area-content { grid-template-columns: 1fr; gap: 40px; }
    }

    /* ===== ABOUT ===== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 80px;
      align-items: center;
    }
    .about-photo {
      aspect-ratio: 4 / 5;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      background: #f0f0f0;
    }
    .about-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    #about h2 { margin-top: 20px; margin-bottom: 72px; }
    #about p {
      color: var(--text-2);
      font-size: 18px;
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .credentials {
      display: flex;
      gap: 48px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid var(--line);
      flex-wrap: wrap;
    }
    .cred { display: flex; flex-direction: column; gap: 6px; }
    .cred-label {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 500;
      color: var(--text-3);
    }
    .cred-value {
      font-size: 16px;
      color: var(--text);
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial {
      display: flex;
      flex-direction: column;
      gap: 28px;
      padding: 32px;
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: 20px;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .testimonial:hover {
      border-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(30, 74, 92, 0.12);
    }
    .testimonial-quote {
      font-size: 17px;
      line-height: 1.55;
      color: var(--text);
      font-weight: 400;
      letter-spacing: -0.005em;
      flex-grow: 1;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
    }
    .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--accent);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 700;
      flex-shrink: 0;
      letter-spacing: 0.02em;
    }
    .avatar.v1 { background: var(--accent); }
    .avatar.v2 { background: var(--accent-deep); }
    .avatar.v3 { background: var(--accent-bright); }
    .testimonial-meta {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .testimonial-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      letter-spacing: -0.01em;
    }
    .testimonial-context {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 400;
      color: var(--text-3);
    }
    @media (max-width: 900px) {
      .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    }

    /* ===== FAQ ===== */
    .faq {
      background: var(--bg-soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .faq-list {
      max-width: 880px;
    }
    .faq-item {
      border-bottom: 1px solid var(--line);
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 30px 0;
      font-family: var(--sans);
      font-size: 19px;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      letter-spacing: -0.02em;
    }
    .faq-q:hover { color: var(--accent); }
    .faq-toggle {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      position: relative;
    }
    .faq-toggle::before, .faq-toggle::after {
      content: '';
      position: absolute;
      background: var(--accent);
      transition: transform 0.3s;
    }
    .faq-toggle::before {
      top: 50%; left: 0; right: 0; height: 2px;
      transform: translateY(-50%);
    }
    .faq-toggle::after {
      left: 50%; top: 0; bottom: 0; width: 2px;
      transform: translateX(-50%);
    }
    .faq-item.open .faq-toggle::after {
      transform: translateX(-50%) scaleY(0);
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      color: var(--text-2);
      font-size: 16px;
      line-height: 1.6;
    }
    .faq-item.open .faq-a {
      max-height: 300px;
      padding-bottom: 30px;
    }

    /* ===== CONTACT ===== */
    .contact {
      text-align: center;
      padding: 160px 0;
    }
    .contact .eyebrow {
      margin-bottom: 32px;
      justify-content: center;
    }
    .contact h2 {
      margin: 0 auto 32px;
      max-width: 20ch;
    }
    .contact-sub {
      font-size: 20px;
      color: var(--text-2);
      max-width: 580px;
      margin: 0 auto 60px;
      line-height: 1.5;
    }
    .contact-methods {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .contact-card {
      background: var(--bg);
      border: 1px solid var(--line);
      padding: 28px 36px;
      border-radius: 16px;
      text-decoration: none;
      color: var(--text);
      transition: all 0.15s;
      min-width: 240px;
    }
    .contact-card:hover {
      border-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(30, 74, 92, 0.12);
    }
    .contact-card-label {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 500;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .contact-card-value {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--dark);
      color: var(--dark-soft);
      padding: 96px 0 40px;
      font-size: 14px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 56px;
      margin-bottom: 72px;
    }
    .footer-brand {
      margin-bottom: 20px;
    }
    .footer-brand img {
      height: 72px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
    }
    .footer-tag {
      max-width: 280px;
      line-height: 1.5;
      color: var(--dark-muted);
    }
    .footer-col h4 {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { padding: 6px 0; }
    .footer-col a {
      color: var(--dark-soft);
      text-decoration: none;
      transition: color 0.15s;
    }
    .footer-col a:hover { color: #ffffff; }
    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid var(--dark-line);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 400;
      color: var(--dark-muted);
    }
    @media (max-width: 760px) {
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-brand img { height: 56px; }
    }

    /* ===== REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== POLICY PAGE ===== */
    .policy {
      padding: 80px 0 120px;
    }
    .policy-header {
      margin-bottom: 64px;
      max-width: 720px;
    }
    .policy-header .eyebrow {
      margin-bottom: 20px;
    }
    .policy-header h1 {
      font-family: var(--sans);
      font-weight: 500;
      font-size: clamp(44px, 6vw, 72px);
      line-height: 1.0;
      letter-spacing: -0.035em;
      margin-bottom: 20px;
    }
    .policy-header .policy-updated {
      color: var(--text-2);
      font-size: 15px;
    }
    .policy-content {
      max-width: 720px;
    }
    .policy-content h2 {
      font-family: var(--sans);
      font-weight: 600;
      font-size: 22px;
      letter-spacing: -0.015em;
      margin-top: 56px;
      margin-bottom: 16px;
      color: var(--text);
    }
    .policy-content h2:first-child {
      margin-top: 0;
    }
    .policy-content p {
      color: var(--text-2);
      font-size: 16px;
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .policy-content ul {
      margin-bottom: 20px;
      padding-left: 0;
      list-style: none;
    }
    .policy-content ul li {
      color: var(--text-2);
      font-size: 16px;
      line-height: 1.65;
      padding: 4px 0;
      padding-left: 24px;
      position: relative;
    }
    .policy-content ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 16px;
      width: 14px;
      height: 1px;
      background: var(--accent);
    }
    .policy-content a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .policy-content a:hover {
      color: var(--accent-deep);
    }
    .policy-content strong {
      color: var(--text);
      font-weight: 600;
    }
