/* ============================= TOKENS ============================= */
:root {
  --black: #0a0a0a;
  --panel: #141414;
  --panel-2: #1a1a1a;
  --white: #f4f2ee;
  --grey: #8c8a85;
  --grey-line: rgba(244, 242, 238, 0.12);
  --gold: #c9a24b;
  --gold-soft: rgba(201, 162, 75, 0.16);
  --display: 'Big Shoulders Display', sans-serif;
  --serif: 'Italiana', serif;
  --script: 'Alex Brush', cursive;
  --codec: 'Codec Pro', sans-serif;
  --body: 'Inter', sans-serif;
  --ease: cubic-bezier(.16, .84, .32, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 900px) {
  body {
    cursor: auto;
  }
}

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

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

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

::selection {
  background: var(--gold);
  color: var(--black);
}

.eyebrow {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 6vw;
}

@media (max-width:700px) {
  .container {
    padding: 0 22px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================= CURSOR ============================= */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease);
  mix-blend-mode: difference;
}

.cursor.ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s var(--ease);
}

@media (max-width:900px) {

  .cursor,
  .cursor.ring {
    display: none;
  }
}

/* ============================= LOADER ============================= */
.slate-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.loader-logo-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(210px, 34vw, 360px);
  aspect-ratio: 1;
}

.loader-logo-glow {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.28) 0%, rgba(201, 162, 75, 0.08) 42%, transparent 72%);
  opacity: 0;
  transform: scale(0.55);
  pointer-events: none;
}

.loader-logo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.68);
  filter: drop-shadow(0 24px 56px rgba(201, 162, 75, 0.28));
}

/* ============================= NAV ============================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 16px 6vw;
  background: rgba(10, 10, 10, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--grey-line);
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: .35em;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: .02em;
  line-height: 1;
}

.logo-tag {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.logo .doc {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
}

.logo .book {
  font-family: var(--codec);
  font-weight: 400;
  font-size: 1.1em;
  letter-spacing: .02em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 42px;
  list-style: none;
}

.nav-links a {
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}

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

.nav-cta {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--grey-line);
  padding: 12px 22px;
  border-radius: 100px;
  transition: all .35s var(--ease);
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}

.burger span {
  height: 1px;
  width: 100%;
  background: var(--white);
}

@media (max-width:900px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

/* ============================= HERO ============================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 96px 6vw 56px;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(201, 162, 75, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.4) 55%, rgba(10, 10, 10, 0.65) 100%);
}

.hero-bg .grain {
  z-index: 2;
  position: absolute;
  inset: 0;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-bg .scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 3px);
}

.hero-frame {
  position: absolute;
  inset: 24px;
  /*border: 1px solid var(--grey-line);*/
  z-index: 1;
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  /*border: 1px solid var(--gold);*/
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero .hero-content.container {
  padding-left: 0;
  padding-right: 0;
}

.hero-tag {
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(48px, 9.6vw, 140px);
  line-height: .96;
  letter-spacing: -.01em;
  max-width: 1200px;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line span {
  display: block;
  transform: translateY(110%);
}

.hero h1 .accent {
  color: var(--gold);
}

.hero-tagline {
  margin-top: 28px;
  max-width: 560px;
  font-family: var(--display);
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  padding: 14px 20px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, var(--gold-soft) 0%, transparent 85%);
  box-decoration-break: clone;
}

.hero-sub {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  max-width: 620px;
  font-size: 16px;
  color: var(--grey);
  line-height: 1.7;
}

.hero-sub b {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: clamp(28px, 4vh, 48px);
}

@media (max-height: 820px) {
  .hero {
    padding-top: 84px;
    padding-bottom: 48px;
  }

  .hero-sub {
    margin-top: 22px;
  }

  .hero-tagline {
    margin-top: 22px;
  }

  .hero-actions {
    margin-top: 24px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: all .4s var(--ease);
  white-space: nowrap;
  line-height: 1;
  border: 1px solid transparent;
  flex-shrink: 0;
}

.btn-solid {
  background: var(--white);
  color: var(--black);
}

.btn-solid:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--grey-line);
}

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

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform .4s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 56px;
  right: 6vw;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey);
}

.hero-scroll .bar {
  width: 1px;
  height: 40px;
  background: var(--grey-line);
  position: relative;
  overflow: hidden;
}

.hero-scroll .bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: scrollbar 2s infinite;
}

@keyframes scrollbar {
  0% {
    top: -40%;
  }

  100% {
    top: 100%;
  }
}

