:root {
  --abyss: #071018;
  --abyss-2: #0b1522;
  --ink: #101820;
  --coral-deep: #1a1218;
  --surface: #141a26;
  --surface-2: #1b2230;
  --coral: #ff7a88;
  --coral-hot: #ff5d72;
  --coral-soft: #ffb3bc;
  --glow: #2ee6d6;
  --glow-dim: #1a9e94;
  --indigo: #3d4a8f;
  --indigo-bright: #6b7ae8;
  --silver: #e8eef4;
  --silver-dim: #9aa8b8;
  --line: rgba(232, 238, 244, 0.12);
  --radius: 1.35rem;
  --radius-s: 0.85rem;
  --font-display: "Nunito", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--silver);
  background:
    radial-gradient(1200px 600px at 8% 12%, rgba(46, 230, 214, 0.08), transparent 55%),
    radial-gradient(900px 700px at 92% 8%, rgba(255, 122, 136, 0.14), transparent 50%),
    radial-gradient(800px 500px at 80% 90%, rgba(61, 74, 143, 0.25), transparent 55%),
    linear-gradient(180deg, var(--abyss) 0%, var(--abyss-2) 48%, #0e1018 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.18;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 122, 136, 0.08) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(115deg, rgba(46, 230, 214, 0.03) 0 2px, transparent 2px 7px);
  mix-blend-mode: screen;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--glow);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-soft);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--silver);
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  margin: 0 0 0.7rem;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

p {
  margin: 0 0 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--coral);
  color: var(--abyss);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.muted {
  color: var(--silver-dim);
}

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 0.6rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(7, 16, 24, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--silver);
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at 70% 30%, var(--glow), transparent 42%),
    radial-gradient(circle at 30% 70%, var(--coral), transparent 50%),
    #0d1824;
  box-shadow: 0 0 18px rgba(46, 230, 214, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
}

.brand-place {
  font-size: 0.75rem;
  color: var(--silver-dim);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--silver);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--coral-soft);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 122, 136, 0.15);
  border: 1px solid rgba(255, 122, 136, 0.4);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  width: 2.6rem;
  height: 2.6rem;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  position: relative;
  margin: 0 auto;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

/* Buttons */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  overflow: hidden;
}

.btn-coral {
  color: #1a0b10;
  background: linear-gradient(180deg, #ff9aa5 0%, var(--coral) 55%, #e24b62 100%);
  box-shadow: 0 0 0 1px rgba(255, 179, 188, 0.3), 0 10px 30px rgba(255, 93, 114, 0.28);
}

.btn-coral::before,
.btn-coral::after {
  content: "";
  position: absolute;
  inset: -60%;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.35);
  transition: transform 0.85s ease, opacity 0.4s ease;
  background:
    radial-gradient(circle at 18% 55%, rgba(46, 230, 214, 0.7) 0 7%, transparent 8%),
    radial-gradient(circle at 32% 38%, rgba(255, 255, 255, 0.55) 0 4%, transparent 5%),
    radial-gradient(circle at 68% 42%, rgba(46, 230, 214, 0.55) 0 6%, transparent 7%),
    radial-gradient(circle at 82% 62%, rgba(255, 179, 188, 0.8) 0 8%, transparent 9%),
    radial-gradient(circle at 50% 50%, rgba(255, 93, 114, 0.35) 0 22%, transparent 45%);
}

.btn-coral::after {
  background:
    radial-gradient(circle at 40% 70%, rgba(46, 230, 214, 0.5) 0 5%, transparent 6%),
    radial-gradient(circle at 60% 28%, rgba(255, 255, 255, 0.4) 0 3%, transparent 4%),
    radial-gradient(circle at 12% 30%, rgba(255, 122, 136, 0.7) 0 6%, transparent 7%);
  transition-delay: 0.05s;
}

.btn-coral:hover::before,
.btn-coral:hover::after,
.btn-coral:focus-visible::before,
.btn-coral:focus-visible::after {
  opacity: 1;
  transform: scale(1.15);
}

.btn-ghost {
  color: var(--silver);
  background: transparent;
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--glow);
  color: var(--glow);
}

.text-link {
  font-weight: 700;
  color: var(--coral-soft);
  text-decoration: none;
}

.text-link:hover {
  color: var(--glow);
}

/* Hero — editorial split, not centered CTA stack */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: stretch;
  padding: 2.4rem 0 3.2rem;
}

.hero-photo {
  position: relative;
  min-height: 28rem;
  border-radius: 2rem 0.6rem 2rem 0.6rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(7, 16, 24, 0.55) 100%),
    radial-gradient(circle at 80% 20%, rgba(255, 122, 136, 0.28), transparent 40%);
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  font-size: 0.85rem;
  color: var(--silver);
  max-width: 18rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.4rem 0 0.4rem 0.2rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--silver-dim);
  max-width: 38ch;
}

