/* MADE BY WEST
   Edit the color variables below if you ever want to change the entire site's palette.
*/

:root {
  --bg: #ebebeb;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #333333;
  --blue: #00a3d7;
  --blue-dark: #0089b8;
  --peach: #feb998;
  --mauve: #8984a8;
  --gray: #aaaaaa;
  --line: rgba(26, 26, 26, .12);
  --muted: rgba(26, 26, 26, .62);
  --shadow: 0 24px 60px rgba(26, 26, 26, .12);
  --display: "Oswald", "Arial Narrow", sans-serif;
  --sans: "Andale Mono", "Consolas", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 4%, rgba(0,163,215,.10), transparent 24rem),
    radial-gradient(circle at 4% 35%, rgba(137,132,168,.10), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--blue);
  color: #fff;
}

a {
  color: inherit;
}

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgba(235,235,235,.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--display);
  font-size: 20px;
}

.brand-name {
  font-family: var(--display);
  letter-spacing: .06em;
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color .2s ease;
}

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

.site-nav .nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--ink);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform .25s ease;
}

/* Shared */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 118px clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
  font-size: clamp(38px, 5.8vw, 72px);
  letter-spacing: .01em;
}

.section-heading > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--ink);
}

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

.btn-light {
  background: var(--ink);
  color: var(--bg);
}

/* Hero */
.hero {
  min-height: calc(100vh - 78px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 76px clamp(20px, 5vw, 72px) 94px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 8.8vw, 122px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.02em;
}

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

.hero-text {
  max-width: 650px;
  margin: 30px 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-notes span::before {
  content: "✦";
  margin-right: 8px;
  color: var(--mauve);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
}

.logo-frame {
  position: relative;
  z-index: 2;
  width: min(500px, 90%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0,163,215,.28);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sunburst {
  position: absolute;
  width: 125%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .23;
  background:
    repeating-conic-gradient(from 8deg, rgba(0,163,215,.30) 0 1.5deg, transparent 1.5deg 8deg);
  animation: spin 80s linear infinite;
}

.stamp {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  right: -4px;
  margin: 0;
  padding: 9px 14px;
  background: var(--peach);
  color: var(--ink);
  transform: rotate(-4deg);
  border: 1px solid rgba(26,26,26,.25);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

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

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--blue);
  color: #fff;
  padding: 13px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  animation: marquee 26s linear infinite;
}

.marquee-track i {
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Services */
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 26px;
  align-items: stretch;
}

.package-card,
.service-card,
.step {
  border: 1px solid var(--line);
  background: var(--surface);
}

.package-card {
  padding: clamp(28px, 4vw, 50px);
  border-color: rgba(0,163,215,.4);
  box-shadow: inset 0 0 0 1px rgba(0,163,215,.08);
}

.package-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.package-card h3,
.service-card h3,
.step h3 {
  margin: 0;
  font-size: 22px;
}

.mini-label {
  color: var(--mauve);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .15em;
}

.price {
  flex: 0 0 auto;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 92px);
  line-height: .8;
}

.price sup {
  font-family: var(--sans);
  font-size: 20px;
  vertical-align: top;
  margin-right: 2px;
}

.package-description {
  margin: 32px 0;
  max-width: 560px;
  color: var(--muted);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.check-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✦";
  color: var(--blue);
  margin-right: 12px;
}

.package-footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.service-stack {
  display: grid;
  gap: 14px;
}

.service-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 28px;
  align-items: start;
}

.service-number {
  color: var(--blue);
  font-family: var(--display);
  font-size: 24px;
}

.service-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Work */
.work-section {
  max-width: 1380px;
}

.split-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
}

.split-heading > div {
  max-width: 820px;
}

.text-link {
  text-decoration: none;
  color: var(--blue);
  font-size: 14px;
  border-bottom: 1px solid rgba(0,163,215,.4);
}

.portfolio-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0b0a;
  box-shadow: var(--shadow);
}

