@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --orange: #ff5a32;
  --black: #0b0b0b;
  --white: #ffffff;
  --muted: #6a625c;
  --line: #ece4da;
  --soft: #f8f4ef;
  --card: #151515;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

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

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

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid #ece4da;
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 48px;
  width: auto;
  max-width: 260px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: #444444;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.2s ease;
}

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

.nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  background:
    radial-gradient(circle at top left, rgba(255, 90, 50, 0.14), transparent 34%),
    radial-gradient(circle at right center, rgba(255, 255, 255, 0.04), transparent 22%),
    var(--black);
  color: var(--white);
  padding: 86px 0 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  line-height: 0.96;
  margin-bottom: 18px;
  max-width: 760px;
}

.hero-text {
  max-width: 660px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.76);
}

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

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-panel {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 90, 50, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.panel-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--orange);
  margin-bottom: 8px;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.82);
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--white);
}

/* BASE SECTIONS */

.section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.section-title,
.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1.06;
}

.section p {
  color: var(--muted);
}

.section-dark {
  background: var(--black);
  color: var(--white);
  border-bottom: none;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.section-accent {
  background: var(--soft);
}

/* INTRO */

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.intro-copy p + p {
  margin-top: 16px;
}

/* AUDIENCE */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.audience-card {
  padding: 26px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 90, 50, 0.18);
}

.audience-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  margin-bottom: 10px;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.service-card {
  padding: 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
  border: 1px solid rgba(255, 90, 50, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.service-number {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* DIFFERENTIALS */

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.differential-item {
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(255, 90, 50, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.differential-item h3 {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.process-step {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
  border: 1px solid rgba(255, 90, 50, 0.12);
}

.process-step span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.process-step h3 {
  font-family: "Fraunces", serif;
  font-size: 1.34rem;
  margin-bottom: 10px;
}

/* CTA BLOCK */

.cta-block {
  max-width: 820px;
  text-align: center;
}

.cta-block h2 {
  margin-bottom: 16px;
}

.cta-block p {
  max-width: 720px;
  margin: 0 auto;
}

.cta-block .btn {
  margin-top: 28px;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 16px;
}

.contact-info {
  display: grid;
  gap: 6px;
  margin-top: 22px;
}

.contact-card {
  padding: 30px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
  border: 1px solid rgba(255, 90, 50, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.contact-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 12px;
}

.contact-card p {
  margin-bottom: 18px;
}

/* FOOTER */

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.76);
  padding: 28px 0 34px;
  text-align: center;
  display: grid;
  gap: 6px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--orange);
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-grid,
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .nav {
    display: none;
  }

  .site-header {
    position: relative;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .logo-image {
    height: 38px;
    max-width: 200px;
  }

  .header-inner {
    min-height: 78px;
  }
}
