:root {
  --ink: #1c1f24;
  --muted: #5e6673;
  --surface: #ffffff;
  --line: #dde4ea;
  --coral: #f15f4b;
  --teal: #008f8f;
  --yellow: #ffc857;
  --mint: #e7f8f3;
  --soft: #f7fafb;
  --shadow: 0 22px 60px rgba(28, 31, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(28, 31, 36, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.95rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--coral);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 18, 22, 0.84) 0%, rgba(15, 18, 22, 0.58) 42%, rgba(15, 18, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(15, 18, 22, 0.22), rgba(15, 18, 22, 0.06));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 74px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 12vw, 9.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button.primary {
  color: #fff;
  background: var(--coral);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact .button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-band {
  background: var(--mint);
  padding: clamp(46px, 8vw, 78px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
}

.split p,
.section-heading p,
.contact p,
.feature-card p,
.social-panel p {
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(50px, 8vw, 86px) 0;
}

.feature-card,
.social-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 24px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.social-band {
  padding: clamp(52px, 8vw, 92px) 0;
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 28px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.social-panel {
  padding: 20px;
  min-width: 0;
}

.social-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.network-badge {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  font-weight: 900;
}

.network-badge.instagram {
  background: var(--coral);
}

.network-badge.facebook {
  background: #1877f2;
}

.embed-frame {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(0, 143, 143, 0.12), rgba(241, 95, 75, 0.12)),
    #fff;
  border: 1px dashed #bcc8d3;
  border-radius: 8px;
  overflow: hidden;
}

.embed-frame iframe,
.embed-frame blockquote {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 8vw, 90px) 0;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(15, 18, 22, 0.84) 0%, rgba(15, 18, 22, 0.42) 100%);
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
    padding: 0 0 56px;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .embed-frame {
    min-height: 300px;
  }

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