:root {
  --bg: #07080a;
  --surface: #101111;
  --surface-2: #1b1c1e;
  --text: #f9f9f9;
  --muted: #9c9c9d;
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.06);
  --brand-red: #ff6363;
  --brand-blue: #55b3ff;
  --ok: #5fc992;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-feature-settings: "calt" 1, "kern" 1, "liga" 1, "ss03" 1;
  letter-spacing: 0.2px;
  color: var(--text);
  line-height: 1.6;
  background:
    linear-gradient(160deg, #162131 0%, #1a2636 34%, #2a3340 100%),
    radial-gradient(1000px 500px at 80% -10%, rgba(85, 179, 255, 0.16), transparent 60%),
    radial-gradient(800px 400px at 20% -20%, rgba(255, 99, 99, 0.06), transparent 60%);
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(7, 8, 10, 0.82);
  border-bottom: 1px solid var(--border-soft);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.logo span { color: var(--brand-blue); }
.hero-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 320px;
}

.nav-links { display: flex; gap: 14px; flex-wrap: wrap; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: transparent;
  box-shadow:
    rgba(255, 255, 255, 0.08) 0 1px 0 0 inset,
    rgba(0, 0, 0, 0.22) 0 -1px 0 0 inset,
    rgba(0, 0, 0, 0.25) 0 8px 20px -14px;
  transition: opacity 160ms ease;
}
.btn:hover { opacity: 0.78; }
.btn.primary {
  border-color: transparent;
  color: #18191a;
  background: hsla(0, 0%, 100%, 0.88);
}

.hero { padding: 96px 0 42px; }
.tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-red);
  font-size: 0.9rem;
  font-weight: 600;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  font-feature-settings: "liga" 0, "ss02" 1, "ss08" 1;
}
.sub {
  max-width: 790px;
  color: #cdcdce;
  font-size: 1.03rem;
  font-weight: 500;
}

.hero-visual {
  margin: 18px 0 0;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    rgb(27, 28, 30) 0 0 0 1px,
    rgb(7, 8, 10) 0 0 0 1px inset,
    rgba(0, 0, 0, 0.45) 0 24px 36px -24px;
  position: relative;
  height: 300px;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.08) 0%, rgba(7, 8, 10, 0.45) 100%),
    radial-gradient(120% 100% at 0% 0%, rgba(85, 179, 255, 0.22), transparent 55%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-visual {
    width: 100%;
    height: 200px;
  }
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

section { padding: 36px 0; }
h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.2px;
}
.muted { color: var(--muted); }

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 20px;
}

.card {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(85, 179, 255, 0.10), transparent 58%),
    radial-gradient(100% 80% at 0% 100%, rgba(255, 99, 99, 0.07), transparent 62%),
    linear-gradient(180deg, #141517 0%, #101111 100%);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 18px;
  box-shadow:
    rgb(27, 28, 30) 0 0 0 1px,
    rgb(7, 8, 10) 0 0 0 1px inset,
    rgba(0, 0, 0, 0.32) 0 16px 26px -24px;
}
.card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    rgb(35, 36, 38) 0 0 0 1px,
    rgb(7, 8, 10) 0 0 0 1px inset,
    rgba(0, 0, 0, 0.42) 0 20px 30px -24px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.contact-line { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.pill {
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 8px 12px;
  color: #cecece;
  background: rgba(16, 17, 17, 0.65);
}

.cta {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  background:
    radial-gradient(300px 100px at 20% 0, rgba(255, 99, 99, 0.08), transparent 70%),
    var(--surface);
  box-shadow:
    rgb(27, 28, 30) 0 0 0 1px,
    rgb(7, 8, 10) 0 0 0 1px inset;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, #121212, #0d0d0d);
  box-shadow:
    rgb(27, 28, 30) 0 0 0 1px,
    rgb(7, 8, 10) 0 0 0 1px inset,
    rgba(0, 0, 0, 0.35) 0 14px 24px -20px;
}
.photo-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.photo-card figcaption {
  padding: 10px 12px 12px;
  color: #c0c0c0;
  font-size: 0.9rem;
  line-height: 1.4;
}

ul { padding-left: 18px; }
li { margin-bottom: 6px; }

.quote-form {
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 16px;
  box-shadow: rgb(27, 28, 30) 0 0 0 1px, rgb(7, 8, 10) 0 0 0 1px inset;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.quote-form label {
  display: block;
  color: #cecece;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  margin-top: 6px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0d0e10;
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: rgba(85, 179, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(85, 179, 255, 0.15);
}

a { color: var(--brand-blue); }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9em;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 2px 6px;
}

footer {
  border-top: 1px solid var(--border-soft);
  margin-top: 44px;
}
footer .wrap {
  padding: 18px 20px 26px;
  color: #6a6b6c;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
}

@media (max-width: 950px) {
  nav { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 14px; }
  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .btns {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .btn {
    padding: 10px 12px;
  }
  .hero {
    padding-top: 42px;
  }
  .hero h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
    line-height: 1.08;
  }
  .sub {
    font-size: 0.95rem;
  }
  .hero-logo {
    max-width: 200px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
  }
}
