﻿    :root {
      --bg: oklch(97% 0.012 88);
      --surface: oklch(100% 0 0);
      --fg: oklch(20% 0.015 245);
      --muted: oklch(48% 0.018 245);
      --border: oklch(88% 0.014 88);
      --accent: oklch(57% 0.135 132);
      --copper: oklch(67% 0.16 62);
      --water: oklch(72% 0.09 220);
      --dark: oklch(18% 0.018 245);
      --soft-green: oklch(93% 0.05 132);
      --soft-copper: oklch(94% 0.05 62);
      --shadow: 0 22px 80px oklch(20% 0.015 245 / 0.10);
      --shadow-soft: 0 14px 40px oklch(20% 0.015 245 / 0.08);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --max: 1180px;
      --font-display: "Aptos Display", "Segoe UI", -apple-system, system-ui, sans-serif;
      --font-body: "Aptos", "Segoe UI", -apple-system, system-ui, sans-serif;
      --font-mono: ui-monospace, "JetBrains Mono", Consolas, monospace;
    }
    * {
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      margin: 0;
      background:
        radial-gradient(circle at top left, oklch(94% 0.045 132 / 0.55), transparent 34rem),
        linear-gradient(180deg, var(--bg), oklch(96% 0.01 88));
      color: var(--fg);
      font-family: var(--font-body);
      line-height: 1.5;
      text-rendering: optimizeLegibility;
    }
    img {
      display: block;
      max-width: 100%;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    button,
    input,
    textarea {
      font: inherit;
    }
    .skip-link {
      position: absolute;
      left: 16px;
      top: -60px;
      z-index: 50;
      padding: 10px 14px;
      border-radius: 999px;
      background: var(--dark);
      color: white;
      transition: top 180ms ease;
    }
    .skip-link:focus {
      top: 16px;
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      border-bottom: 1px solid oklch(100% 0 0 / 0.58);
      background: oklch(97% 0.012 88 / 0.84);
      backdrop-filter: blur(20px);
    }
    .nav-shell {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .brand img {
      width: clamp(148px, 18vw, 210px);
      height: auto;
      filter: drop-shadow(0 5px 12px oklch(20% 0.015 245 / 0.08));
    }
    .nav-links {
      display: none;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
    }
    .nav-links a {
      padding: 10px 12px;
      border-radius: 999px;
    }
    .nav-links a:hover,
    .nav-links a:focus-visible {
      background: var(--surface);
      color: var(--fg);
      outline: 0;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .menu-toggle {
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: var(--surface);
      color: var(--fg);
      display: inline-grid;
      place-items: center;
      cursor: pointer;
    }
    .menu-toggle svg {
      width: 20px;
      height: 20px;
    }
    .mobile-menu {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 220ms ease;
    }
    .mobile-menu[data-open="true"] {
      grid-template-rows: 1fr;
    }
    .mobile-menu-inner {
      overflow: hidden;
      display: grid;
      gap: 8px;
    }
    .mobile-menu a {
      padding: 14px 4px;
      border-top: 1px solid var(--border);
      color: var(--fg);
      font-weight: 650;
    }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 44px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 750;
      letter-spacing: 0;
      cursor: pointer;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
      white-space: nowrap;
    }
    .button:hover {
      transform: translateY(-1px);
    }
    .button.primary {
      background: var(--accent);
      color: white;
      box-shadow: 0 10px 24px oklch(57% 0.135 132 / 0.26);
    }
    .button.secondary {
      background: var(--surface);
      border-color: var(--border);
      color: var(--fg);
    }
    .button.dark {
      background: var(--dark);
      color: white;
      box-shadow: 0 12px 30px oklch(18% 0.018 245 / 0.18);
    }
    .button.small {
      min-height: 38px;
      padding: 9px 13px;
      font-size: 13px;
    }
    .section {
      padding: clamp(56px, 8vw, 104px) 0;
    }
    .container {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--copper);
    }
    .section-title {
      margin: 12px 0 0;
      max-width: 760px;
      font-family: var(--font-display);
      font-size: clamp(32px, 5.2vw, 58px);
      line-height: 1.02;
      letter-spacing: -0.01em;
    }
    .section-lead {
      margin: 18px 0 0;
      max-width: 680px;
      color: var(--muted);
      font-size: clamp(17px, 2vw, 20px);
    }
    .hero {
      padding: clamp(36px, 6vw, 82px) 0 clamp(56px, 8vw, 98px);
    }
    .hero-grid {
      display: grid;
      gap: clamp(28px, 5vw, 56px);
      align-items: center;
    }
    .hero-copy {
      display: grid;
      gap: 24px;
    }
    .hero h1 {
      margin: 0;
      max-width: 780px;
      font-family: var(--font-display);
      font-size: clamp(42px, 9vw, 78px);
      line-height: 0.98;
      letter-spacing: -0.01em;
      text-wrap: balance;
    }
    .hero h1 span {
      color: var(--accent);
    }
    .hero-subtitle {
      margin: 0;
      max-width: 620px;
      color: var(--muted);
      font-size: clamp(18px, 2.2vw, 22px);
    }
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 8px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: oklch(100% 0 0 / 0.78);
      color: var(--fg);
      font-size: 14px;
      font-weight: 700;
      box-shadow: 0 6px 20px oklch(20% 0.015 245 / 0.04);
    }
    .trust-pill.rating {
      border-color: oklch(80% 0.08 62);
      background: var(--soft-copper);
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }
    .hero-note {
      color: var(--muted);
      font-size: 14px;
    }
    .photo-collage {
      position: relative;
      min-height: 580px;
      isolation: isolate;
    }
    .photo-card {
      position: absolute;
      overflow: hidden;
      border: 1px solid oklch(100% 0 0 / 0.7);
      border-radius: var(--radius-xl);
      background: var(--surface);
      box-shadow: var(--shadow);
    }
    .photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .photo-card.main {
      inset: 0 10% 16% 0;
    }
    .photo-card.side {
      right: 0;
      top: 9%;
      width: 42%;
      height: 42%;
    }
    .photo-card.bottom {
      right: 8%;
      bottom: 0;
      width: 54%;
      height: 34%;
    }
    .collage-badge {
      position: absolute;
      left: 18px;
      bottom: 22%;
      z-index: 3;
      max-width: min(290px, calc(100% - 36px));
      padding: 18px;
      border-radius: 22px;
      background: oklch(100% 0 0 / 0.88);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(14px);
    }
    .collage-badge strong {
      display: block;
      font-size: 27px;
      line-height: 1;
      color: var(--accent);
    }
    .collage-badge span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 14px;
    }
    .proof-panel {
      display: grid;
      gap: 22px;
      grid-template-columns: 1fr;
      align-items: stretch;
    }
    .score-card {
      padding: clamp(24px, 4vw, 36px);
      border-radius: var(--radius-xl);
      background: var(--dark);
      color: white;
      box-shadow: var(--shadow);
    }
    .score-card .score {
      font-family: var(--font-display);
      font-size: clamp(58px, 10vw, 94px);
      line-height: 0.94;
      letter-spacing: -0.01em;
    }
    .score-card p {
      margin: 14px 0 0;
      color: oklch(91% 0.012 245);
      font-size: 18px;
    }
    .review-themes {
      display: grid;
      gap: 14px;
    }
    .theme-card,
    .service-card,
    .quality-item,
    .faq-item {
      border: 1px solid var(--border);
      background: oklch(100% 0 0 / 0.78);
      box-shadow: 0 10px 32px oklch(20% 0.015 245 / 0.05);
    }
    .theme-card {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 18px;
      border-radius: 22px;
    }
    .theme-icon,
    .service-icon {
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--soft-green);
      color: var(--accent);
    }
    .theme-card h3,
    .service-card h3 {
      margin: 0;
      font-size: 18px;
      letter-spacing: -0.01em;
    }
    .theme-card p,
    .service-card p,
    .quality-item p,
    .faq-item p {
      margin: 6px 0 0;
      color: var(--muted);
    }
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 34px;
    }
    .service-card {
      display: grid;
      gap: 18px;
      padding: 22px;
      border-radius: var(--radius-lg);
    }
    .service-card footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--accent);
      font-size: 14px;
      font-weight: 800;
    }
    .feature {
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, oklch(18% 0.018 245), oklch(26% 0.03 230)),
        var(--dark);
      color: white;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .feature-grid {
      display: grid;
      gap: 0;
    }
    .feature-copy {
      padding: clamp(28px, 6vw, 56px);
    }
    .feature-copy h2 {
      margin: 10px 0 0;
      font-family: var(--font-display);
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.02;
      letter-spacing: -0.01em;
    }
    .feature-copy p {
      max-width: 620px;
      color: oklch(90% 0.012 245);
      font-size: 18px;
    }
    .feature-points {
      display: grid;
      gap: 10px;
      margin: 26px 0;
      padding: 0;
      list-style: none;
    }
    .feature-points li {
      display: flex;
      gap: 10px;
      align-items: center;
      color: oklch(95% 0.01 245);
    }
    .feature-visual {
      min-height: 340px;
      position: relative;
      background: oklch(24% 0.02 230);
    }
    .feature-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.88;
      filter: saturate(0.9);
    }
    .feature-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, oklch(18% 0.018 245 / 0.42));
    }
    .timeline {
      display: grid;
      gap: 14px;
      margin-top: 34px;
      counter-reset: step;
    }
    .step {
      display: grid;
      gap: 12px;
      grid-template-columns: auto 1fr;
      padding: 18px;
      border-radius: 22px;
      border: 1px solid var(--border);
      background: oklch(100% 0 0 / 0.74);
    }
    .step::before {
      counter-increment: step;
      content: counter(step, decimal-leading-zero);
      width: 44px;
      height: 44px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: var(--dark);
      color: white;
      font-family: var(--font-mono);
      font-weight: 800;
      font-size: 13px;
    }
    .step h3 {
      margin: 0;
      font-size: 19px;
    }
    .step p {
      margin: 5px 0 0;
      color: var(--muted);
    }
    .gallery-toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }
    .filter-button {
      min-height: 40px;
      padding: 9px 13px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--muted);
      cursor: pointer;
      font-weight: 750;
    }
    .filter-button[aria-pressed="true"] {
      background: var(--dark);
      color: white;
      border-color: var(--dark);
    }
    .gallery-grid {
      display: grid;
      gap: 16px;
      margin-top: 22px;
    }
    .work-card {
      position: relative;
      min-height: 310px;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background: var(--surface);
      box-shadow: var(--shadow-soft);
    }
    .work-card[data-hidden="true"] {
      display: none;
    }
    .work-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 360ms ease;
    }
    .work-card:hover img {
      transform: scale(1.035);
    }
    .work-caption {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      padding: 14px;
      border-radius: 18px;
      background: oklch(100% 0 0 / 0.9);
      backdrop-filter: blur(14px);
      box-shadow: 0 12px 34px oklch(20% 0.015 245 / 0.12);
    }
    .work-caption small {
      display: block;
      color: var(--accent);
      font-family: var(--font-mono);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .work-caption strong {
      display: block;
      margin-top: 5px;
      font-size: 18px;
    }
    .quality-grid,
    .local-grid,
    .about-grid,
    .contact-grid {
      display: grid;
      gap: 22px;
      align-items: start;
    }
    .quality-photo,
    .local-photo,
    .about-photo {
      overflow: hidden;
      border-radius: var(--radius-xl);
      background: var(--surface);
      box-shadow: var(--shadow);
    }
    .quality-photo img,
    .local-photo img,
    .about-photo img {
      width: 100%;
      height: 100%;
      min-height: 360px;
      object-fit: cover;
    }
    .checklist {
      display: grid;
      gap: 12px;
    }
    .quality-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      padding: 16px;
      border-radius: 20px;
    }
    .quality-item svg,
    .feature-points svg {
      width: 20px;
      height: 20px;
      color: var(--accent);
      flex: 0 0 auto;
    }
    .map-card,
    .contact-card,
    .about-card {
      padding: clamp(24px, 4vw, 34px);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: var(--shadow-soft);
    }
    .map-placeholder {
      min-height: 260px;
      margin-top: 18px;
      border-radius: 24px;
      background:
        linear-gradient(90deg, oklch(88% 0.014 88) 1px, transparent 1px),
        linear-gradient(0deg, oklch(88% 0.014 88) 1px, transparent 1px),
        var(--soft-green);
      background-size: 42px 42px;
      position: relative;
      overflow: hidden;
    }
    .map-placeholder::before {
      content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      border-radius: 999px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: oklch(57% 0.135 132 / 0.12);
      border: 1px solid oklch(57% 0.135 132 / 0.32);
    }
    .map-pin {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 46px;
      height: 46px;
      border-radius: 18px 18px 18px 4px;
      transform: translate(-50%, -65%) rotate(-45deg);
      background: var(--accent);
      box-shadow: 0 14px 30px oklch(57% 0.135 132 / 0.3);
    }
    .map-pin::after {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: 999px;
      background: white;
    }
    .faq-list {
      display: grid;
      gap: 12px;
      margin-top: 30px;
    }
    .faq-item {
      border-radius: 22px;
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      min-height: 58px;
      padding: 18px;
      border: 0;
      background: transparent;
      color: var(--fg);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      cursor: pointer;
      text-align: left;
      font-weight: 800;
    }
    .faq-question span:last-child {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--soft-green);
      color: var(--accent);
      transition: transform 180ms ease;
    }
    .faq-item[data-open="true"] .faq-question span:last-child {
      transform: rotate(45deg);
    }
    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 220ms ease;
    }
    .faq-item[data-open="true"] .faq-answer {
      grid-template-rows: 1fr;
    }
    .faq-answer-inner {
      overflow: hidden;
    }
    .faq-answer p {
      padding: 0 18px 18px;
    }
    .contact {
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
      background: var(--dark);
      color: white;
      padding-bottom: 104px;
    }
    .contact .eyebrow,
    .contact .section-lead {
      color: oklch(90% 0.012 245);
    }
    .contact-form {
      display: grid;
      gap: 14px;
      padding: clamp(22px, 4vw, 30px);
      border-radius: var(--radius-xl);
      background: oklch(100% 0 0 / 0.08);
      border: 1px solid oklch(100% 0 0 / 0.12);
      box-shadow: 0 20px 64px oklch(0% 0 0 / 0.18);
    }
    .field {
      display: grid;
      gap: 7px;
    }
    .field label {
      color: oklch(94% 0.01 245);
      font-size: 13px;
      font-weight: 800;
    }
    .field input,
    .field textarea,
    .field select {
      width: 100%;
      border: 1px solid oklch(100% 0 0 / 0.16);
      border-radius: 16px;
      background: oklch(100% 0 0 / 0.10);
      color: white;
      padding: 13px 14px;
      outline: none;
    }
    .field textarea {
      min-height: 120px;
      resize: vertical;
    }
    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: var(--copper);
      box-shadow: 0 0 0 4px oklch(67% 0.16 62 / 0.16);
    }
    .field input::placeholder,
    .field textarea::placeholder {
      color: oklch(86% 0.01 245 / 0.64);
    }
    .form-status {
      min-height: 22px;
      color: oklch(91% 0.03 132);
      font-size: 14px;
    }
    .contact-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }
    .contact-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px;
      border-radius: 20px;
      background: oklch(100% 0 0 / 0.08);
      border: 1px solid oklch(100% 0 0 / 0.12);
    }
    .contact-link small {
      display: block;
      color: oklch(86% 0.01 245);
    }
    .bottom-cta {
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 45;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 10px;
      border-radius: 22px;
      background: oklch(100% 0 0 / 0.88);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      backdrop-filter: blur(20px);
    }
    .logo-mark {
      max-width: 260px;
      margin-bottom: 20px;
      filter: drop-shadow(0 12px 28px oklch(0% 0 0 / 0.15));
    }
    .icon {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    @media (min-width: 700px) {
      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .review-themes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .work-card.featured {
        grid-column: span 2;
        min-height: 430px;
      }
      .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (min-width: 920px) {
      .nav-links {
        display: flex;
      }
      .menu-toggle,
      .mobile-menu {
        display: none;
      }
      .hero-grid,
      .proof-panel,
      .feature-grid,
      .quality-grid,
      .local-grid,
      .about-grid,
      .contact-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
      }
      .feature-grid {
        grid-template-columns: 1fr 0.86fr;
      }
      .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
      .gallery-grid {
        grid-template-columns: 1.15fr 0.85fr 0.85fr;
      }
      .work-card.featured {
        grid-row: span 2;
        grid-column: auto;
        min-height: 640px;
      }
      .work-card {
        min-height: 312px;
      }
      .bottom-cta {
        display: none;
      }
      .contact {
        padding-bottom: clamp(56px, 8vw, 104px);
      }
    }
    @media (min-width: 1280px) {
      .hero-grid {
        grid-template-columns: 0.95fr 1.05fr;
      }
    }
    @media (max-width: 520px) {
      .nav-shell,
      .container,
      .mobile-menu {
        width: min(100% - 24px, var(--max));
      }
      .nav-actions .button {
        display: none;
      }
      .photo-collage {
        min-height: 460px;
      }
      .photo-card.main {
        inset: 0 0 28% 0;
      }
      .photo-card.side {
        display: none;
      }
      .photo-card.bottom {
        right: 0;
        bottom: 0;
        width: 72%;
        height: 36%;
      }
      .collage-badge {
        bottom: 24%;
      }
      .section {
        padding: 50px 0;
      }
    }
