/* ============================================================
   BLOODSHOT.IO — REDESIGN
   "Elegance often lies in simplicity."
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --ink:         #0a0a0a;
  --paper:       #fafaf8;
  --muted:       #737373;
  --accent:      #C41E1E;
  --accent-hover:#9a1616;
  --line:        #e5e5e0;
  --surface:     #f2f2ed;
  --ink-faint:   rgba(10, 10, 10, 0.04);

  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.6s;

  --container:        1200px;
  --container-narrow: 780px;
  --gutter:           clamp(1.5rem, 4vw, 3rem);
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--paper);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background-color: var(--accent);
  color: #fff;
}

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 50ch;
  line-height: 1.7;
}

/* ── 4. LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ── 5. REVEAL ANIMATION ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ── 6. NAVIGATION ───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.4s var(--ease),
              background-color 0.4s var(--ease),
              border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background-color: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.site-nav.hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 2px;
  transition: opacity 0.3s var(--ease);
}

.nav-logo:hover {
  opacity: 0.7;
}

.nav-logo .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  margin-left: 1px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 450;
  color: var(--muted);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--ink);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--ink);
  transition: background-color 0.3s var(--ease),
              color 0.3s var(--ease);
}

.nav-cta:hover {
  background-color: var(--ink);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background-color: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}

/* ── 7. MOBILE MENU ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background-color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 400;
  transition: color 0.3s var(--ease);
}

.mobile-menu a:hover {
  color: var(--accent);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ── 8. HERO ─────────────────────────────────────────────── */
.hero {
  padding: clamp(8rem, 18vh, 12rem) 0 clamp(4rem, 8vh, 7rem);
  text-align: center;
}

.hero-eyebrow {
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 auto 2rem;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background-color: var(--line);
  margin: 0 auto 2rem;
  border: none;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--muted);
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  background-color: var(--accent);
  color: #fff;
  transition: background-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.3s var(--ease);
}

.btn-secondary::after {
  content: '↓';
  font-size: 0.75rem;
  transition: transform 0.3s var(--ease);
}

.btn-secondary:hover {
  color: var(--ink);
}

.btn-secondary:hover::after {
  transform: translateY(2px);
}

.hero-location {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── 9. CLIENTS STRIP ────────────────────────────────────── */
.clients-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.clients-strip::before,
.clients-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.clients-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--paper), transparent);
}

.clients-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--paper), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.client-name {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 clamp(2rem, 4vw, 3.5rem);
  white-space: nowrap;
  opacity: 0.6;
}

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

/* ── 10. STATEMENT ───────────────────────────────────────── */
.statement {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.statement-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.statement-quote {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  border-left: 2px solid var(--accent);
  padding-left: clamp(1.5rem, 2vw, 2rem);
}

.statement-quote .accent-dot {
  color: var(--accent);
}

.statement-body {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.8;
  padding-top: 0.5rem;
}

/* ── 11. SERVICES ────────────────────────────────────────── */
.services {
  background-color: var(--surface);
}

.services .section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.services .section-header .eyebrow {
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-grid.services-single {
  max-width: var(--container-narrow);
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.services-grid.services-single .service-card {
  text-align: center;
  border-right: none;
}

.services-grid.services-single .service-link {
  justify-content: center;
}

.service-card {
  padding: clamp(2rem, 3vw, 3rem);
  position: relative;
  transition: background-color 0.4s var(--ease);
}

.service-card:not(:last-child) {
  border-right: 1px solid var(--line);
}

.service-card:hover {
  background-color: var(--paper);
}

.service-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--line);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s var(--ease);
}

.service-card:hover .service-number {
  color: var(--accent);
}

.service-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.8125rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--muted);
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}

.service-link:hover {
  color: var(--accent);
  gap: 0.625rem;
}

.service-link svg {
  width: 14px;
  height: 14px;
}

