:root {
  --bg: #0c121b;
  --bg-soft: #111a26;
  --panel: #161f2d;
  --panel-strong: #1e2c3f;
  --text: #e8eff9;
  --muted: #aab2bc;
  --accent: #f4b942;
  --accent-2: #d58f20;
  --line: #2f3f56;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --my_name: #208386;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(244, 185, 66, 0.12), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(68, 113, 173, 0.2), transparent 55%),
    linear-gradient(170deg, #0b1119 0%, #0f1723 45%, #0b1119 100%);
  line-height: 1.55;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

body.preload {
  opacity: 0;
  transform: translateY(8px);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(12, 18, 27, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  padding: 86px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1b1303;
  box-shadow: 0 10px 24px rgba(213, 143, 32, 0.35);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card {
  background: linear-gradient(160deg, var(--panel), var(--panel-strong));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.hero-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.hero-card li {
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.section {
  padding: 60px 0;
}

.section-accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.section-head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
}

.section-head > div p {
  max-width: 64ch;
}

.service-image {
  width: 100%;
  max-height: 270px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.service-cards {
  grid-template-columns: 1fr;
}

.service-card-wide {
  padding: 1.2rem 1.25rem;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.1rem;
}

.card p,
.section p,
.contact-box p {
  color: var(--muted);
}

.pricing-list {
  margin: 0.35rem 0 0;
  padding-left: 1rem;
}

.pricing-list li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 1rem;
}

.pricing-card-wide {
  grid-column: span 2;
}

.pricing-card h3 {
  margin-bottom: 0.45rem;
}

.price {
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 700;
  margin: 0.1rem 0;
}

.pricing-meta {
  margin-top: 0.45rem;
  font-size: 0.92rem;
}

.fine-print {
  font-size: 12px;
  color: #b6c3d3;
  margin-top: 0.95rem;
}

.pricing-note {
  margin-top: 0.45rem;
}

.map-wrap {
  margin-top: 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.contact-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 1.2rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-intro {
  max-width: 68ch;
  margin: 0 auto;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.35rem;
}

.person-card {
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 1rem;
}

.person-card h3 {
  margin-bottom: 0.55rem;
}

.person-card p {
  margin: 0.28rem 0;
}

.person-card a {
  color: var(--text);
  text-decoration: none;
}

.person-card a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.24);
}

.footer-wrap {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
}

.site-footer a {
  color: var(--my_name);
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover {
  text-decoration: underline;
}

.legal-page {
  padding-top: 90px;
}

.legal-date {
  color: var(--muted);
  margin-top: -0.2rem;
}

.legal-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 0.85rem;
}

.legal-section h2 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  margin-bottom: 0.5rem;
}

.legal-section h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.legal-section ul {
  margin: 0.35rem 0 0;
  padding-left: 1rem;
}

.legal-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(360px, calc(100vw - 2rem));
  display: grid;
  gap: 0.7rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 18, 27, 0.93);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.33);
  z-index: 110;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.cookie-consent .btn {
  justify-self: start;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-wide {
    grid-column: auto;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-text,
  .hero-card,
  .card,
  .contact-box {
    animation: rise-in 0.6s ease both;
  }

  .hero-card {
    animation-delay: 0.12s;
  }

  .cards .card:nth-child(2) {
    animation-delay: 0.18s;
  }

  .cards .card:nth-child(3) {
    animation-delay: 0.24s;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
