:root {
  --charcoal: #202124;
  --iron: #303236;
  --ember: #D85A24;
  --hot-ember: #F06A2A;
  --ivory: #F7F5F2;
  --ash: #E8E6E3;
  --white: #FFFFFF;
  --steel: #6B6E73;

  --font-heading: "Anton", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1180px;
}


/* ========================================
   RESET
======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(90%, var(--container));
  margin-inline: auto;
}


/* ========================================
   HEADER
======================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;

  transition:
    background 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  position: fixed;
  padding: 14px 0;
  background: rgba(32, 33, 36, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


/* ========================================
   BRAND WORDMARK
======================================== */

.logo {
  color: var(--white);
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  line-height: 1;
  white-space: nowrap;
}

.brand-the {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--white);
}

.brand-accent {
  color: var(--ember);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-lockup .brand-name {
  display: block;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.header-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.header-the {
  margin-left: 1px;
  margin-bottom: 3px;

  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.22em;

  color: rgba(255, 255, 255, 0.55);
}

.header-wordmark .brand-name {
  display: block;
}

/* ========================================
   NAVIGATION
======================================== */

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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


/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  background: var(--ember);
  color: var(--white);

  border: 1px solid var(--ember);
  border-radius: 4px;

  font-family: var(--font-body);
  font-weight: 600;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--hot-ember);
  border-color: var(--hot-ember);

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(216, 90, 36, 0.18);
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--white);
  box-shadow: none;
}


/* ========================================
   SHARED TEXT
======================================== */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 24px;

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spark {
  display: inline-block;

  width: 8px;
  height: 8px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--ember);

  box-shadow:
    0 0 14px rgba(216, 90, 36, 0.75);
}

.section-heading {
  margin-bottom: 55px;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);

  line-height: 1.02;
  letter-spacing: 0.01em;

  text-transform: uppercase;
}

.section-heading p {
  max-width: 680px;

  margin-top: 18px;

  color: var(--steel);
  font-size: 1.05rem;
}

.compact-heading {
  margin-bottom: 42px;
}

.compact-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}


/* ========================================
   HERO
======================================== */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 76% 40%,
      rgba(216, 90, 36, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(240, 106, 42, 0.06),
      transparent 28%
    ),
    var(--charcoal);

  color: var(--white);

  padding: 150px 0 90px;
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      transparent 68%,
      rgba(255, 255, 255, 0.015) 68.5%,
      transparent 69%
    );

  opacity: 0.5;
}

.hero-content {
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  max-width: 1050px;

  margin-bottom: 30px;

  font-family: var(--font-heading);

  font-size: clamp(4rem, 8vw, 7.4rem);

  font-weight: 400;

  line-height: 0.96;
  letter-spacing: 0.005em;

  text-transform: uppercase;
}

.hero h1 span {
  color: var(--ember);
}

.hero-copy {
  max-width: 700px;

  margin-bottom: 34px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-bottom: 55px;
}

.hero-services {
  color: rgba(255, 255, 255, 0.46);

  font-size: 0.88rem;
  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.hero-services span {
  color: var(--ember);
  padding: 0 8px;
}

.hero-mark {
  position: absolute;
  right: 6%;
  top: 50%;

  transform: translateY(-50%);

  width: min(34vw, 460px);

  opacity: 0.14;

  pointer-events: none;

  z-index: 0;
}

.hero-mark img {
  width: 100%;
  height: auto;

  filter:
    drop-shadow(
      0 0 35px rgba(216, 90, 36, 0.22)
    );
}


/* ========================================
   INTRO
======================================== */

.intro-section {
  padding: 130px 0;

  background: var(--ivory);
}

.intro-section .container {
  max-width: 950px;
}

.intro-section h2 {
  margin-bottom: 28px;

  font-family: var(--font-heading);

  font-size: clamp(2.8rem, 6vw, 5rem);

  font-weight: 400;

  line-height: 1.02;

  letter-spacing: 0.01em;

  text-transform: uppercase;
}

.intro-section p {
  max-width: 720px;

  color: var(--steel);

  font-size: 1.1rem;
}


/* ========================================
   SERVICES
======================================== */

.services-section {
  padding: 120px 0;

  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.service-card {
  position: relative;

  padding: 38px;

  background: var(--ivory);

  border: 1px solid var(--ash);

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 3px;

  background: var(--ember);

  transition: width 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);

  border-color: rgba(216, 90, 36, 0.32);

  box-shadow:
    0 18px 45px rgba(32, 33, 36, 0.08);
}

.service-card:hover::after {
  width: 100%;
}

.service-number {
  display: block;

  margin-bottom: 50px;

  color: var(--ember);

  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 14px;

  font-family: var(--font-heading);
  font-size: 2rem;

  font-weight: 400;

  text-transform: uppercase;
}

.service-card p {
  color: var(--steel);
}


/* ========================================
   WHY SECTION
======================================== */

.why-section {
  padding: 120px 0;

  background: var(--iron);
  color: var(--white);
}

.why-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 90px;
}

