/* ===================================================================
   DUST & GLORY MEDIA, LLC — Styles
   Creative Media Agency — Ocala, FL

   Palette:
     --bg:           #111111  (deep charcoal)
     --bg-elevated:  #1A1A1A  (card/surface)
     --bg-subtle:    #222222  (subtle bg)
     --accent:       #C75B28  (burnt orange)
     --accent-dark:  #8B3A14  (deep rust)
     --accent-light: #D4763A  (lighter orange)
     --cream:        #F2E8DC  (warm cream text)
     --cream-muted:  #B8A99A  (muted cream)
     --white:        #FAFAFA
     --text:         #E8E0D8  (primary text)
     --text-muted:   #8A7E74  (secondary text)

   Fonts:
     Display: Bebas Neue (bold impact headlines)
     Headings: Space Grotesk (modern geometric)
     Body: DM Sans (clean, readable)
   =================================================================== */

/* ======================== RESET & BASE ======================== */

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

:root {
  --bg: #111111;
  --bg-elevated: #1A1A1A;
  --bg-subtle: #222222;
  --accent: #C75B28;
  --accent-dark: #8B3A14;
  --accent-light: #D4763A;
  --cream: #F2E8DC;
  --cream-muted: #B8A99A;
  --white: #FAFAFA;
  --text: #E8E0D8;
  --text-muted: #8A7E74;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
  --nav-height-scrolled: 64px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Focus visible for keyboard nav */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background: var(--accent);
  color: var(--white);
}


/* ======================== UTILITIES ======================== */

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.text--accent {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199, 91, 40, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--cream-muted);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: 0.9375rem;
}

.btn--full {
  width: 100%;
}


/* ======================== SCROLL ANIMATIONS ======================== */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .marquee__track {
    animation: none !important;
  }

  .hero__svg .svg-draw {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
    animation: none !important;
  }

  .scroll-indicator__line {
    animation: none !important;
  }

  .btn__loading svg {
    animation: none !important;
  }
}


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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav.scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(17, 17, 17, 0.95);
  border-bottom-color: rgba(242, 232, 220, 0.08);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav__logo,
.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-shrink: 0;
}

.logo__dust {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  line-height: 1;
}

.logo__amp {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
  margin: 0 0.1rem;
  line-height: 1;
}

.logo__glory {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  line-height: 1;
}

.logo__tag {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: 0.375rem;
  position: relative;
  top: -0.1rem;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--cream);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav__cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 1010;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  transform-origin: center;
}

.nav__hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1005;
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }

  .nav__cta {
    display: none;
  }

  .nav__links .nav__link:last-child::after {
    display: none;
  }
}

@media (min-width: 769px) {
  .nav__links {
    /* Override aria-hidden for desktop */
    display: flex !important;
  }
}


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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
  overflow: hidden;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__overline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero__title--accent {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

.hero__title--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--cream);
  -webkit-text-fill-color: transparent;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--cream-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero SVG visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__svg {
  width: 100%;
  max-width: 400px;
  opacity: 0.85;
}

.hero__svg .svg-draw {
  stroke-dasharray: 503;
  stroke-dashoffset: 503;
  animation: drawCircle 2s ease-out 0.8s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.scroll-indicator__text {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__svg {
    max-width: 250px;
    opacity: 0.5;
  }

  .hero__scroll-indicator {
    display: none;
  }
}


/* ======================== MARQUEE ======================== */

.marquee {
  background: var(--bg-elevated);
  border-top: 1px solid rgba(242, 232, 220, 0.06);
  border-bottom: 1px solid rgba(242, 232, 220, 0.06);
  padding: 1.25rem 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--cream-muted);
  flex-shrink: 0;
}

