/* ── TOKENS ── */
:root {
  --bg:        #080806;
  --bg-2:      #0f0e0b;
  --bg-3:      #161410;
  --orange:    #e07818;
  --orange-lt: #ffb347;
  --orange-glow: rgba(224, 120, 24, 0.38);
  --orange-dim:  rgba(224, 120, 24, 0.13);
  --text:      #f0ebe2;
  --muted:     #7a7268;
  --border:    rgba(224, 120, 24, 0.22);
  --border-dim: rgba(255, 255, 255, 0.07);
  --radius:    24px;
  --radius-xl: 36px;
  --header-h:  80px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin-top: 0; }

/* ── LAYOUT ── */
.container { width: min(1200px, 92vw); margin-inline: auto; }
.section    { padding: 100px 0; }

/* ── TYPE ── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(52px, 8.5vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin-bottom: 28px;
  padding-bottom: 0.15em;
  background: linear-gradient(135deg, #ffffff 0%, #f5e6cc 60%, #e8c98a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  font-size: clamp(36px, 5vw, 74px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f0dfc0 55%, #e2b870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h3 {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #f0ebe2 0%, #d4b896 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.display-h {
  font-size: clamp(40px, 5.5vw, 82px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin-bottom: 26px;
  background: linear-gradient(135deg, #ffffff 0%, #f5e6cc 60%, #e8c98a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
em {
  font-style: normal;
  background: linear-gradient(135deg, #ffcf6b 0%, var(--orange) 60%, #c85e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #b85800 100%);
  color: #0b0400;
  box-shadow: 0 0 28px rgba(224, 120, 24, 0.42);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 52px rgba(224, 120, 24, 0.7);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}
.btn-sm  { height: 42px; padding: 0 20px; font-size: 13px; }
.btn-lg  { height: 60px; padding: 0 38px; font-size: 16px; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(8, 8, 6, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border-dim);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 22px var(--orange-glow);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--muted);
}
.header-nav a { transition: color 0.2s; }
.header-nav a:hover { color: var(--orange-lt); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 110px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 25%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,6,0.25) 0%,
    rgba(8,8,6,0.1)  30%,
    rgba(8,8,6,0.62) 60%,
    rgba(8,8,6,0.97) 100%
  );
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 100%, transparent 30%, rgba(8,8,6,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 1s ease 0.1s both;
}
.hero-badge {
  display: inline-block;
  background: rgba(224, 120, 24, 0.14);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-lt);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeUp 1s ease 0s both;
}
.hero-sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(240, 235, 226, 0.68);
  max-width: 540px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-brand {
  position: absolute;
  top: 32px;
  left: 5vw;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  mix-blend-mode: screen;
  opacity: 0.75;
  animation: fadeUp 1s ease 0s both;
}
.hero-brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(1.2);
}
.hero-brand__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  right: 5vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
.hero-scroll p {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
  50%       { opacity: 1;    transform: scaleY(1);    }
}

/* ── BENTO INTRO ── */
.bento-section { padding: 80px 0; }
.bento-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}
.bcard {
  border-radius: var(--radius-xl);
  padding: 52px;
  border: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.bcard.in-view { opacity: 1; transform: none; }
.bcard--accent {
  border-color: var(--border);
  position: relative;
  padding: 0;
}
.bcard-bg-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  border-radius: var(--radius-xl);
}
.bcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(8,8,6,0.82) 0%, rgba(8,8,6,0.5) 60%, rgba(224,120,24,0.15) 100%);
  border-radius: var(--radius-xl);
  z-index: 1;
}
.bcard-content {
  position: relative;
  z-index: 2;
  padding: 52px;
  display: flex;
  flex-direction: column;
}
.bcard--dark { background: var(--bg-2); display: flex; flex-direction: column; }
.bcard--accent p { color: rgba(240,235,226,0.75); font-size: 16px; margin: 0; }
.rule { width: 44px; height: 2px; background: var(--orange); margin: 22px 0; }

