@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --navy-950: #09182a;
  --navy-900: #102a43;
  --navy-800: #143a63;
  --navy-700: #1b4e84;
  --blue-soft: #e9f1fa;
  --yellow-500: #f2b705;
  --yellow-600: #d99f00;
  --cream-100: #f7f4ea;
  --surface: #ffffff;
  --surface-2: #f3f6f8;
  --border: #d5dee8;
  --ink-900: #162334;
  --ink-700: #4f5f74;
  --ink-500: #708196;
  --success: #1b7f52;
  --shadow-soft: 0 18px 40px rgba(9, 24, 42, 0.08);
  --shadow-strong: 0 20px 48px rgba(9, 24, 42, 0.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top right, rgba(242, 183, 5, 0.08), transparent 24%),
    linear-gradient(180deg, #f5f4ef 0%, #f6f7f9 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5rem;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  line-height: 1;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.55);
}

.section-dark {
  color: #f8fbff;
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.98), rgba(9, 24, 42, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(20, 58, 99, 0.04), rgba(20, 58, 99, 0)),
    var(--surface);
}

.section-head {
  display: grid;
  gap: 0.85rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2.35rem, 5vw, 3.5rem);
}

.section-head p {
  margin: 0;
  max-width: 44rem;
  font-size: 1.08rem;
  color: var(--ink-700);
}

.section-dark .section-head p,
.section-dark .detail-text,
.section-dark .muted-text {
  color: rgba(244, 248, 252, 0.82);
}

.section-dark .panel,
.section-dark .card {
  color: var(--ink-900);
}

.section-dark .panel .detail-text,
.section-dark .panel .muted-text {
  color: var(--ink-700);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  background: rgba(242, 183, 5, 0.16);
  border: 1px solid rgba(242, 183, 5, 0.28);
  color: var(--yellow-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(9, 24, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow-500), rgba(242, 183, 5, 0));
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(9, 24, 42, 0.18);
  background: rgba(9, 24, 42, 0.96);
}

.site-header .brand {
  gap: 0;
  margin-right: -1.1rem;
}

.site-header .brand-mark {
  width: 118px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  margin-right: 0;
}

.site-header .brand-copy {
  display: none;
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  color: #ffffff;
  font-size: 1.7rem;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: rgba(233, 241, 250, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
}

.site-nav a {
  position: relative;
  color: rgba(241, 245, 249, 0.92);
  font-weight: 600;
  padding: 0.35rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--yellow-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd55b, var(--yellow-500));
  color: var(--navy-950);
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(242, 183, 5, 0.2);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(88svh, 860px);
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  background: var(--navy-950);
  overflow: hidden;
}

.hero-video,
.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 24, 42, 0.88) 0%, rgba(9, 24, 42, 0.7) 40%, rgba(9, 24, 42, 0.45) 100%),
    linear-gradient(180deg, rgba(9, 24, 42, 0.1), rgba(9, 24, 42, 0.5));
}

.hero::after {
  content: "";
  background:
    radial-gradient(circle at bottom right, rgba(242, 183, 5, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(27, 78, 132, 0.25), transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(8.5rem, 18vw, 12rem) 0 4.25rem;
  max-width: 720px;
}

.hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(4rem, 10vw, 7rem);
}

.hero-text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(244, 248, 252, 0.9);
  max-width: 44rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero-highlights span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(180deg, #ffd55b, var(--yellow-500));
  box-shadow: 0 14px 24px rgba(242, 183, 5, 0.18);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  color: var(--navy-800);
  background: transparent;
  border-color: var(--navy-800);
}

.btn-light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.6rem;
  align-items: center;
}

.panel,
.card,
.map-frame,
.footer-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.panel {
  padding: clamp(1.8rem, 4vw, 3rem);
}

.panel h2,
.panel h3 {
  margin-bottom: 0.9rem;
}

.panel p:last-child {
  margin-bottom: 0;
}

.since-badge {
  display: inline-grid;
  gap: 0.1rem;
  padding: 1.2rem 1.35rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffd861, var(--yellow-500));
  color: var(--navy-950);
  box-shadow: 0 18px 28px rgba(242, 183, 5, 0.18);
}