/* ── 12. PROCESS ─────────────────────────────────────────── */
.process .section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.process .section-header .eyebrow {
  margin-bottom: 1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-step {
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2vw, 2rem);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.process-step:not(:last-child) {
  border-right: 1px solid var(--line);
}

.step-number {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--ink-faint);
  color: rgba(10,10,10,0.08);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── 13. PORTFOLIO ───────────────────────────────────────── */
.portfolio {
  background-color: var(--ink);
  color: var(--paper);
}

.portfolio .section-header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.portfolio .eyebrow {
  color: rgba(250, 250, 248, 0.4);
}

.portfolio .section-title {
  color: var(--paper);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.project-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #111;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2.5rem;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
  opacity: 0.7;
}

.project-card:hover img {
  transform: scale(1.03);
  opacity: 1;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 2vw, 2rem);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-client {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.project-type {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.5);
}

/* ── 14. PRICING ─────────────────────────────────────────── */
.pricing .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing .section-header .eyebrow {
  margin-bottom: 1rem;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.tab-btn {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 1rem 2rem;
  color: var(--muted);
  position: relative;
  transition: color 0.3s var(--ease);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.tab-btn:hover {
  color: var(--ink);
}

.tab-btn.active {
  color: var(--ink);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.pricing-panel {
  display: none;
}

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

.price-card {
  padding: clamp(2rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  margin-left: -1px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease);
}

.price-card:first-child {
  margin-left: 0;
}

.price-card:hover {
  border-color: var(--muted);
}

.price-card.featured {
  border-color: var(--accent);
  position: relative;
}

.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  background-color: var(--accent);
  color: #fff;
}

.price-name {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-amount .currency {
  font-size: 0.6em;
  vertical-align: super;
  font-family: var(--sans);
  font-weight: 400;
}

.price-period {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.price-ideal {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.price-features {
  flex: 1;
  margin-bottom: 2rem;
}

.price-features li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 6px;
  height: 1px;
  background-color: var(--accent);
}

.price-cta {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.875rem;
  border: 1px solid var(--ink);
  transition: background-color 0.3s var(--ease),
              color 0.3s var(--ease);
}

.price-cta:hover {
  background-color: var(--ink);
  color: var(--paper);
}

.price-card.featured .price-cta {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.price-card.featured .price-cta:hover {
  background-color: var(--accent-hover);
}

.pricing-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 2rem;
}

/* ── 15. ABOUT ───────────────────────────────────────────── */
.about {
  background-color: var(--surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
}

.about-headline .accent-line {
  display: block;
  color: var(--accent);
  font-style: normal;
}

.about-body {
  max-width: 52ch;
}

.about-body p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-body p:last-child {
  margin-bottom: 0;
}

/* ── 16. FAQ ─────────────────────────────────────────────── */
.faq .section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.faq .section-header .eyebrow {
  margin-bottom: 1rem;
}

.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 450;
  gap: 1rem;
  transition: color 0.3s var(--ease);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: '';
  position: absolute;
  background-color: var(--muted);
  transition: transform 0.3s var(--ease);
}

.faq-question .icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question .icon::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-question .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 60ch;
}

/* ── 17. CONTACT ─────────────────────────────────────────── */
.contact {
  background-color: var(--ink);
  color: var(--paper);
}

.contact .section-header {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.contact .eyebrow {
  color: rgba(250, 250, 248, 0.35);
}

.contact .section-title {
  color: var(--paper);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
}

.contact-text p {
  font-size: 1.0625rem;
  color: rgba(250, 250, 248, 0.5);
  line-height: 1.8;
  max-width: 38ch;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-detail span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.3);
}

.contact-detail a {
  font-size: 0.9375rem;
  color: rgba(250, 250, 248, 0.7);
  transition: color 0.3s var(--ease);
}

.contact-detail a:hover {
  color: var(--paper);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.35);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.9375rem;
  padding: 0.75rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(250, 250, 248, 0.15);
  color: var(--paper);
  outline: none;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 250, 248, 0.2);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(250,250,248,0.3)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-group select option {
  background-color: var(--ink);
  color: var(--paper);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  align-self: flex-start;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.875rem 2.5rem;
  background-color: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.form-submit:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

/* ── 18. FOOTER ──────────────────────────────────────────── */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-center {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--muted);
  opacity: 0.6;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
}

.footer-right a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

.footer-right a:hover {
  color: var(--ink);
}

/* ── 19. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: none;
  }

  .pricing-panel.active {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .price-card {
    margin-left: 0;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-cta-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    max-width: 100%;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .project-card {
    aspect-ratio: 16 / 10;
  }

  .project-overlay {
    opacity: 1;
  }

  .project-card img {
    opacity: 0.85;
  }

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

  .process-step:not(:last-child) {
    border-right: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .pricing-tabs {
    flex-wrap: wrap;
  }

  .tab-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