.why-section h2 {
  font-family: var(--font-heading);

  font-size: clamp(2.8rem, 5vw, 4.5rem);

  font-weight: 400;

  line-height: 1.02;

  text-transform: uppercase;
}

.why-points {
  display: grid;

  gap: 40px;
}

.why-item {
  padding-bottom: 30px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.12);
}

.why-item h3 {
  margin-bottom: 10px;

  font-size: 1.05rem;
  font-weight: 700;
}

.why-item p {
  color: rgba(255, 255, 255, 0.65);
}


/* ========================================
   WORK
======================================== */

.work-section {
  padding: 120px 0;

  background: var(--ivory);
}

.featured-case-study {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 55px;
  align-items: center;
}

.case-study-image {
  background: var(--charcoal);
  overflow: hidden;
  border: 1px solid var(--ash);
}

.case-study-image img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-copy .eyebrow {
  margin-bottom: 18px;
}

.case-study-copy h3 {
  margin-bottom: 20px;

  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;

  line-height: 1.02;
  text-transform: uppercase;
}

.case-study-copy p {
  color: var(--steel);
  margin-bottom: 28px;
}

.case-study-services {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.case-study-services span {
  padding: 7px 11px;

  background: var(--white);
  border: 1px solid var(--ash);

  color: var(--steel);

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;

  text-transform: uppercase;
}

.work-coming-soon {
  margin-top: 55px;
  padding-top: 28px;

  border-top: 1px solid var(--ash);
}

.work-coming-soon p {
  color: var(--steel);
  font-style: italic;
}

.work-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.work-card {
  background: var(--white);

  border: 1px solid var(--ash);

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 18px 45px rgba(32, 33, 36, 0.12);
}

.work-image {
  position: relative;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: var(--iron);
}

.work-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.035);
}

.work-card-content {
  padding: 26px;
}

.work-card-content > span {
  color: var(--ember);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.work-card-content h3 {
  margin: 10px 0;

  font-size: 1.2rem;
  font-weight: 700;
}

.work-card-content p {
  color: var(--steel);
}

.work-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 20px;
}

.work-tags span {
  padding: 6px 10px;

  background: var(--ivory);

  border: 1px solid var(--ash);

  color: var(--steel);

  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.04em;

  text-transform: uppercase;
}


/* ========================================
   PRICING
======================================== */

.pricing-section {
  padding: 120px 0;

  background: var(--white);
}

.pricing-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  align-items: stretch;
}

.price-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 38px;

  background: var(--ivory);

  border: 1px solid var(--ash);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 45px rgba(32, 33, 36, 0.09);
}

.featured-price {
  border: 2px solid var(--ember);

  transform: translateY(-10px);
}

.featured-price:hover {
  transform: translateY(-15px);
}

