@charset "UTF-8";
/* CSS Document */
    :root {
      --bg: #13324f;
      --bg-deep: #0f2740;
      --bg-soft: #1b4468;
      --panel: rgba(255,255,255,0.07);
      --panel-strong: rgba(255,255,255,0.10);
      --line: rgba(255,255,255,0.14);
      --text: #f5f8fb;
      --muted: #c5d3df;
      --button: #ffffff;
      --button-text: #13324f;
      --max: 1180px;
      --radius: 24px;
      --shadow: 0 24px 60px rgba(0,0,0,0.24);
      --font-brand: "Anth", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 26%), var(--bg);
      color: var(--text);
      font-family: var(--font-brand);
      line-height: 1.6;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

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

    .hero {
      padding: 1.2rem 0 3rem;
      margin-top: 20px;
    }

    .hero-shell {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
      box-shadow: var(--shadow);
      padding: clamp(1.5rem, 4vw, 3rem);
      min-height: 82vh;
      display: grid;
      align-items: center;
    }

    .hero-shell::before,
    .hero-shell::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      background: rgba(255,255,255,0.07);
      filter: blur(12px);
      pointer-events: none;
    }

    .hero-shell::before {
      width: 340px;
      height: 340px;
      right: -90px;
      top: -100px;
    }

    .hero-shell::after {
      width: 220px;
      height: 220px;
      left: -60px;
      bottom: -40px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.85fr;
      gap: 2rem;
      align-items: center;
    }

    .logo-wrap {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 1.15rem;
      margin-bottom: 1.5rem;
    }

    .logo-wrap img {
      width: clamp(270px, 34vw, 380px);
      height: auto;
    }

    h1, h2, h3, p { margin-top: 0; }

    h1 {
      font-size: clamp(1.55rem, 3vw, 2.2rem);
      margin-bottom: 0.3rem;
      letter-spacing: -0.03em;
    }

    h2 {
      font-size: clamp(1.1rem, 2.2vw, 1.5rem);
      font-weight: 500;
      color: var(--muted);
      max-width: 34rem;
      margin-bottom: 1rem;
    }

    .lead {
      max-width: 66ch;
      color: #e5edf3;
      font-size: 1.04rem;
      margin-bottom: 1.35rem;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .service-tags span,
    .area-list span {
      display: inline-flex;
      align-items: center;
      min-height: 2.45rem;
      padding: 0.2rem 0.95rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--text);
      font-size: 0.96rem;
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      min-height: 560px;
      border-radius: var(--radius);
      background: var(--panel);
      border: 1px solid var(--line);
      backdrop-filter: blur(6px);
    }

    .hero-slides {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .hero-slides img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.6s ease-in-out, transform 6s ease;
      transform: scale(1.04);
    }

    .hero-slides img.active {
      opacity: 1;
      transform: scale(1);
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(19,50,79,0.14), rgba(19,50,79,0.28));
      pointer-events: none;
      z-index: 1;
    }

    main section {
      padding: 0 0 3.5rem;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 1rem;
      margin-bottom: 1.35rem;
    }

    h3 {
      font-size: clamp(1.55rem, 3vw, 2.2rem);
      margin-bottom: 0.3rem;
      letter-spacing: -0.03em;
    }

    .section-copy {
      max-width: 66ch;
      color: var(--muted);
    }

    .areas-card,
    .cta-banner {
      border-radius: 28px;
      border: 1px solid var(--line);
      background: linear-gradient(140deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
      box-shadow: var(--shadow);
      padding: clamp(1.3rem, 3vw, 2rem);
    }

    .area-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    .gallery-item {
      border: 0;
      padding: 0;
      background: transparent;
      cursor: pointer;
      text-align: left;
    }

    .gallery-card {
      overflow: hidden;
      border-radius: 20px;
      background: var(--panel);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .gallery-item:hover .gallery-card,
    .gallery-item:focus-visible .gallery-card {
      transform: translateY(-4px);
      border-color: rgba(255,255,255,0.28);
    }

    .gallery-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .gallery-meta {
      padding: 0.95rem 1rem 1rem;
    }

    .gallery-meta strong {
      display: block;
      margin-bottom: 0.2rem;
      font-size: 1rem;
	  color: #fff;
    }

    .gallery-meta span {
      color: var(--muted);
      font-size: 0.94rem;
    }

    .cta-banner {
      display: grid;
      grid-template-columns: 1.3fr auto;
      gap: 1rem 1.5rem;
      align-items: center;
    }

    .cta-banner p {
      color: var(--muted);
      margin-bottom: 0;
      max-width: 58ch;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 1.4rem;
      border-radius: 999px;
      background: var(--button);
      color: var(--button-text);
      font-weight: 700;
      border: 0;
      box-shadow: 0 12px 24px rgba(0,0,0,0.14);
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
      opacity: 0.96;
    }

    footer {
      padding: 0 0 2.25rem;
    }

    .footer-card {
      border-top: 1px solid rgba(255,255,255,0.12);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .footer-card strong {
      display: block;
      color: var(--text);
      margin-bottom: 0.3rem;
    }

    .modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      background: rgba(6, 15, 24, 0.88);
      z-index: 40;
    }

    .modal.open { display: flex; }

    .modal-dialog {
      width: min(100%, 1040px);
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: var(--bg-deep);
      box-shadow: var(--shadow);
    }

    .modal-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 0.95rem 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .modal-toolbar strong { font-size: 1rem; }
    .modal-toolbar span { color: var(--muted); font-size: 0.92rem; }

    .modal-close {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 0;
      cursor: pointer;
      background: rgba(255,255,255,0.1);
      color: var(--text);
      font-size: 1.35rem;
    }

    .modal-image {
      width: 100%;
      max-height: 78vh;
      object-fit: contain;
      background: #0c2033;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .cta-banner,
      .footer-card {
        grid-template-columns: 1fr;
        display: grid;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-shell {
        min-height: auto;
      }

      .hero-panel {
        min-height: 420px;
      }
    }

    @media (max-width: 640px) {
      .hero { padding-top: 1rem; }
      .gallery-grid { grid-template-columns: 1fr; }
      .section-head { display: block; }
      .service-tags,
      .area-list { gap: 0.6rem; }

      .hero-panel {
        min-height: 320px;
      }
    }