:root {
  --dark: #333333;
  --text: #777777;
  --soft-text: #8a8a8a;
  --light: #f6f6f6;
  --white: #ffffff;
  --pink: #ec1d62;
  --orange: #fb7b16;
  --gradient: linear-gradient(90deg, var(--pink), #f4513f 48%, var(--orange));
  font-family: "Raleway", "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--light);
  color: var(--dark);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 14px clamp(24px, 7vw, 128px);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.logo {
  display: block;
  width: 112px;
}

.logo svg {
  display: block;
  width: 100%;
  height: auto;
}

.logo text {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: 92px;
  font-weight: 900;
  letter-spacing: -9px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  color: #565656;
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 500;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--pink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--dark);
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
  background: var(--light);
}

.section-intro {
  padding-top: clamp(95px, 10vw, 145px);
  background: #f0f0f2;
}

.section-about {
  background: var(--white);
}

.section-contact {
  padding: clamp(56px, 7vw, 80px) 0;
  color: var(--white);
  background: var(--gradient);
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  text-align: center;
}

.container.narrow {
  width: min(1040px, calc(100% - 44px));
  text-align: left;
}

.section-title {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.section-title.align-left {
  justify-items: start;
}

.section-title h1 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-title span {
  display: block;
  width: 72px;
  height: 5px;
  background: var(--gradient);
}

.section-contact .section-title h1 {
  color: var(--white);
}

.section-contact .section-title span {
  background: rgba(255, 255, 255, 0.36);
}

.lead {
  max-width: 1040px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.55;
}

.lead strong {
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 58px);
  margin-top: clamp(68px, 8vw, 100px);
}

.feature,
.service {
  text-align: center;
}

.feature {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(236, 29, 98, 0.13);
}

.gradient-icon {
  display: grid;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 8px 24px rgba(236, 29, 98, 0.28);
}

.feature h2,
.service h2 {
  margin: 0 0 18px;
  color: var(--dark);
  font-size: clamp(24px, 2.45vw, 32px);
  font-weight: 900;
  line-height: 1.15;
}

.feature p,
.service p,
.bio,
.credentials p {
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 400;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-width: 260px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(58px, 7vw, 86px);
  border-radius: 999px;
  background: var(--gradient);
  color: var(--white);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.role {
  margin: 0 0 54px;
  color: var(--dark);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.2;
}

.bio {
  margin-bottom: 46px;
}

.bio strong,
.credentials strong {
  color: #737373;
  font-weight: 900;
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 82px);
  padding-left: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 58px);
  margin-top: clamp(64px, 8vw, 96px);
  align-items: start;
}

.service {
  padding: 0 6px;
}

.service-icon {
  width: 132px;
  height: 132px;
  margin: 0 auto 32px;
  object-fit: contain;
}

.service p {
  color: var(--soft-text);
  line-height: 1.5;
}

.contact-copy {
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.45;
}

.contact-email {
  display: inline-block;
  margin-bottom: clamp(36px, 5vw, 52px);
  color: var(--white);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,0.4);
  transition: text-decoration-color 180ms;
}

.contact-email:hover {
  text-decoration-color: var(--white);
}

.social {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  margin-top: 0;
}

.social a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: var(--white);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Hero ── */
.section-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(480px, 60vh, 700px);
  background: var(--dark);
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 112px) clamp(32px, 6vw, 96px);
  background: linear-gradient(135deg, #2a0a1a 0%, #3d1020 40%, #1a0a05 100%);
}

.hero-eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 900;
  line-height: 1.1;
}

.hero-sub {
  margin: 0 0 42px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-actions .button {
  margin-top: 0;
  min-width: 0;
  padding: 0 32px;
}

.button-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.button-outline:hover {
  background: rgba(255,255,255,0.1);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42,10,26,0.35) 0%, transparent 40%);
}

/* ── End Hero ── */

@media (max-width: 980px) {
  .feature-grid,
  .service-grid,
  .credentials {
    grid-template-columns: 1fr;
  }

  .feature,
  .service {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .section-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    height: 320px;
    order: -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 78px;
    padding-inline: 20px;
  }

  .logo {
    width: 92px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 16px;
    border-top: 1px solid #eeeeee;
  }

  .section {
    padding: 58px 0;
  }

  .section-intro {
    padding-top: 74px;
  }

  .container,
  .container.narrow {
    width: min(100% - 34px, 620px);
  }

  .section-title {
    gap: 14px;
  }

  .feature-grid,
  .service-grid {
    margin-top: 54px;
  }

  .gradient-icon,
  .service-icon {
    width: 108px;
    height: 108px;
  }

  .button {
    min-width: min(100%, 250px);
    min-height: 58px;
    letter-spacing: 1.5px;
  }

  .role {
    margin-bottom: 34px;
  }

  .credentials {
    gap: 28px;
    padding-left: 0;
  }

  .social a {
    width: 54px;
    height: 54px;
    border-width: 2px;
  }
}