.popular-tag {
  position: absolute;

  top: 0;
  right: 0;

  padding: 7px 12px;

  background: var(--ember);
  color: var(--white);

  font-size: 0.66rem;
  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.plan-label {
  display: block;

  color: var(--ember);

  font-size: 0.76rem;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.plan-name {
  margin-top: 12px;

  font-family: var(--font-heading);

  font-size: 1.8rem;

  font-weight: 400;

  line-height: 1;

  text-transform: uppercase;
}

.price {
  margin: 18px 0;

  font-family: var(--font-heading);

  font-size: 3.5rem;

  font-weight: 400;

  line-height: 1;
}

.price span {
  font-family: var(--font-body);

  font-size: 1rem;

  color: var(--steel);

  font-weight: 400;
}

.price-card > p {
  margin-bottom: 24px;

  color: var(--steel);
}

.price-card ul {
  list-style: none;

  margin-bottom: 30px;
}

.price-card li {
  padding: 9px 0;

  border-bottom: 1px solid var(--ash);

  font-size: 0.92rem;
}

.price-card li::before {
  content: "✓";

  margin-right: 10px;

  color: var(--ember);

  font-weight: 700;
}

.price-btn {
  margin-top: auto;
}


/* ========================================
   PRICING SUBSECTIONS
======================================== */

.pricing-subsection {
  margin-top: 120px;
}

.pricing-subsection + .pricing-subsection {
  margin-top: 130px;
}


/* ========================================
   ONE-TIME SERVICES
======================================== */

.one-time-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;
}

.service-price-card {
  display: flex;
  flex-direction: column;

  padding: 34px;

  background: var(--ivory);

  border: 1px solid var(--ash);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-price-card:hover {
  transform: translateY(-4px);

  border-color: rgba(216, 90, 36, 0.35);

  box-shadow:
    0 16px 40px rgba(32, 33, 36, 0.08);
}

.service-price-card h3 {
  margin: 10px 0 4px;

  font-size: 1.25rem;
  font-weight: 700;
}

.small-price {
  margin-bottom: 16px;

  color: var(--charcoal);

  font-family: var(--font-heading);

  font-size: 2.8rem;

  line-height: 1;
}

.service-price-card > p {
  margin-bottom: 20px;

  color: var(--steel);
}

.service-price-card ul {
  list-style: none;

  margin-bottom: 25px;
}

.service-price-card li {
  padding: 8px 0;

  border-bottom: 1px solid var(--ash);

  color: var(--charcoal);

  font-size: 0.9rem;
}

.service-price-card li::before {
  content: "✓";

  margin-right: 9px;

  color: var(--ember);

  font-weight: 700;
}

.text-link {
  margin-top: auto;

  color: var(--ember);

  font-size: 0.92rem;
  font-weight: 700;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

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


/* ========================================
   CAMPAIGN FORGE
======================================== */

.campaign-section {
  position: relative;
}

.campaign-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;

  max-width: 900px;
}

.campaign-card {
  min-height: 100%;
}

.campaign-card .price {
  margin-top: 18px;
}


/* ========================================
   PRICING NOTE
======================================== */

.pricing-note {
  margin-top: 65px;

  padding: 26px 30px;

  background: var(--iron);

  color: rgba(255, 255, 255, 0.72);

  border-left: 3px solid var(--ember);
}

.pricing-note p {
  margin: 0;
}

.pricing-note a {
  color: var(--white);

  font-weight: 700;

  text-decoration: underline;

  text-decoration-color: var(--ember);
  text-underline-offset: 4px;
}


/* ========================================
   ABOUT
======================================== */

.about-section {
  padding: 120px 0;

  background: var(--ivory);
}

.about-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 80px;

  align-items: center;
}

.about-image {
  overflow: hidden;
}

}

.about-photo {
  display: block;

  width: 100%;
  height: 520px;

  object-fit: cover;
  object-position: center top;

  border-radius: 2px;

  box-shadow:
    0 20px 50px rgba(32, 33, 36, 0.14);
}

.about-copy h2 {
  margin-bottom: 24px;

  font-family: var(--font-heading);

  font-size: clamp(2.8rem, 5vw, 4.5rem);

  font-weight: 400;

  line-height: 1.02;

  text-transform: uppercase;
}

.about-copy p {
  max-width: 680px;

  margin-bottom: 18px;

  color: var(--steel);
}