.stats-title {
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 0%, #f0dfc0 55%, #e2b870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 36px;
}
.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.platform-tags span {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--orange-dim);
  color: var(--orange-lt);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.platform-note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  flex: 1;
}
.stat strong {
  display: block;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.stat span { font-size: 13px; color: var(--muted); font-weight: 500; line-height: 1.4; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 0;
}
.svc-card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border-dim);
  background: var(--bg-2);
  transition: all 0.32s ease;
  opacity: 0;
  transform: translateY(22px);
}
.svc-card.in-view { opacity: 1; transform: none; }
.svc-card:nth-child(1) { transition-delay: 0s; }
.svc-card:nth-child(2) { transition-delay: 0.07s; }
.svc-card:nth-child(3) { transition-delay: 0.14s; }
.svc-card:nth-child(4) { transition-delay: 0.21s; }
.svc-card:nth-child(5) { transition-delay: 0.28s; }
.svc-card:hover {
  border-color: var(--border);
  background: linear-gradient(145deg, rgba(224,120,24,0.09), var(--bg-2));
  transform: translateY(-5px);
}
.svc-card--wide {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.svc-card--wide:hover { transform: translateY(-5px); }
.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--orange-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-bottom: 22px;
}
.svc-card--wide .svc-icon { margin-bottom: 0; margin-top: 2px; }
.svc-icon svg { width: 22px; height: 22px; }
.svc-card h3  { color: var(--text); }
.svc-card p   { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }

/* ── PHONE BG WRAP (bento + showcase shared background) ── */
.phone-bg-wrap {
  position: relative;
  overflow: hidden;
}
.phone-bg-wrap .showcase-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}
.phone-bg-wrap .showcase-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,6,1) 0%, transparent 8%, transparent 80%, rgba(8,8,6,1) 100%),
    linear-gradient(to right, rgba(8,8,6,0.88) 0%, rgba(8,8,6,0.7) 50%, rgba(8,8,6,0.85) 100%);
  z-index: 1;
}

/* ── SHOWCASE ── */
.showcase-section { padding: 100px 0; position: relative; }
.showcase-section .container { position: relative; z-index: 2; }
.bento-section { position: relative; z-index: 2; }
.showcase-grid { display: block; }
.showcase-copy {
  max-width: 52%;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}
.showcase-copy.in-view { opacity: 1; transform: none; }
.showcase-copy p { color: rgba(240,235,226,0.75); font-size: 17px; margin-bottom: 0; line-height: 1.7; }

/* ── WORK ── */
.work-section { padding: 100px 0; position: relative; overflow: hidden; }
.work-phone-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.work-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,6,1) 0%, transparent 8%, transparent 80%, rgba(8,8,6,1) 100%),
    linear-gradient(to right, rgba(8,8,6,0.88) 0%, rgba(8,8,6,0.7) 50%, rgba(8,8,6,0.85) 100%);
  z-index: 1;
}
.work-section .container { position: relative; z-index: 2; }
.work-copy { display: flex; flex-direction: column; justify-content: center; }
.work-copy__text { display: flex; flex-direction: column; }
.work-inner {
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  gap: 70px;
  align-items: stretch;
}
.work-copy h2 { margin-bottom: 20px; }
.work-copy p  { color: var(--muted); font-size: 17px; margin-bottom: 32px; }
.work-list { display: grid; gap: 14px; }
.work-item {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  transition: all 0.28s ease;
  opacity: 0;
  transform: translateY(18px);
}
.work-item.in-view { opacity: 1; transform: none; }
.work-item:hover {
  border-color: var(--border);
  transform: translateX(6px);
}
.work-item span {
  display: block;
  font-weight: 800;
  color: var(--orange-lt);
  font-size: 18px;
  margin-bottom: 8px;
}
.work-item p { color: var(--muted); font-size: 14px; margin: 0; }

