:root {
  --cream: #f1ece0;
  --sage: #94a6c2;
  --sage-dim: #74859f;
  --terra: #c5512f;
  --terra-dark: #ad441f;
  --line: rgba(241, 236, 224, 0.1);
  --card: rgba(255, 255, 255, 0.025);
  --maxw: 1180px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Hanken Grotesk",
    -apple-system,
    sans-serif;
  color: var(--cream);
  background:
    radial-gradient(
      50% 38% at 92% 2%,
      rgba(170, 110, 64, 0.4),
      rgba(170, 110, 64, 0) 60%
    ),
    linear-gradient(180deg, #17283f 0%, #0e1a2c 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.serif {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
}
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.lead {
  color: var(--sage);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 520px;
}

/* nav */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(15, 26, 44, 0.74);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: var(--sage);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--cream);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  transition:
    background 0.25s,
    transform 0.25s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
}
.btn .arr {
  transition: transform 0.25s;
}
.btn:hover .arr {
  transform: translateX(4px);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
}
.btn-ghost:hover {
  background: rgba(241, 236, 224, 0.06);
  transform: translateY(-2px);
}

/* hero */
.hero {
  padding-top: clamp(60px, 10vw, 110px);
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(46px, 8vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
}
.hero h1 em {
  font-style: italic;
  color: var(--terra);
}
.hero p {
  color: var(--sage);
  font-size: clamp(17px, 1.7vw, 21px);
  max-width: 560px;
  margin: 26px 0 0;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-btns .btn {
  padding: 16px 28px;
  font-size: 16px;
}

/* marquee */
.marquee {
  margin-top: clamp(54px, 8vw, 84px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: scroll 26s linear infinite;
}
.marquee-track span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--sage);
  margin: 0 26px;
}
.marquee-track span::before {
  content: "\2014";
  color: var(--terra);
  margin-right: 26px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* work */
.work-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 80px);
}
.work-row.flip .browser {
  order: 2;
}
.browser {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #0d1a2c;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(241, 236, 224, 0.18);
}
.browser-url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--sage-dim);
  background: rgba(0, 0, 0, 0.2);
  padding: 5px 12px;
  border-radius: 6px;
  flex: 1;
}
.browser-shot {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(197, 81, 47, 0.1),
    rgba(241, 236, 224, 0.03)
  );
  color: var(--sage-dim);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}
.browser-shot .big {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--cream);
  font-style: italic;
}
.work-meta .num {
  font-family: "Playfair Display", serif;
  color: var(--terra);
  font-size: 15px;
}
.work-meta h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  margin: 6px 0 4px;
  line-height: 1.1;
}
.work-meta .type {
  color: var(--sage);
  font-size: 15px;
}
.work-meta .result {
  margin-top: 18px;
  padding: 14px 18px;
  border-left: 2px solid var(--terra);
  background: rgba(197, 81, 47, 0.07);
  font-size: 15px;
  color: var(--cream);
  border-radius: 0 8px 8px 0;
}
.work-meta .result .ph {
  color: var(--sage-dim);
  font-style: italic;
}
.work-meta a.view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--terra);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.work-meta a.view:hover {
  gap: 12px;
}

/* services */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 64px);
}
.scard {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  background: var(--card);
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.scard:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 81, 47, 0.4);
}
.scard .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(197, 81, 47, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 18px;
}
.scard h3 {
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 8px;
}
.scard p {
  color: var(--sage);
  font-size: 14.5px;
}
.addon-note {
  margin-top: 22px;
  color: var(--sage);
  font-size: 14.5px;
  text-align: center;
}
.addon-note b {
  color: var(--cream);
  font-weight: 600;
}

/* process */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
  margin-top: clamp(40px, 5vw, 64px);
}
.step .sn {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  color: var(--terra);
}
.step h3 {
  font-weight: 600;
  font-size: 18px;
  margin: 6px 0 6px;
}
.step p {
  color: var(--sage);
  font-size: 14.5px;
}

/* pricing */
.pricing-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card);
  padding: clamp(30px, 4vw, 54px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 5vw, 64px);
  margin-top: clamp(40px, 5vw, 60px);
}
.badge {
  display: inline-block;
  background: var(--terra);
  color: var(--cream);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
}
.price {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.92;
  margin: 24px 0 0;
}
.psub {
  font-size: 18px;
  margin-top: 16px;
}
.psub b {
  font-weight: 600;
}
.pdesc {
  color: var(--sage);
  font-size: 15px;
  margin-top: 20px;
  max-width: 420px;
  line-height: 1.6;
}
.plist {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-self: center;
}
.pitem {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.check {
  flex: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.pitem h4 {
  font-weight: 600;
  font-size: 16.5px;
}
.pitem p {
  color: var(--sage);
  font-size: 14px;
  margin-top: 3px;
}
.pitem.addon {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.pitem.addon .check {
  background: transparent;
  border: 1px solid var(--terra);
}
.pitem.addon .tag {
  color: var(--terra);
}

/* testimonials */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 60px);
}
.tcard {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  background: var(--card);
}
.tcard .q {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--cream);
}
.tcard .who {
  margin-top: 18px;
  color: var(--sage);
  font-size: 14px;
}
.tcard .ph {
  color: var(--sage-dim);
}

/* about */
.about {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
}
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(197, 81, 47, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: var(--terra);
  flex: none;
}
.about p {
  color: var(--sage);
  font-size: 16px;
  margin-top: 14px;
  max-width: 620px;
}
.about p b {
  color: var(--cream);
  font-weight: 500;
}

/* contact */
.contact {
  text-align: center;
}
.contact h2 {
  margin: 14px auto 0;
}
.contact .lead {
  margin: 18px auto 0;
}
.contact-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.contact-info {
  margin-top: 30px;
  color: var(--sage);
  font-size: 15px;
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-info a {
  color: var(--cream);
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.foot-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--sage-dim);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .grid3,
  .steps,
  .tgrid {
    grid-template-columns: 1fr;
  }
  .work-row,
  .pricing-card {
    grid-template-columns: 1fr;
  }
  .work-row.flip .browser {
    order: 0;
  }
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .avatar {
    margin: 0 auto;
  }
  .about p {
    margin-left: auto;
    margin-right: auto;
  }
}