.portfolio-toolbar {
  min-height: 48px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  gap: 12px;
  background: #221a16;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  font-size: 11px;
  text-align: center;
}

.portfolio-toolbar a {
  justify-self: end;
  color: var(--blue);
  text-decoration: none;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}

.portfolio-frame {
  display: block;
  width: 100%;
  height: min(82vh, 950px);
  min-height: 620px;
  border: 0;
  background: #fff;
}

.portfolio-fallback {
  color: var(--muted);
  font-size: 12px;
}

/* About */
.about {
  display: grid;
  grid-template-columns: minmax(330px, .75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}

.poster-card {
  min-height: 540px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--ink);
  background:
    linear-gradient(rgba(26,26,26,.5), rgba(26,26,26,.5)),
    radial-gradient(circle at 30% 30%, var(--peach), transparent 32%),
    var(--ink-soft);
  box-shadow: 18px 18px 0 var(--peach);
}

.poster-card p {
  margin: 0;
  color: var(--bg);
  letter-spacing: .25em;
  font-size: 11px;
  font-weight: 800;
}

.poster-card strong {
  margin: 18px 0;
  color: var(--peach);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(55px, 7vw, 92px);
  line-height: .9;
}

.poster-card span {
  max-width: 240px;
  font-size: 15px;
  color: rgba(235,235,235,.7);
}

.about-copy {
  max-width: 720px;
}

.about-copy h2 {
  margin-bottom: 28px;
}

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

.about-copy .about-lead {
  color: var(--ink);
  font-size: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.about-tags span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--mauve);
  font-size: 11px;
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  padding: 28px;
}

.step > span {
  color: var(--blue);
  font-family: var(--display);
  font-size: 34px;
}

.step h3 {
  margin-top: 40px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Contact */
.contact {
  max-width: 1320px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: end;
  padding: clamp(34px, 6vw, 74px);
  background: var(--blue);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}

.contact-card .eyebrow {
  color: var(--peach);
}

.contact-card::after {
  content: "W";
  position: absolute;
  right: -20px;
  bottom: -180px;
  font-family: var(--display);
  font-size: 390px;
  line-height: 1;
  color: rgba(255,255,255,.14);
  pointer-events: none;
}

.contact-card h2 {
  max-width: 760px;
}

.contact-card p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255,255,255,.85);
}

.contact-actions {
  position: relative;
  z-index: 2;
  min-width: 235px;
  display: grid;
  gap: 12px;
}

.copy-email {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
}

.copy-email span,
.copy-email small {
  display: block;
}

.copy-email small {
  opacity: .62;
  margin-top: 2px;
}

/* Footer */
.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px clamp(20px, 5vw, 72px) 54px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.footer-brand {
  color: var(--blue);
  font-family: var(--display);
  text-decoration: none;
  font-size: 18px;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 78px 0 0;
    padding: 40px 24px;
    background: rgba(235,235,235,.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    font-size: 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-art {
    min-height: 420px;
  }

  .logo-frame {
    width: min(440px, 90vw);
  }

  .pricing-layout,
  .about {
    grid-template-columns: 1fr;
  }

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

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    max-width: 320px;
  }
}

@media (max-width: 650px) {
  .site-header {
    min-height: 70px;
  }

  .brand-name {
    font-size: 15px;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .hero-art {
    min-height: 360px;
  }

  .stamp {
    right: 10px;
  }

  .split-heading {
    display: block;
  }

  .split-heading .text-link {
    display: inline-block;
    margin-top: 20px;
  }

  .portfolio-toolbar {
    grid-template-columns: 70px 1fr 90px;
  }

  .portfolio-frame {
    min-height: 540px;
    height: 70vh;
  }

  .poster-card {
    min-height: 440px;
    box-shadow: 10px 10px 0 var(--peach);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step h3 {
    margin-top: 20px;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer p:nth-child(2),
  .site-footer p:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
