:root {
  --bg: #F3F1ED;
  --text: #141210;
  --text-secondary: #655D55;
  --border: #E3DFD8;
  --accent: #BE0000;
  --accent-hover: #9C0000;
  --dark: #1A1712;

  --font-display: 'General Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 880px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-wide { max-width: 1220px; }
.nowrap-phrase { white-space: nowrap; }
@media (max-width: 480px) {
  .nowrap-phrase { white-space: normal; }
}

/* ---------- Header ---------- */
header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.wordmark img {
  height: 32px;
  width: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav {
  display: flex;
  gap: 26px;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.btn-nav {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  header.site-header { justify-content: space-between; }
}

/* ---------- Sections ---------- */
section {
  padding: 96px 0;
}

section.tight { padding: 64px 0; }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.hero-center {
  text-align: center;
}
.hero-center h1 { max-width: 780px; margin-left: auto; margin-right: auto; }
.hero-center .lede { margin-left: auto; margin-right: auto; }
.hero-center .btn { margin-bottom: 8px; }

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-align: center;
}

p.lede {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 0 36px;
}

p.body-copy {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 20px;
  text-align: center;
}

.statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text);
  margin: 28px auto 0;
  text-align: center;
  max-width: 580px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-secondary:hover { background: var(--text); color: #fff; }

/* ---------- Screenshot neutral backing ---------- */
.shot-mat {
  border-radius: 16px;
  padding: 16px;
  margin: 40px 0;
  background: #EFEAE1;
  border: 1px solid #B9B2A3;
}
.shot-mat .shot { margin: 0; box-shadow: none; }

/* ---------- Screenshot frame ---------- */
.shot {
  margin: 40px 0;
  border-radius: 10px;
  border: 1px solid #B9B2A3;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 6px 28px rgba(20, 18, 16, 0.08);
}
.shot img { width: 100%; display: block; }

.shot-placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A7A6A;
  font-size: 14px;
  font-family: var(--font-body);
  border: 1px dashed #3A342A;
  margin: 4px;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

/* ---------- Feature rows ---------- */
.feature {
  position: relative;
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.feature:first-of-type { border-top: none; }

.feature-numeral {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(70px, 9vw, 130px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px #A69C89;
  text-align: center;
  margin-bottom: 16px;
  user-select: none;
}

.feature--wide { border-top: 1px solid var(--border); padding-bottom: 24px; }

/* ---------- Feature rows (compact hybrid layout, 01-04) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 356px 1fr;
  align-items: center;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  text-align: left;
}

.feature-row-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-row:first-of-type { border-top: none; }

.feature-row-numeral {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  color: transparent;
  -webkit-text-stroke: 1.5px #A69C89;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 4px;
}

.feature-row-text {
  flex: 1;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-row-text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--text);
}
.feature-row-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  text-align: justify;
}

.feature-row-shot {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #B9B2A3;
  background: var(--dark);
  box-shadow: 0 6px 24px rgba(20, 18, 16, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.feature-row-shot .shot { margin: 0; border: none; box-shadow: none; border-radius: 0; height: 100%; }
.feature-row-shot .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.feature-row-shot:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(20, 18, 16, 0.18);
}
.feature-row-shot:hover .shot img {
  filter: brightness(1.05);
  transform: scale(1.01);
}
@media (prefers-reduced-motion: reduce) {
  .feature-row-shot, .feature-row-shot .shot img { transition: none; }
}

@media (max-width: 820px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
    padding: 36px 0;
  }
  .feature-row-left { flex-direction: column; align-items: center; order: 1; }
  .feature-row-numeral { font-size: 34px; padding-top: 0; }
  .feature-row-text { min-height: 0; align-items: center; }
  .feature-row-text p { text-align: center; }
  .feature-row-shot { order: 2; }

  /* 05 sits directly after 01-04 on mobile — match their (smaller) type scale
     instead of its own desktop-sized "hero" treatment, so it doesn't look
     like an unrelated, oversized outlier in the stacked sequence. */
  .feature--wide .feature-numeral { font-size: 34px; margin-bottom: 10px; }
  .feature--wide h2 { font-size: 20px; margin-bottom: 10px; }
  .feature--wide .body-copy { font-size: 16px; }
}

.wide-shot-wrap {
  width: 100%;
  padding: 0 24px 80px;
}
.wide-shot {
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- How we work ---------- */
.heading-dot { color: var(--accent); }

.how-we-work {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1000px;
  margin: 44px auto 0;
}

.hww-line {
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.hww-step {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 210px;
  text-align: center;
}

.hww-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  margin: 0 auto 20px;
  transition: background 0.25s ease;
}
.hww-step:hover .hww-icon-wrap { background: rgba(190, 0, 0, 0.07); }

.hww-icon {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.hww-step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--text);
}
.hww-step p {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 700px) {
  .how-we-work { flex-direction: column; align-items: center; gap: 40px; }
  .hww-line { display: none; }
}

/* ---------- Dot divider ---------- */
.dot-divider {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.dot-divider span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: block;
}

/* ---------- Eyebrow marker ---------- */
.eyebrow-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.dot-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* ---------- Services showcase grid ---------- */
.services-grid-wrap {
  padding: 20px 24px 60px;
  text-align: center;
}
.services-grid {
  max-width: 1180px;
  margin: 0 auto 28px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
}
.service-card {
  flex: 1 1 0;
  min-width: 216px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  display: block;
}
.services-grid--center .service-card { text-align: center; }
.service-img {
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #D8C7A8;
  box-shadow: 0 4px 14px rgba(20, 18, 16, 0.06);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
.service-card:hover .service-img {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(20, 18, 16, 0.14);
}
.service-card:hover .service-img img { filter: brightness(1.04); }
@media (prefers-reduced-motion: reduce) {
  .service-img, .service-img img { transition: none; }
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--text);
}
.service-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.services-follow { display: inline-block; }

@media (max-width: 760px) {
  .services-grid-wrap { position: relative; }
  .services-grid { overflow-x: auto; padding-bottom: 8px; }
  .service-card { min-width: 160px; }
  .scroll-hint {
    position: absolute;
    top: 92px;
    right: 8px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(20, 18, 16, 0.2);
    pointer-events: none;
    animation: scrollHintNudge 1.6s ease-in-out infinite;
  }
}
@media (min-width: 761px) {
  .scroll-hint { display: none; }
}
@keyframes scrollHintNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint { animation: none; }
}

/* ---------- Instagram-style photo strip ---------- */
.insta-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin: 28px 0 20px;
  padding-bottom: 4px;
}

.insta-item {
  flex: 1 0 160px;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  border: 1px solid var(--border);
  transition: transform 0.15s ease;
}
.insta-item:hover { transform: translateY(-2px); }
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insta-link {
  position: relative;
  display: block;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 2px;
  margin: 0 auto;
}
.insta-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.insta-link:hover::after { transform: scaleX(1); }

@media (max-width: 600px) {
  .insta-item { flex-basis: 120px; }
}

/* ---------- Mobile focus panel ---------- */
.focus-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 44px;
  box-shadow: 0 6px 28px rgba(20, 18, 16, 0.06);
}
.focus-panel h2 { margin-bottom: 16px; }
.focus-panel .body-copy { max-width: 100%; margin-bottom: 0; }
.emphasis {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Proof: layered dual-shot stage ---------- */
.proof-stage-wrap {
  width: 100%;
  padding: 20px 24px 100px;
}

.proof-stage {
  position: relative;
  max-width: 1180px;
  height: 560px;
  margin: 0 auto;
}

.proof-shot {
  position: absolute;
  width: 58%;
  max-width: 660px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #B9B2A3;
  background: var(--dark);
  cursor: grab;
  will-change: transform;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.proof-shot img {
  width: 100%;
  display: block;
  pointer-events: none;
}
.proof-shot.dragging {
  transition: none;
  cursor: grabbing;
}

.proof-shot--rear {
  right: 2%;
  top: 6%;
  z-index: 1;
  box-shadow: 0 8px 26px rgba(20, 18, 16, 0.10);
}
.proof-shot--front {
  left: 2%;
  top: 22%;
  z-index: 2;
  box-shadow: 0 18px 46px rgba(20, 18, 16, 0.16);
}

.proof-shot--front.at-rest { transform: rotate(-2deg); }
.proof-shot--rear.at-rest { transform: rotate(3deg); }

.proof-shot.brought-forward {
  z-index: 5;
  box-shadow: 0 26px 64px rgba(20, 18, 16, 0.24);
}
.proof-shot.receded {
  box-shadow: 0 6px 18px rgba(20, 18, 16, 0.08);
}

@media (max-width: 860px) {
  .proof-stage { height: 420px; }
  .proof-shot { width: 74%; }
  .proof-shot--rear { right: 4%; top: 4%; }
  .proof-shot--front { left: 4%; top: 26%; }
}

@media (max-width: 560px) {
  .proof-stage { height: 340px; }
  .proof-shot { width: 82%; }
}

@media (prefers-reduced-motion: reduce) {
  .proof-shot { transition: none; }
}

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 480px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.contact-form--grid {
  max-width: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.contact-form--grid .field-full { grid-column: span 2; }
.contact-form-submit { grid-column: span 2; justify-self: start; }

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

.field label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 13px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(190, 0, 0, 0.08);
}

.field textarea { min-height: 120px; resize: vertical; }

.form-status {
  font-size: 14px;
  min-height: 20px;
}
.form-status.success { color: #2f7a3d; }
.form-status.error { color: var(--accent); }

/* ---------- Footer ---------- */
footer {
  font-size: 13.5px;
}

.footer-dark {
  background: var(--dark);
  padding: 90px 24px;
  text-align: center;
  color: var(--text-secondary);
}
.footer-slogan {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(19px, 2.4vw, 24px);
  color: #F3F1ED;
  margin: 0 0 36px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 13px;
  color: #9A9086;
}
.footer-legal span { color: #5A5348; }
.footer-legal a {
  position: relative;
  text-decoration: none;
  color: #9A9086;
  transition: color 0.2s ease;
}
.footer-legal a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.footer-legal a:hover { color: #F3F1ED; }
.footer-legal a:hover::after { transform: scaleX(1); }

.footer-meta { line-height: 1.8; color: #6E675C; }

/* ---------- Brand block: closing signature, separate from footer ---------- */
.brand-block {
  width: 100%;
  background: var(--bg);
  padding: 90px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.brand-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(20,18,16,0.05), transparent);
  pointer-events: none;
}
.brand-block-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  line-height: 0.8;
  font-size: clamp(60px, 12vw, 190px);
  letter-spacing: -0.02em;
}
.brand-dot { color: var(--accent); }

/* ---------- Cookie banner ---------- */
#cookieBanner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  max-width: 400px;
  padding: 20px 22px 18px;
  box-shadow: 0 2px 24px rgba(20, 18, 16, 0.1);
  display: none;
}
#cookieBanner.visible { display: block; }
#cookieBanner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 8px;
}
#cookieBanner p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0 0 16px;
}
#cookieBanner .cookie-actions { display: flex; gap: 10px; }
#cookieBanner .btn { flex: 1; padding: 9px 14px; font-size: 13px; }

@media (max-width: 600px) {
  section { padding: 64px 0; }
  #cookieBanner { left: 12px; right: 12px; max-width: none; }
}