.about-copy .about-lead {
  color: var(--charcoal);

  font-size: 1.18rem;
  font-weight: 600;

  line-height: 1.5;
}


/* ========================================
   CONTACT
======================================== */

.contact-section {
  padding: 120px 0;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(216, 90, 36, 0.12),
      transparent 25%
    ),
    var(--charcoal);

  color: var(--white);
}

.contact-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 80px;
}

.contact-copy h2 {
  margin-bottom: 20px;

  font-family: var(--font-heading);

  font-size: clamp(2.8rem, 5vw, 4.5rem);

  font-weight: 400;

  line-height: 1.02;

  text-transform: uppercase;
}

.contact-copy p {
  max-width: 520px;

  color: rgba(255, 255, 255, 0.65);
}


/* ========================================
   CONTACT FORM
======================================== */

.contact-form {
  display: grid;

  gap: 18px;
}

.contact-form label {
  display: grid;

  gap: 7px;

  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  padding: 14px;

  border: 1px solid rgba(255, 255, 255, 0.18);

  background: rgba(255, 255, 255, 0.05);

  color: var(--white);

  border-radius: 4px;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--ember);

  border-color: var(--ember);

  background: rgba(255, 255, 255, 0.07);
}

.contact-form select option {
  color: var(--charcoal);

  background: var(--white);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* ========================================
   CONTACT VALIDATION
======================================== */

.field-error {
  min-height: 18px;

  color: #ff9b78;

  font-size: 0.78rem;

  line-height: 1.3;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: #ff7a52;
}

.contact-submit {
  position: relative;

  min-height: 52px;
}

.button-loader {
  display: none;

  width: 18px;
  height: 18px;

  border:
    2px solid rgba(255, 255, 255, 0.35);

  border-top-color: var(--white);

  border-radius: 50%;

  animation:
    button-spin 0.7s linear infinite;
}

.contact-submit.loading .button-text {
  display: none;
}

.contact-submit.loading .button-loader {
  display: block;
}

.contact-submit:disabled {
  cursor: not-allowed;

  opacity: 0.75;

  transform: none;
}

.form-status {
  display: none;

  padding: 15px 16px;

  border-radius: 4px;

  font-size: 0.9rem;
}

.form-status.success {
  display: block;

  color: #d7f3df;

  background: rgba(77, 184, 108, 0.12);

  border:
    1px solid rgba(77, 184, 108, 0.35);
}

.form-status.error {
  display: block;

  color: #ffd7ca;

  background: rgba(216, 90, 36, 0.12);

  border:
    1px solid rgba(216, 90, 36, 0.45);
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
  padding: 55px 0;

  background: #18191B;

  color: var(--white);
}

.footer-wrap {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 30px;
}

.footer-brand .brand-wordmark {
  margin-bottom: 8px;
}

.site-footer p {
  margin-top: 8px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;

  gap: 22px;

  color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-the {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand p {
  margin-top: 10px;
  margin-left: 70px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  margin-top: 35px;
  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.38);

  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);

  font-size: 0.78rem;

  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--ember);
}

/* ========================================
   FOOTER SOCIALS
======================================== */

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 18px;
  margin-left: 70px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  color: rgba(255, 255, 255, 0.7);

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.footer-socials svg {
  width: 18px;
  height: 18px;

  fill: currentColor;
}

.footer-socials a:hover {
  color: var(--white);

  background: var(--ember);
  border-color: var(--ember);

  transform: translateY(-2px);
}


/* ========================================
   SCROLL REVEAL
======================================== */

.reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* ========================================
   MOBILE MENU BUTTON
======================================== */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 8px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 6px 0;

  background: var(--white);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform:
    translateY(8px)
    rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform:
    translateY(-8px)
    rotate(-45deg);
}


/* ========================================
   TABLET / MOBILE
======================================== */

@media (max-width: 1000px) {

  .main-nav {
    gap: 18px;
  }

  .brand-name {
    font-size: 1rem;
  }

}