/* ============================= TICKER (SLATE STRIPE) ============================= */
.ticker-wrap {
  background: var(--black);
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.ticker {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .05em;
  color: var(--grey);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.ticker span i {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================= SECTION GENERIC ============================= */
section {
  position: relative;
  padding: 140px 0;
}

@media (max-width:700px) {
  section {
    padding: 90px 0;
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .98;
  font-size: clamp(34px, 5.4vw, 72px);
  max-width: 800px;
}

.section-head p {
  max-width: 340px;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ============================= ABOUT ============================= */
.about {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: start;
}

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

.about h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  font-size: clamp(32px, 5vw, 60px);
}

.about h2 .out {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

.about-copy p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.85;
  margin-top: 24px;
  max-width: 480px;
}

.about-copy p b {
  color: var(--white);
  font-weight: 500;
}

.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.about-stats div b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}

.about-stats div span {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-top: 8px;
}

/* ============================= SERVICES ============================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-line);
  border: 1px solid var(--grey-line);
}

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

.service-card {
  background: var(--black);
  padding: 48px 38px;
  position: relative;
  overflow: hidden;
  transition: background .5s var(--ease);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.service-num {
  font-family: var(--serif);
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: .14em;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  margin-top: 60px;
  margin-bottom: 18px;
}

.service-list {
  list-style: none;
  font-size: 13.5px;
  color: var(--grey);
  line-height: 2;
  opacity: 0;
  max-height: 0;
  transition: opacity .4s var(--ease), max-height .4s var(--ease);
}

.service-card:hover .service-list {
  opacity: 1;
  max-height: 220px;
}

.service-list li::before {
  content: '— ';
  color: var(--gold);
}

/* ============================= WORK ============================= */
.work {
  background: var(--panel);
}

.work-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.work-tab {
  padding: 12px 22px;
  border: 1px solid var(--grey-line);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
}

.work-tab.active,
.work-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.work-card {
  position: relative;
  border: 1px solid var(--grey-line);
  padding: 30px;
  background: var(--black);
  transition: border-color .4s var(--ease);
}

.work-card:hover {
  border-color: var(--gold);
}

.work-card .cat {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.work-card .frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--grey-line);
}

.work-card .frame iframe,
.work-card .frame blockquote {
  width: 100%;
  height: 100%;
  border: 0;
}

.work-card h4 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 20px;
}

.work-card p.note {
  font-size: 12px;
  color: var(--grey);
  margin-top: 8px;
  line-height: 1.6;
}

/* ============================= CLIENTS ============================= */
.clients {
  background: var(--black);
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}

.clients-marquee {
  overflow: hidden;
  padding: 20px 0;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.client-logo {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: .02em;
  color: var(--grey);
  filter: grayscale(1) opacity(.55);
  padding: 0 60px;
  transition: all .45s var(--ease);
  white-space: nowrap;
}

.client-logo:hover {
  color: var(--gold);
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
}

/* ============================= WHY ============================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-line);
  border: 1px solid var(--grey-line);
  margin-top: 30px;
}

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

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

.why-card {
  background: var(--black);
  padding: 50px 36px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-card b {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 48px);
  color: var(--gold);
  line-height: 1;
}

.why-card span {
  font-size: 13.5px;
  letter-spacing: .04em;
  color: var(--grey);
  margin-top: 18px;
  line-height: 1.5;
}

/* ============================= PROCESS ============================= */
.process {
  background: var(--panel);
  overflow: hidden;
}

.process-track {
  display: flex;
  gap: 0;
  margin-top: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.process-track::-webkit-scrollbar {
  height: 4px;
}

.process-track::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.process-step {
  scroll-snap-align: start;
  min-width: 280px;
  flex: 1;
  padding: 40px 36px;
  border-right: 1px solid var(--grey-line);
  position: relative;
}

.process-step:first-child {
  border-left: 1px solid var(--grey-line);
}

.process-step .pnum {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .2em;
}

.process-step h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 32px;
  margin: 50px 0 16px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.7;
}

.process-step .arrow {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 20px;
  z-index: 2;
}

.process-step:last-child .arrow {
  display: none;
}

/* ============================= TESTIMONIALS ============================= */
.testi {
  background: var(--black);
}

.testi-slide {
  display: none;
}

.testi-slide.active {
  display: block;
}

.testi blockquote {
  font-family: var(--display);
  font-weight: 600;
  text-transform: none;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.25;
  max-width: 960px;
}

.testi blockquote::before {
  content: '"';
  color: var(--gold);
}

.testi blockquote::after {
  content: '"';
  color: var(--gold);
}

.testi-meta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-meta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.testi-meta b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.testi-meta span {
  font-size: 13px;
  color: var(--grey);
}

.testi-nav {
  display: flex;
  gap: 14px;
  margin-top: 60px;
}

.testi-dot {
  width: 34px;
  height: 2px;
  background: var(--grey-line);
  transition: background .3s var(--ease);
}

.testi-dot.active {
  background: var(--gold);
}

.testi-note {
  margin-top: 50px;
  font-size: 12px;
  color: var(--grey);
  border-top: 1px dashed var(--grey-line);
  padding-top: 18px;
  max-width: 600px;
}

/* ============================= CONTACT ============================= */
.contact {
  background: var(--panel);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

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

.contact h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.0;
  font-size: clamp(32px, 5.4vw, 64px);
}

.contact-channels {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  border: 1px solid var(--grey-line);
  border-radius: 14px;
  transition: all .35s var(--ease);
}

.channel:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.channel b {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
}

.channel span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--grey-line);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  padding: 10px 0;
  outline: none;
  transition: border-color .3s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field textarea {
  resize: none;
  height: 80px;
}

.submit-btn {
  margin-top: 10px;
}

/* ============================= FOOTER ============================= */
footer {
  background: var(--black);
  border-top: 1px solid var(--grey-line);
  padding: 80px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--grey-line);
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo-block .logo-tag {
  font-size: 14px;
  letter-spacing: .22em;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .3em;
  font-family: var(--display);
  font-size: 46px;
  text-transform: uppercase;
}

.footer-logo .doc {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1em;
  text-transform: none;
  letter-spacing: 0;
  color: var(--white);
}

.footer-logo .book {
  font-family: var(--codec);
  font-weight: 400;
  font-size: 1.1em;
  letter-spacing: .02em;
  color: var(--white);
}

.footer-tag {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .1em;
  margin-top: 14px;
}

.footer-cols {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.footer-col b {
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 18px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 12px;
  color: var(--grey);
  flex-wrap: wrap;
  gap: 10px;
}

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

.footer-social a {
  border: 1px solid var(--grey-line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all .3s var(--ease);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* misc helper for visible focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}


.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}