/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --ink:     #16120d;
  --ink-90:  #1e1a14;
  --ink-80:  #28231a;
  --ink-60:  #3e3829;
  --gold:    #c8952a;
  --gold-lt: #e3b84a;
  --cream:   #f2e8d5;
  --cream-dk:#d9cebc;
  --muted:   #8c8070;
  --white:   #faf7f2;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(22, 18, 13, 0.88);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(200, 149, 42, 0.14);
  transition: background 0.3s;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: var(--r-sm);
  font-weight: 700;
}
.brand strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
}
.brand small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream-dk);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s var(--ease-out);
}
.site-nav a:hover { color: var(--cream); }
.site-nav a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 950;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Layout helpers ─────────────────────────────────────── */
.section {
  padding: 7rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-heading {
  margin-bottom: 3.5rem;
}
.section-heading h2,
.section-heading + h2 {
  max-width: 52ch;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); color: var(--cream); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--cream); }

/* ─── Buttons ────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  border: none;
}
.button:active { transform: scale(0.97); }

.button.primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(200, 149, 42, 0.35);
}
.button.primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 149, 42, 0.45);
}

.button.secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(242, 232, 213, 0.3);
}
.button.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── Hero ───────────────────────────────────────────────── */
#home.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: 8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.hero-copy h1 { color: var(--cream); }
.hero-text {
  color: var(--cream-dk);
  font-size: 1.05rem;
  max-width: 44ch;
}
.tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 0.5rem;
}
.trust-row span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-left: 0.9rem;
  position: relative;
}
.trust-row span::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* hero board */
.hero-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  padding: 1rem;
}
.hero-sample {
  border-radius: var(--r-md);
  object-fit: cover;
  width: 100%;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease-out);
}
.hero-sample:hover { transform: scale(1.025); }
.hero-sample-main {
  grid-column: 1 / -1;
  height: 240px;
}
.hero-sample-left,
.hero-sample-right {
  height: 160px;
}

.campaign-card {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--ink-90);
  border: 1px solid rgba(200, 149, 42, 0.2);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  width: 200px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.card-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}
.campaign-card strong {
  display: block;
  font-size: 0.8rem;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.metric-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.metric-row span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-lt);
  line-height: 1;
}
.metric-row small {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ─── Proof strip ────────────────────────────────────────── */
.proof-strip {
  background: var(--ink-90);
  border-top: 1px solid rgba(200, 149, 42, 0.12);
  border-bottom: 1px solid rgba(200, 149, 42, 0.12);
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
}
.proof-strip > div {
  flex: 1;
  max-width: 280px;
  padding: 2.2rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(200, 149, 42, 0.1);
}
.proof-strip > div:last-child { border-right: none; }
.proof-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.proof-strip span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ─── About ──────────────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--cream-dk);
  font-size: 1.02rem;
}

/* ─── Services ───────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--ink-90);
  border: 1px solid rgba(200, 149, 42, 0.1);
  border-radius: var(--r-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.service-card:hover {
  border-color: rgba(200, 149, 42, 0.35);
  transform: translateY(-4px);
}
.service-icon {
  display: block;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.service-icon.blue   { background: linear-gradient(135deg, #2e6fff, #1a4fc8); }
.service-icon.yellow { background: linear-gradient(135deg, #f5c842, #d49e10); }
.service-icon.red    { background: linear-gradient(135deg, #e84c3d, #b51c10); }
.service-card p { color: var(--cream-dk); font-size: 0.9rem; }

/* ─── Process ────────────────────────────────────────────── */
.process-section { background: transparent; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.process-grid article {
  position: relative;
  padding-top: 1rem;
}
.process-grid article > span {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(200, 149, 42, 0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.process-grid article:hover > span { color: rgba(200, 149, 42, 0.3); }
.process-grid article h3 { margin-bottom: 0.5rem; }
.process-grid article p  { color: var(--cream-dk); font-size: 0.92rem; }

/* ─── Samples / Portfolio ────────────────────────────────── */
.samples-section { }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Vary heights for editorial feel */
.portfolio-card:nth-child(1) { grid-row: span 2; }
.portfolio-card:nth-child(6) { grid-row: span 2; }

.portfolio-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-80);
  border: 1px solid rgba(200, 149, 42, 0.08);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.portfolio-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  border-color: rgba(200, 149, 42, 0.3);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out), filter 0.3s;
}
.portfolio-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.65);
}

/* The label at bottom of card */
.portfolio-card > div {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(16,12,8,0.95) 0%, transparent 100%);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.portfolio-card:hover > div {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-card > div span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.portfolio-card > div h3 {
  font-size: 0.88rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 500;
}

/* View indicator overlay on hover */
.portfolio-card::after {
  content: 'View Sample';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%) scale(0.9);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  opacity: 0;
  transition: opacity 0.25s, transform 0.3s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}
.portfolio-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* View all toggle */
.samples-toggle-row {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
#toggle-more-btn {
  background: none;
  border: 1.5px solid rgba(200, 149, 42, 0.35);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
#toggle-more-btn:hover {
  background: rgba(200, 149, 42, 0.1);
  border-color: var(--gold);
}