@media (max-width: 850px) {

  .hero-mark {
    right: -8%;
    width: 420px;
    opacity: 0.08;
  }

  .about-photo {
  height: 500px;
  object-position: center top;
}

.featured-case-study {
  grid-template-columns: 1fr;
  gap: 35px;
}

}

@media (max-width: 600px) {

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .hero-mark {
    display: none;
  }

  .footer-mark {
    width: 48px;
    height: 48px;
  }

  .footer-name {
    font-size: 1.15rem;
  }

  .footer-brand p {
    margin-left: 62px;
  }

  .about-photo {
  height: 430px;
}

.footer-socials {
  margin-left: 62px;
}

.footer-bottom {
  flex-direction: column;
  align-items: flex-start;

  gap: 10px;
}



.work-section {
  padding-bottom: 45px;
}

.about-section {
  padding-top: 55px;
}



}


/* ========================================
   MOBILE NAVIGATION
======================================== */

@media (max-width: 850px) {

  .menu-toggle {
    display: block;

    margin-left: auto;
  }

  .main-nav {
    position: absolute;

    top: 82px;
    left: 5%;
    right: 5%;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 18px;

    background: var(--iron);

    border:
      1px solid rgba(255, 255, 255, 0.08);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 10px;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    display: none;
  }


  /* GRID COLLAPSE */

  .services-grid,
  .work-grid,
  .pricing-grid,
  .why-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .one-time-grid,
  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .campaign-grid {
    max-width: none;
  }

  .why-grid,
  .about-grid,
  .contact-grid {
    gap: 50px;
  }

  .featured-price {
    transform: none;
  }

  .featured-price:hover {
    transform: translateY(-5px);
  }

  .hero {
    min-height: auto;

    padding-top: 180px;
  }

  .hero-content {
    max-width: 760px;
  }

  .about-placeholder {
    min-height: 360px;
  }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 600px) {

  .site-header .btn-small {
    display: none;
  }

  .nav-wrap {
    gap: 14px;
  }

  .brand-wordmark {
    gap: 7px;
  }

  .brand-the {
    display: none;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 160px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);

    line-height: 0.96;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-services {
    line-height: 1.9;
  }

  .intro-section,
  .services-section,
  .why-section,
  .work-section,
  .pricing-section,
  .about-section,
  .contact-section {
    padding: 90px 0;
  }

  .pricing-subsection {
    margin-top: 90px;
  }

  .pricing-subsection + .pricing-subsection {
    margin-top: 100px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .service-card,
  .price-card,
  .service-price-card {
    padding: 28px;
  }

  .price {
    font-size: 3rem;
  }

  .small-price {
    font-size: 2.4rem;
  }

  .pricing-note {
    padding: 22px;
  }

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

}

/* ========================================
   VERY SMALL MOBILE
======================================== */

@media (max-width: 390px) {

  .brand-name {
    font-size: 0.84rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .service-card,
  .price-card,
  .service-price-card {
    padding: 24px;
  }

}


/* ========================================
   LEGAL PAGES
======================================== */

.legal-header {
  display: block;
  position: relative;

  width: 100%;

  background: #202124;

  padding: 18px 0;

  z-index: 10;
}

.legal-header .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 48px;

  gap: 20px;
}

.legal-page {
  padding: 80px 0 120px;

  background: var(--ivory);
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin-bottom: 8px;

  font-family: var(--font-heading);

  font-size: clamp(3rem, 7vw, 5rem);

  font-weight: 400;

  line-height: 1;

  text-transform: uppercase;
}

.legal-updated {
  margin-bottom: 55px;

  color: var(--steel);

  font-size: 0.9rem;
}

.legal-content section {
  margin-bottom: 42px;
}

.legal-content h2 {
  margin-bottom: 14px;

  font-size: 1.25rem;
  font-weight: 700;
}

.legal-content p {
  margin-bottom: 16px;

  color: var(--steel);
}

.legal-content ul {
  margin:
    0
    0
    18px
    22px;

  color: var(--steel);
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--ember);

  font-weight: 600;
}

.legal-content a:hover {
  color: var(--hot-ember);
}

.legal-footer {
  margin-top: 0;
}