/* ── PROCESS ── */
.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(224,120,24,0.04), transparent);
}
.process-header {
  text-align: center;
  margin-bottom: 64px;
}
.process-header h2 { margin: 0; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.pstep {
  flex: 1;
  padding: 44px 32px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  text-align: center;
  transition: all 0.32s ease;
  opacity: 0;
  transform: translateY(22px);
}
.pstep.in-view { opacity: 1; transform: none; }
.pstep:nth-child(1) { transition-delay: 0s; }
.pstep:nth-child(3) { transition-delay: 0.1s; }
.pstep:nth-child(5) { transition-delay: 0.2s; }
.pstep:nth-child(7) { transition-delay: 0.3s; }
.pstep:hover {
  border-color: var(--border);
  background: linear-gradient(145deg, rgba(224,120,24,0.09), var(--bg-2));
  transform: translateY(-5px);
}
.pstep-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--orange);
}
.pstep-icon svg { width: 24px; height: 24px; }
.pstep-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pstep h3 { font-size: 18px; margin-bottom: 10px; }
.pstep p  { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }
.pstep-connector {
  width: 36px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(to right, var(--border), rgba(224,120,24,0.06));
}

/* ── PRICING ── */
.pricing-section { padding: 100px 0; }
.pricing-header  { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.pricing-header h2 { margin-bottom: 14px; }
.pricing-sub { color: var(--muted); font-size: 17px; margin: 0; }

.pricing-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  padding-left: 2px;
}
.pricing-label--spaced { margin-top: 48px; }

.pricing-grid {
  display: grid;
  gap: 16px;
}
.pricing-grid--retainers { grid-template-columns: 1fr 1fr; }
.pricing-grid--oneday    { grid-template-columns: 1fr 1fr; }

.price-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--border-dim);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease, border-color 0.3s ease;
}
.price-card.in-view { opacity: 1; transform: none; }
.price-card:nth-child(2) { transition-delay: 0.1s; }

.price-card--featured {
  background: linear-gradient(160deg, rgba(224,120,24,0.16) 0%, rgba(224,120,24,0.05) 60%, var(--bg-2) 100%);
  border-color: var(--border);
  box-shadow: 0 0 60px rgba(224, 120, 24, 0.12);
}

.price-card--oneday { padding: 38px 44px; }

.price-badge {
  display: inline-block;
  background: var(--orange);
  color: #0b0400;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.price-card__head { margin-bottom: 28px; }
.price-card__name {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: none;
  line-height: 1.05;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f0ebe2 0%, var(--orange-lt) 60%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card--featured .price-card__name {
  background: linear-gradient(135deg, #fff 0%, var(--orange-lt) 45%, #e07818 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  line-height: 1;
}
.price-card__price strong {
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}
.price-card--featured .price-card__price strong { color: var(--orange-lt); }
.price-card__price span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.price-card__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.price-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange-dim);
  border: 1px solid var(--border);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e07818' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
}
.price-card__cta { margin-top: auto; align-self: flex-start; }

@media (max-width: 900px) {
  .pricing-grid--retainers,
  .pricing-grid--oneday { grid-template-columns: 1fr; }
}

/* ── CONTACT ── */
.contact-section {
  position: relative;
  padding: 0;
}
.contact-bg {
  position: relative;
  width: 100%;
  z-index: 0;
}
.contact-bg img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.88;
}
.contact-section > .container {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}
.contact-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #080806 0%,
    rgba(8, 8, 6, 0.45) 18%,
    rgba(8, 8, 6, 0.18) 40%,
    rgba(8, 8, 6, 0.18) 60%,
    rgba(8, 8, 6, 0.45) 82%,
    #080806 100%
  );
}
.contact-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 44px 52px;
  background: rgba(8, 8, 6, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  align-items: start;
  width: min(1200px, 92vw);
}

/* ── FORM ── */
.consult-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.req { color: var(--orange); }
.opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }
.form-field input,
.form-field select {
  height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--border-dim);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a7268' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