.hero-meta {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  font-size: 0.92rem;
}

.hero-meta strong {
  display: block;
  color: var(--glow);
  font-family: var(--font-display);
}

/* Surfaces */
.panel {
  background:
    linear-gradient(180deg, rgba(255, 122, 136, 0.06), transparent 28%),
    linear-gradient(180deg, var(--surface) 0%, #12141e 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.section {
  padding: 1.2rem 0 3rem;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 1.6rem;
}

.field-note {
  border-left: 3px solid var(--coral);
  padding: 0.2rem 0 0.2rem 1.1rem;
  margin: 1.2rem 0 0;
  color: var(--silver-dim);
  font-style: italic;
}

/* Service previews — horizontal, not icon grid */
.offer-list {
  display: grid;
  gap: 1.1rem;
}

.offer-card {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.2rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.offer-card img {
  width: 100%;
  height: 100%;
  min-height: 8rem;
  object-fit: cover;
  border-radius: 0.9rem 0.35rem 0.9rem 0.35rem;
}

.offer-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.offer-card p {
  margin: 0;
  color: var(--silver-dim);
}

.offer-card:hover h3 {
  color: var(--coral-soft);
}

.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.spotlight img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: 1.6rem 0.5rem 1.6rem 0.5rem;
}

.letter {
  background: #161018;
  border: 1px solid rgba(255, 122, 136, 0.22);
  border-radius: 1.2rem 0.4rem 1.4rem 0.6rem;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 0 40px rgba(255, 93, 114, 0.08);
}

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

.letter cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--coral-soft);
  font-weight: 700;
}

/* Cards / grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.media-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 11.5rem;
  object-fit: cover;
  border-radius: 0.9rem 0.9rem 0.3rem 0.3rem;
}

.media-card h3 {
  margin: 0.9rem 0 0.35rem;
  font-size: 1.15rem;
}

.media-card p {
  color: var(--silver-dim);
  margin: 0;
  flex: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.portrait {
  overflow: hidden;
}

.portrait img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 1.4rem 0.4rem 1.1rem 0.5rem;
  filter: saturate(0.9);
}

.portrait h3 {
  margin: 0.9rem 0 0.2rem;
  font-size: 1.2rem;
}

.role {
  color: var(--glow);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

/* Page heroes */
.page-hero {
  padding: 2.2rem 0 1.4rem;
}

.page-hero.with-image {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.page-hero img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 1.5rem 0.45rem 1.5rem 0.45rem;
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose ul,
.include-list {
  padding-left: 1.1rem;
}

.include-list li {
  margin-bottom: 0.4rem;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  position: relative;
  padding: 1rem 0 1.3rem 4.2rem;
  border-bottom: 1px solid var(--line);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--abyss);
  background: radial-gradient(circle at 30% 30%, #fff, var(--glow) 40%, var(--coral) 100%);
}

/* Forms */
.form {
  display: grid;
  gap: 0.95rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  font: inherit;
  color: var(--silver);
  background: rgba(7, 16, 24, 0.7);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.7rem 0.85rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--glow);
  outline-offset: 1px;
}

textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field-error {
  color: var(--coral);
  font-size: 0.88rem;
  min-height: 1.1em;
}

.form-status {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-s);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(46, 230, 214, 0.12);
  border: 1px solid var(--glow-dim);
}

.form-status.error {
  background: rgba(255, 93, 114, 0.12);
  border: 1px solid var(--coral);
}

.island-error {
  margin: 0.6rem 0;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-s);
  background: rgba(255, 93, 114, 0.12);
  border: 1px solid var(--coral);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: rgba(16, 12, 18, 0.94);
  border-top: 1px solid rgba(255, 122, 136, 0.35);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.35);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.cookie-inner p {
  margin: 0;
  max-width: 48rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: rgba(8, 10, 16, 0.7);
  padding: 2.4rem 0 1.2rem;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.footer-heading {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin: 0 0 0.6rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a,
.site-footer a {
  color: var(--silver);
  text-decoration: none;
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--glow);
}

address {
  font-style: normal;
  margin-bottom: 0.6rem;
}

.footer-base {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--silver-dim);
  font-size: 0.88rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
}

.meta-line {
  color: var(--silver-dim);
  font-size: 0.92rem;
}

.not-found {
  min-height: 50vh;
  display: grid;
  align-content: center;
  padding: 3rem 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero,
  .spotlight,
  .page-hero.with-image,
  .split-2,
  .card-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 18rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 4.4rem;
    background: rgba(7, 16, 24, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1rem 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-inner,
  .cta-band,
  .form-row.two {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-coral::before,
  .btn-coral::after {
    transition: none;
  }
}