.marquee__divider {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.5;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


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

.about {
  padding: 6rem 2rem;
}

.about__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.about__lead {
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about__story p {
  color: var(--cream-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about__team-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.team__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(242, 232, 220, 0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.team__card:hover {
  border-color: rgba(199, 91, 40, 0.3);
  transform: translateX(4px);
}

.team__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team__initials {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.team__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.125rem;
}

.team__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Stats */
.about__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(242, 232, 220, 0.06);
  border-radius: var(--radius-md);
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat__divider {
  width: 1px;
  height: 48px;
  background: rgba(242, 232, 220, 0.1);
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__stats {
    gap: 2rem;
    padding: 2rem 1.5rem;
    flex-wrap: wrap;
  }

  .stat__number {
    font-size: 2.5rem;
  }
}


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

.services {
  padding: 6rem 2rem;
  background: var(--bg-subtle);
}

.services__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid rgba(242, 232, 220, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  border-color: rgba(199, 91, 40, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(199, 91, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--accent);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  transition: color var(--transition);
}

.service-card:hover .service-card__icon svg {
  color: var(--white);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.service-card__features li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* Wide card for graphic design */
.service-card--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.service-card--wide .service-card__desc {
  margin-bottom: 0;
}

.service-card--wide .service-card__features {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}


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

.work {
  padding: 6rem 2rem;
}

.work__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.25rem;
  margin-top: 3rem;
}

.work__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.work__item--tall {
  grid-row: span 2;
}

.work__image {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work__image-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}

.work__image-content svg {
  width: 80px;
  height: 80px;
}

.work__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.4) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work__item:hover .work__image {
  transform: scale(1.05);
}

.work__item:hover .work__overlay {
  opacity: 1;
}

.work__category {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.375rem;
}

.work__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.work__desc {
  font-size: 0.8125rem;
  color: var(--cream-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .work__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .work__item--tall {
    grid-row: span 2;
  }

  .work__overlay {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .work__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .work__item--tall {
    grid-row: span 1;
  }
}


/* ======================== PROCESS ======================== */

.process {
  padding: 6rem 2rem;
  background: var(--bg-subtle);
}

.process__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process__step {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
}

.process__number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.process__step:hover .process__number {
  opacity: 1;
}

.process__line {
  width: 100%;
  height: 2px;
  background: rgba(242, 232, 220, 0.08);
  margin-bottom: 1.5rem;
  position: relative;
}

.process__line::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.process__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.process__desc {
  font-size: 0.875rem;
  color: var(--cream-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .process__timeline {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 520px;
  }

  .process__step {
    text-align: left;
    padding: 1.5rem 0 1.5rem 3rem;
    border-left: 2px solid rgba(242, 232, 220, 0.08);
  }

  .process__line {
    display: none;
  }

  .process__step::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 1.75rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
  }
}


/* ======================== CTA BANNER ======================== */

.cta-banner {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #3D1A0A 0%, var(--accent-dark) 40%, var(--accent) 100%);
  text-align: center;
  overflow: hidden;
}

.cta-banner__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-banner__title .text--accent {
  color: var(--cream);
}

.cta-banner__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-banner .btn--primary {
  background: var(--white);
  color: var(--accent-dark);
}

.cta-banner .btn--primary:hover {
  background: var(--cream);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}


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

.contact {
  padding: 6rem 2rem;
}

.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact__info-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(242, 232, 220, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.contact__info-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.contact__detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact__detail:last-child {
  margin-bottom: 0;
}

.contact__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.contact__detail p {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  line-height: 1.5;
}

.contact__link {
  font-size: 0.9375rem;
  color: var(--accent);
  transition: color var(--transition);
}

.contact__link:hover {
  color: var(--accent-light);
}

.contact__map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(242, 232, 220, 0.06);
}

.contact__map-bg {
  width: 100%;
}

.contact__map-bg svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__group {
  position: relative;
}

.form__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 0.5rem;
}

.form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-elevated);
  border: 1.5px solid rgba(242, 232, 220, 0.1);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.9375rem;
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form__input::placeholder {
  color: var(--text-muted);
}

.form__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(199, 91, 40, 0.15);
}

.form__input.error {
  border-color: #e53e3e;
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A7E74' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__select option {
  background: var(--bg-elevated);
  color: var(--cream);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__error {
  display: none;
  font-size: 0.75rem;
  color: #e53e3e;
  margin-top: 0.375rem;
}

.form__group.has-error .form__error {
  display: block;
}

.form__group.has-error .form__input {
  border-color: #e53e3e;
}

/* Submit button loading state */
.btn__loading {
  display: none;
}

.btn__loading svg {
  width: 20px;
  height: 20px;
  animation: spinLoader 1s linear infinite;
}

@keyframes spinLoader {
  to { transform: rotate(360deg); }
}

.btn.is-loading .btn__text {
  visibility: hidden;
}

.btn.is-loading .btn__loading {
  display: flex;
  position: absolute;
}

/* Success message */
.form__success {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(199, 91, 40, 0.1);
  border: 1px solid rgba(199, 91, 40, 0.3);
  border-radius: var(--radius-md);
}

.form__success svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.form__success p {
  font-size: 0.9375rem;
  color: var(--cream);
}

.form__success.is-visible {
  display: flex;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


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

.footer {
  background: var(--bg-elevated);
  border-top: 1px solid rgba(242, 232, 220, 0.06);
  padding: 4rem 2rem 0;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer__nav,
.footer__links-group nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--cream-muted);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 232, 220, 0.1);
  border-radius: var(--radius);
  color: var(--cream-muted);
  transition: all var(--transition);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(199, 91, 40, 0.1);
}

.footer__bottom {
  border-top: 1px solid rgba(242, 232, 220, 0.06);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer__legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__fl {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ======================== BACK TO TOP ======================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
  box-shadow: 0 4px 12px rgba(199, 91, 40, 0.3);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}


/* ======================== PRINT STYLES ======================== */

@media print {
  .nav,
  .hero__scroll-indicator,
  .marquee,
  .cta-banner,
  .back-to-top,
  .nav__hamburger,
  .hero__visual,
  .hero__noise,
  .cta-banner__noise {
    display: none !important;
  }

  body {
    background: white;
    color: #111;
  }

  .hero {
    min-height: auto;
    padding: 2rem;
  }

  .section-title,
  .hero__title {
    color: #111;
  }

  .text--accent {
    color: #C75B28;
  }
}