/* Hidden extra cards */
.portfolio-card.hidden-card {
  display: none;
}
.portfolio-card.hidden-card.revealed {
  display: block;
  animation: fadeIn 0.45s var(--ease-out) both;
}

/* ─── Pricing ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.price-card {
  background: var(--ink-90);
  border: 1px solid rgba(200, 149, 42, 0.12);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 149, 42, 0.3);
}
.price-card.featured {
  background: linear-gradient(160deg, #24200e 0%, var(--ink-90) 100%);
  border-color: rgba(200, 149, 42, 0.35);
  box-shadow: 0 0 0 1px rgba(200, 149, 42, 0.2), 0 24px 60px rgba(0,0,0,0.4);
}
.price-card.featured:hover {
  border-color: rgba(200, 149, 42, 0.6);
}
.popular {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
}
.price-card h3 {
  font-size: 1.2rem;
  color: var(--cream);
}
.price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-lt);
  line-height: 1;
}
.price-card > p:not(.price) { color: var(--cream-dk); font-size: 0.88rem; }
.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.price-card li {
  font-size: 0.88rem;
  color: var(--cream-dk);
  padding-left: 1.1rem;
  position: relative;
}
.price-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 4rem;
}
.faq-grid article {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200, 149, 42, 0.15);
}
.faq-grid article h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.faq-grid article p { color: var(--cream-dk); font-size: 0.9rem; }

/* ─── Contact ────────────────────────────────────────────── */
.contact-section { max-width: 1200px; margin: 0 auto; padding: 7rem 2.5rem; }
.contact-panel {
  background: linear-gradient(135deg, #201c10 0%, var(--ink-90) 100%);
  border: 1px solid rgba(200, 149, 42, 0.2);
  border-radius: var(--r-lg);
  padding: 4rem;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-panel h2 { max-width: 28ch; }
.contact-panel > p { color: var(--cream-dk); font-size: 1rem; }
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.contact-links a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(200, 149, 42, 0.25);
  font-size: 0.88rem;
  color: var(--cream-dk);
  transition: border-color 0.2s, color 0.2s;
}
.contact-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(200, 149, 42, 0.12);
  text-align: center;
  padding: 2rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── Lightbox ───────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(12, 9, 5, 0.96);
  backdrop-filter: blur(18px) saturate(120%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#lightbox.open {
  display: flex;
  animation: lbFadeIn 0.3s var(--ease-out) both;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lb-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  padding: 2rem 5rem;
}

#lb-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  animation: lbSlideIn 0.35s var(--ease-out) both;
  user-select: none;
  -webkit-user-drag: none;
}
@keyframes lbSlideIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200, 149, 42, 0.12);
  border: 1.5px solid rgba(200, 149, 42, 0.25);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  font-size: 1.1rem;
}
.lb-btn:hover {
  background: rgba(200, 149, 42, 0.25);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}
#lb-prev { left: 1rem; }
#lb-next { right: 1rem; }

.lb-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(200, 149, 42, 0.12);
  border: 1.5px solid rgba(200, 149, 42, 0.2);
  color: var(--cream);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 9100;
  transition: background 0.2s, border-color 0.2s;
}
.lb-close:hover {
  background: rgba(200, 149, 42, 0.3);
  border-color: var(--gold);
}

.lb-meta {
  padding: 1rem 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.lb-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
}
.lb-category {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.lb-dots {
  display: flex;
  gap: 0.4rem;
}
.lb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(200, 149, 42, 0.25);
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s;
}
.lb-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { padding: 1rem 1.5rem; }
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 800;
  }
  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a::after { display: none; }

  #home.hero {
    grid-template-columns: 1fr;
    padding-top: 7rem;
    gap: 2.5rem;
    min-height: auto;
    padding-bottom: 4rem;
  }
  .hero-board { order: -1; }
  .campaign-card { display: none; }

  .about-section { grid-template-columns: 1fr; gap: 1.5rem; }

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

  .process-grid { grid-template-columns: 1fr; gap: 2rem; }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-card:nth-child(1),
  .portfolio-card:nth-child(6) { grid-row: span 1; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }

  .faq-grid { grid-template-columns: 1fr; gap: 1rem; }

  .contact-panel { padding: 2.5rem 1.75rem; }

  .lb-stage { padding: 1.5rem 3.5rem; }
  #lb-prev { left: 0.25rem; }
  #lb-next { right: 0.25rem; }

  .proof-strip {
    flex-wrap: wrap;
  }
  .proof-strip > div {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(200, 149, 42, 0.1);
  }
  .proof-strip > div:nth-child(odd) {
    border-right: 1px solid rgba(200, 149, 42, 0.1);
  }
  .proof-strip > div:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 540px) {
  .section { padding: 4rem 1.25rem; }
  .service-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-board { display: block; }
  .hero-sample-main { height: 200px; margin-bottom: 0.5rem; }
  .hero-sample-left, .hero-sample-right { display: none; }
}