.form-field select option { background: #1a1713; color: var(--text); }
.form-field input::placeholder { color: rgba(122, 114, 104, 0.6); }
.form-field input:focus,
.form-field select:focus {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.08);
}
.form-submit { margin-top: 4px; align-self: flex-start; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success {
  font-size: 22px;
  font-weight: 700;
  color: var(--orange-lt);
  padding: 32px 0;
  margin: 0;
}
.contact-copy h2 { margin-bottom: 0; }
.contact-copy p  { color: var(--muted); font-size: 17px; margin-top: 18px; }
.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.contact-phone {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 6px;
}
.contact-phone span  { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }
.contact-phone strong { font-size: 24px; color: var(--orange-lt); font-weight: 800; }
.contact-phone:hover strong { color: #fff; }
.contact-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,120,24,0.2), transparent 70%);
  right: -80px;
  bottom: -120px;
  pointer-events: none;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border-dim);
  padding: 38px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 14px var(--orange-glow);
}
.footer-nav { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.footer-nav a:hover { color: var(--orange-lt); }
.footer-copy { color: var(--muted); font-size: 13px; }

/* ── ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  /* Hero image — center on mobile */
  .hero-bg img {
    object-position: center center;
  }

  /* Phone background — center so subject stays visible */
  .phone-bg-wrap .showcase-bg-img {
    object-position: center center;
  }

  /* Film image — center on mobile */
  .work-phone-bg {
    object-position: center center;
  }

  /* Bento logo background */
  .bcard-bg-logo {
    object-position: center top;
  }
}

@media (max-width: 1024px) {
  .bento-intro { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card--wide { grid-column: span 2; }
  .work-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Header */
  .site-header { height: auto; padding: 16px 5vw; flex-wrap: wrap; gap: 12px; }
  .header-nav  { display: none; }

  /* Type */
  h1 { font-size: clamp(38px, 11vw, 64px); line-height: 0.92; }
  h2 { font-size: clamp(28px, 8vw, 48px); }
  .display-h { font-size: clamp(32px, 9vw, 54px); }

  /* Hero */
  .hero { padding-bottom: 80px; align-items: center; }
  .hero-content { text-align: left; }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-scroll { display: none; }
  .hero-brand { top: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Showcase */
  .showcase-section { padding: 60px 0; min-height: 480px; }
  .phone-bg-wrap { min-height: 480px; }
  .showcase-copy { max-width: 90%; }

  /* Work */
  .work-inner { grid-template-columns: 1fr; gap: 32px; }
  .work-copy { padding-right: 0; }
  .work-list { grid-template-columns: 1fr; }

  /* Bento */
  .bento-intro { grid-template-columns: 1fr; gap: 16px; }
  .bcard { padding: 36px 24px; }
  .bcard-content { padding: 36px 24px; }

  /* Process */
  .process-steps { flex-direction: column; gap: 0; align-items: center; }
  .pstep-connector { width: 1px; height: 28px; background: linear-gradient(to bottom, var(--border), transparent); margin: 0 auto; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .svc-card--wide { grid-column: span 1; flex-direction: column; gap: 16px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 32px 24px; }

  /* Contact */
  .contact-section > .container {
    position: relative;
    inset: unset;
    width: min(1200px, 92vw);
    max-width: 92vw;
    margin-inline: auto;
    padding: 60px 0;
  }
  .contact-bg { display: none; }
  .contact-section { background: var(--bg); padding: 0; }
  .contact-inner { grid-template-columns: 1fr; padding: 36px 20px; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-glow { display: none; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
  .footer-nav   { justify-content: center; flex-wrap: wrap; gap: 16px; }

  /* General */
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(34px, 10vw, 52px); }
  h2 { font-size: clamp(26px, 7.5vw, 40px); }
  .display-h { font-size: clamp(28px, 8.5vw, 44px); }

  .bento-intro { gap: 12px; }
  .contact-inner { padding: 32px 16px; }
  .showcase-copy { max-width: 100%; }
  .work-list { gap: 16px; }
  .price-card { padding: 28px 20px; }
  .hero-actions .btn { font-size: 13px; height: 46px; }
  .section { padding: 52px 0; }
}
