:root {
  --bg: #eeeae3;
  --white: #ffffff;
  --ink: #1a1917;
  --ink-mid: #6b6760;
  --ink-light: #a8a49e;
  --orange: #e8672a;
  --gray-card: #9b9b9b;
  --yellow: #f0e68c;
  --green: #b8dead;
  --green-txt: #1a3a20;
  --yellow-txt: #4a3a00;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ─── NAV ──────────────────────────────────────────────── */
.nav {
  background: var(--white);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid #e8e4dc;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo img {
  max-height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink);
}
.nav-links a:hover {
  opacity: 0.6;
}

.nav-cta {
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  opacity: 0.8;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  padding: 12px 12px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: calc(100svh - 64px);
}

.hero-left {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-headline {
  font-family: var(--sans);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 380px;
  margin-bottom: 48px;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0 12px;
}

.cc {
  padding: 24px 28px 28px;
  border-radius: 16px;
}

.cc-orange {
  background: var(--orange);
}
.cc-gray {
  background: var(--gray-card);
}

.cc-num {
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}

.cc-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.cc-body {
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.hero-right {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #2a2a2a;
  min-height: 500px;
}

.hero-img-ph {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    #2a2a2a 0,
    #2a2a2a 6px,
    #323232 6px,
    #323232 14px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 0.65rem;
  color: #666;
  letter-spacing: 0.08em;
}

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

.hero-quote-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px 36px;
}

.hero-quote-box {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 28px 28px 24px;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.15);
}

.hero-quote-text {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-quote-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  padding: 9px 18px;
  border-radius: 100px;
  transition: opacity 0.2s;
}
.hero-quote-cta:hover {
  opacity: 0.85;
}

/* ─── WORK HIGHLIGHTS ──────────────────────────────────── */
.work-section {
  padding: 56px 32px 64px;
}

.work-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.work-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.work-asterisk {
  font-size: 1.1rem;
  color: var(--ink);
}

.work-title {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}

.work-more {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green-txt);
  background: var(--green);
  padding: 8px 18px;
  border-radius: 100px;
  transition: opacity 0.2s;
}
.work-more:hover {
  opacity: 0.75;
}

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

.work-card {
  cursor: pointer;
}

.work-card-img {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  background: #d8d4cc;
  margin-bottom: 14px;
}

.work-card-img .img-ph {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #d8d4cc 0,
    #d8d4cc 5px,
    #e2ded6 5px,
    #e2ded6 13px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 0.6rem;
  color: #aaa49e;
  text-align: center;
  padding: 12px;
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
}

.tag-cms {
  background: var(--green);
  color: var(--green-txt);
}
.tag-mobile {
  background: #fff;
  color: var(--ink);
}
.tag-business {
  background: var(--yellow);
  color: var(--yellow-txt);
}

.work-card-name {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.work-card-client {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--ink-light);
}

/* ─── NEWS ─────────────────────────────────────────────── */
.news-section {
  padding: 0 32px 72px;
}

.news-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  margin-bottom: 32px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.news-col {
  padding: 0 24px;
  border-right: 1px solid #d8d4cc;
}
.news-col:first-child {
  padding-left: 0;
}
.news-col:last-child {
  padding-right: 0;
  border-right: none;
}

.news-col-label {
  margin-bottom: 14px;
}

.news-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
}

.news-pill-green {
  background: var(--green);
  color: var(--green-txt);
}
.news-pill-yellow {
  background: var(--yellow);
  color: var(--yellow-txt);
}
.news-pill-plain {
  background: none;
  border: 1px solid #d8d4cc;
  color: var(--ink-mid);
}

.news-col-divider {
  height: 1px;
  background: #d8d4cc;
  margin-bottom: 18px;
}

.news-article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.news-thumb {
  width: 76px;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #d8d4cc;
}

.news-thumb .img-ph {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #d8d4cc 0,
    #d8d4cc 3px,
    #e2ded6 3px,
    #e2ded6 8px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 0.5rem;
  color: #aaa49e;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-body {
  flex: 1;
}

.news-article-title {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 16px;
  text-wrap: pretty;
}

.news-date {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--ink-light);
}

/* ─── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid #d8d4cc;
  padding: 56px 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-brand-sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-mid);
  margin-bottom: 40px;
}

.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.6;
}

.footer-copy a {
  text-decoration: underline;
  color: var(--ink-mid);
}

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink);
  transition: opacity 0.2s;
}
.footer-col-links a:hover {
  opacity: 0.5;
}

.footer-contact-email {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  display: block;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #c8c4bc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.social-btn:hover {
  border-color: var(--ink);
}

.social-btn svg {
  width: 14px;
  height: 14px;
  fill: var(--ink);
}

/* ─── CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  background: var(--bg);
  overflow: hidden;
  border-top: 1px solid #c8c4bc;
  border-bottom: 1px solid #c8c4bc;
  padding: 28px 0;
  position: relative;
}

.cta-marquee {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.cta-marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 64px;
}

.cta-marquee-text {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  white-space: nowrap;
}

.cta-marquee-asterisk {
  font-size: 2rem;
  color: var(--ink-light);
  flex-shrink: 0;
}

.cta-marquee-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 10px 20px;
  border-radius: 100px;
  flex-shrink: 0;
  white-space: nowrap;
}

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

/* ─── Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
.reveal-d4 {
  transition-delay: 0.32s;
}

.h-in {
  opacity: 0;
  transform: translateY(16px);
  animation: hIn 0.7s ease forwards;
}
.h-in-d1 {
  animation-delay: 0.05s;
}
.h-in-d2 {
  animation-delay: 0.15s;
}
.h-in-d3 {
  animation-delay: 0.28s;
}
.h-in-d4 {
  animation-delay: 0.42s;
}
.h-in-d5 {
  animation-delay: 0.55s;
}
@keyframes hIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ─── Coming Soon overlay ──────────────────────────────── */
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}
.coming-soon-overlay span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 18px;
  border-radius: 20px;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    min-height: 60vw;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .news-col {
    border-right: none;
    padding: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .hero {
    padding: 8px 8px 0;
    gap: 8px;
  }
  .hero-left {
    padding: 32px 24px 0;
  }
  .hero-cards {
    margin: 0 -24px;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