.since-badge strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.8rem, 7vw, 4rem);
  line-height: 0.9;
}

.since-badge span {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.media-card .caption {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(9, 24, 42, 0.8);
  color: #f4f8fc;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.media-card .caption strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.cards-grid {
  display: grid;
  gap: 1.35rem;
}

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

.cards-grid.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.feature-card,
.review-card,
.mini-card,
.detail-card,
.process-card {
  display: flex;
  flex-direction: column;
}

.category-card {
  overflow: hidden;
}

.card-media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(20, 58, 99, 0.08), rgba(242, 183, 5, 0.1)),
    var(--surface-2);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-grid.columns-2 .category-card .card-media {
  aspect-ratio: auto;
  height: 180px;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.35rem;
}

.card-body h3 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.card-body p {
  color: var(--ink-700);
}

.card-body .btn {
  margin-top: auto;
  width: fit-content;
}

.feature-card,
.detail-card,
.process-card,
.mini-card,
.review-card {
  padding: 1.4rem;
}

.feature-card,
.detail-card,
.mini-card,
.process-card {
  border-top: 4px solid var(--yellow-500);
}

.feature-card h3,
.detail-card h3,
.process-card h3,
.mini-card h3 {
  font-size: 1.6rem;
}

.review-card {
  position: relative;
  padding-top: 1.8rem;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 0.4rem;
  left: 1rem;
  color: rgba(20, 58, 99, 0.14);
  font-size: 4.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.review-card p {
  color: var(--ink-700);
}

.review-card footer {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--navy-800);
  font-weight: 700;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, rgba(242, 183, 5, 0.16), rgba(242, 183, 5, 0.22));
  color: var(--navy-800);
  font-size: 1.25rem;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: #ffffff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 24, 42, 0.9) 0%, rgba(9, 24, 42, 0.72) 45%, rgba(9, 24, 42, 0.5) 100%),
    var(--hero-image) center / cover no-repeat;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: clamp(7rem, 14vw, 10rem) 0 3.75rem;
}

.page-hero h1 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(3.5rem, 9vw, 5.8rem);
}

.page-hero p {
  max-width: 44rem;
  margin-bottom: 0;
  font-size: 1.1rem;
  color: rgba(244, 248, 252, 0.88);
}

.info-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem;
}

.contact-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
  color: var(--navy-800);
}

.map-frame {
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.check-list li::before {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--yellow-500);
  box-shadow: 0 0 0 4px rgba(242, 183, 5, 0.15);
}

.process-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--navy-800);
  color: #ffffff;
  font-weight: 700;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.cta-banner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(20, 58, 99, 0.98), rgba(12, 34, 58, 0.98)),
    var(--navy-800);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.cta-banner h2,
.cta-banner h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
}

.cta-banner p {
  margin: 0;
  color: rgba(244, 248, 252, 0.82);
}

.footer {
  background: linear-gradient(180deg, #122a44, #0b1c30);
  color: #f1f5f9;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
}

.footer-panel {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.footer h3 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.footer p,
.footer li,
.footer a {
  color: rgba(241, 245, 249, 0.82);
}

.footer ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(241, 245, 249, 0.66);
  font-size: 0.95rem;
}

.placeholder-note {
  color: var(--ink-500);
  font-style: italic;
}

.footer .placeholder-note {
  color: rgba(241, 245, 249, 0.66);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .cards-grid.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(9, 24, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.7rem 0.4rem;
  }

  .site-nav a::after {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .cards-grid.columns-3,
  .info-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 1.25rem, 100%);
  }

  .hero-content {
    padding-bottom: 3rem;
  }

  .cards-grid.columns-2,
  .cards-grid.columns-3,
  .cards-grid.columns-4,
  .info-grid,
  .gallery-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-row .btn,
  .cta-banner .btn {
    width: 100%;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .map-frame iframe {
    min-height: 340px;
  }

  .brand-copy strong {
    font-size: 1.45rem;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .site-header .brand-mark {
    width: 102px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
