/* ============================================
   FINAL LAP — Global Styles
   style.css
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --accent: #F5A623;
  --accent-hover: #e09610;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --border: #222222;
  --max-width: 1200px;
  --radius: 8px;
  --radius-btn: 4px;
  --transition: all 0.3s ease;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================================
   CSS Reset
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ============================================
   Scrollbar
   ============================================ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* ============================================
   Selection
   ============================================ */
::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

h1 { font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; font-size: clamp(3.5rem, 9vw, 6.5rem); }
h2 { font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

/* ============================================
   Accent Text
   ============================================ */
.accent {
  color: var(--accent);
}

/* ============================================
   Section Label (small orange text above heading)
   ============================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

/* ============================================
   Underline Accent (orange line below heading)
   ============================================ */
.heading-underline {
  width: 3rem;
  height: 3px;
  background: var(--accent);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.heading-underline.center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(245, 166, 35, 0.55), 0 0 36px rgba(245, 166, 35, 0.2);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================
   Hero Section (shared)
   ============================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.58;
  z-index: 0;
}

/* Slightly more visible hero bg — contact page */
.hero-bg-vivid {
  opacity: 0.42;
}

/* Dark overlay 50% on top of hero image */
.hero-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 0;
  pointer-events: none;
}

.hero-dark .hero-content {
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 5rem;
}

.hero-content .section-label {
  margin-bottom: 1rem;
}

/* Large hero H1 override — consistent across all pages */
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ============================================
   Feature Icon Box
   ============================================ */
.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 48px;
  height: 48px;
  display: block;
  max-width: 100%;
}

/* ============================================
   Checkmark List
   ============================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.check-list li svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================
   Process Steps
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process-step {
  text-align: center;
}

.process-step .step-icon {
  width: 64px;
  height: 64px;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.process-step .step-number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.process-step h4 {
  margin-bottom: 0.5rem;
}

/* ============================================
   Button Group Utility
   ============================================ */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-group-center {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   CTA Banner Section
   ============================================ */
.cta-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

/* ============================================
   Info/Alert Box
   ============================================ */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.info-box svg {
  color: var(--accent);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-box p {
  font-size: 0.9rem;
  margin: 0;
}

.info-box a {
  color: var(--accent);
  font-weight: 600;
}

/* ============================================
   Important Note Banner
   ============================================ */
.note-banner {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.note-banner svg {
  color: var(--accent);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.note-banner p {
  font-size: 0.875rem;
  margin: 0;
}

.note-banner strong {
  color: var(--text-primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

/* ============================================
   Section Dark Background
   ============================================ */
.bg-secondary {
  background: var(--bg-secondary);
}

.bg-tertiary {
  background: var(--bg-tertiary);
}

/* ============================================
   Grid Utilities
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ============================================
   Divider
   ============================================ */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* ============================================
   Fade In Animation
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Image placeholder (before real images added)
   ============================================ */
.img-placeholder {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ============================================
   Hero Watermark (right-side branding)
   ============================================ */
.hero-watermark {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  pointer-events: none;
  z-index: 1;
  display: none;
}
@media (min-width: 900px) {
  .hero-watermark { display: block; }
}
.hero-watermark .wm-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-primary);
  opacity: 0.07;
  letter-spacing: 0.08em;
  line-height: 1.1;
  display: block;
}
.hero-watermark .wm-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.07;
  display: block;
  margin-top: 0.25rem;
}
.hero-watermark .wm-abbr {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--accent);
  opacity: 0.07;
  display: block;
  line-height: 1;
  margin-top: 0.25rem;
}

/* ============================================
   Service Card (image top + icon badge)
   ============================================ */
.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: visible;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.service-card:hover .service-card-img img {
  transform: scale(1.04);
}
.service-card-badge {
  position: absolute;
  top: calc(220px - 20px);
  left: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--bg-primary);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.service-card-badge svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.service-card-body {
  padding: 2.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  margin-bottom: 0.75rem;
}
.service-card-body .dot-list {
  flex: 1;
}

/* ============================================
   Dot List (bullet points with orange dot)
   ============================================ */
.dot-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.dot-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.dot-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   Process Steps (with connecting line)
   ============================================ */
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}
.process-step:hover {
  background: rgba(245, 166, 35, 0.05);
}
.process-step-number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.5rem;
}
.process-step-icon {
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
  background: transparent;
}
.process-step:hover .process-step-icon {
  border-color: var(--accent);
  background: rgba(245, 166, 35, 0.12);
  transform: scale(1.1);
}
.process-step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: var(--transition);
}
.process-step:hover .process-step-icon svg {
  color: var(--accent);
}
.process-step h4 {
  transition: color 0.3s ease;
}
.process-step:hover h4 {
  color: var(--accent);
}

/* ============================================
   Process Compact Grid (HOW IT WORKS horizontal)
   ============================================ */
.process-connect-line {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-compact-grid > div:not(.process-connect-line) {
  position: relative;
  z-index: 1;
}

.process-compact-grid .process-step-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  background: var(--bg-secondary);
  margin-bottom: 1rem;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-compact-grid .process-step-icon svg {
  width: 44px;
  height: 44px;
  color: var(--accent);
}

.process-step-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process-step-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.process-grid-connected {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* ============================================
   Gallery Grid (expandable)
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .process-grid-connected { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  background: var(--bg-tertiary);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
@media (min-width: 768px) {
  .gallery-item img { height: 260px; }
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item.gallery-hidden {
  display: none;
}
.gallery-item.gallery-visible {
  display: block;
  animation: fadeInUp 0.35s ease forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 166, 35, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(245, 166, 35, 0.15);
}
.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
}

/* ============================================
   Lightbox
   ============================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.open {
  display: flex;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  cursor: zoom-out;
}
.lightbox-container {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-container img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  font-family: var(--font-body);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 166, 35, 0.9);
  border: none;
  color: var(--bg-primary);
  font-size: 1.75rem;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  font-weight: 700;
  font-family: var(--font-body);
}
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--accent); }
.lightbox-prev { left: -3.25rem; }
.lightbox-next { right: -3.25rem; }
@media (max-width: 767px) {
  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
  .lightbox-container { max-width: 96vw; }
}
.lightbox-counter {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

/* ============================================
   Services page horizontal card (image left, content right)
   ============================================ */
.service-card-h {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 768px) {
  .service-card-h { grid-template-columns: 44% 1fr; }
}
.service-card-h:hover {
  border-color: var(--accent);
  border-width: 2px;
}
.service-card-h .scard-img {
  height: 240px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius) 0 0 0;
}
@media (min-width: 768px) {
  .service-card-h .scard-img { height: 100%; min-height: 260px; border-radius: var(--radius) 0 0 var(--radius); }
}
.service-card-h .scard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.service-card-h:hover .scard-img img { transform: scale(1.04); }
.service-card-h .scard-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.25rem;
  width: 38px;
  height: 38px;
  background: var(--bg-secondary);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.service-card-h .scard-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.service-card-h .scard-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-h h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 0.6rem; }
.service-card-h .scard-desc { font-size: 0.9rem; margin-bottom: 1rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   Graphics page pricing strip
   ============================================ */
.pricing-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .pricing-strip { grid-template-columns: 1fr 1fr; }
}
.pricing-strip-price {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 7vw, 5rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-strip-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}
.pricing-strip-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.pricing-strip-note {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
}

.pricing-strip-info {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.pricing-strip-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   Statement banner (icon left, text right)
   ============================================ */
.statement-strip {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.statement-strip-icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  flex-shrink: 0;
}
.statement-strip h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.1;
}
@media (min-width: 768px) {
  .statement-strip { align-items: center; }
}

/* ============================================
   How to book strip (horizontal steps + arrows)
   ============================================ */
.book-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .book-strip { grid-template-columns: 1fr auto 1fr auto 1fr 1fr; align-items: center; }
}
.book-arrow {
  color: var(--border);
  font-size: 1.5rem;
  display: none;
}
@media (min-width: 768px) { .book-arrow { display: block; } }
.book-step { text-align: center; }
.book-step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-muted);
  line-height: 1;
  opacity: 0.35;
  display: block;
  margin-bottom: 0.5rem;
}
.book-step-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.book-step-icon svg { width: 20px; height: 20px; color: var(--accent); }

/* ============================================
   Photography CTA (horizontal, bg image)
   ============================================ */
.cta-horizontal {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
.cta-horizontal .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.cta-horizontal .cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ============================================
   Photography Studio — Gallery image wrap
   ============================================ */
.studio-img-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
}

.studio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.studio-img-wrap:hover img {
  transform: scale(1.04);
}

/* ============================================
   Photography Studio — Pricing card wrapper
   ============================================ */
.studio-pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-secondary);
  padding: 2.5rem;
}

.studio-pricing-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.studio-pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0.75rem 0 1.25rem;
}

.studio-pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.studio-pricing-img {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  position: relative;
}

.studio-pricing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

/* ============================================
   Photography Studio — How to book note card
   ============================================ */
.book-note-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg-secondary);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.book-note-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.book-note-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.book-note-text {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-secondary);
}

/* ============================================
   Contact card wrapper
   ============================================ */
.contact-card-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ============================================
   About page space section (text left, 3 images right)
   ============================================ */
.about-space {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-space { grid-template-columns: 280px 1fr; gap: 3.5rem; align-items: center; }
}
.about-space-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.about-space-imgs img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border-radius: var(--radius);
  display: block;
}
@media (min-width: 768px) {
  .about-space-imgs img { height: 260px; }
}

/* ============================================
   About Foundation (no H2, just label + paras)
   ============================================ */
.about-foundation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-foundation { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ============================================
   Start a project split hero
   ============================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 60vh;
}
@media (min-width: 1024px) {
  .hero-split { grid-template-columns: 1fr 1fr; min-height: 70vh; }
}
.hero-split-left {
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  padding: 7rem 3rem 4rem;
  position: relative;
  z-index: 1;
}
.hero-split-right {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}
.hero-split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0.55;
}
.hero-split-right .wm-right {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* ============================================
   Project layout card panels
   ============================================ */
.project-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .project-panels { grid-template-columns: 320px 1fr; gap: 2.5rem; align-items: start; }
}
.project-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

/* ============================================
   Ready-to-start horizontal banner (contact page)
   ============================================ */
.ready-banner {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.ready-banner-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.ready-banner-text { flex: 1; min-width: 200px; }
.ready-banner-text h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: 0.35rem; }
.ready-banner-text p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================
   What We Do columns (no card border — graphics page)
   ============================================ */
.wwd-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .wwd-cols { grid-template-columns: repeat(3, 1fr); } }
.wwd-col { text-align: center; }
.wwd-col svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 1rem; display: block; }
.wwd-col h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); margin-bottom: 0.6rem; }
.wwd-col p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; margin: 0 auto; }

/* ============================================
   About page — subtle section background texture
   ============================================ */
.about-section-bg {
  position: relative;
  overflow: hidden;
}
.about-section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.045;
  z-index: 0;
  pointer-events: none;
}
.about-section-bg > .container {
  position: relative;
  z-index: 1;
}
.about-section-bg-production::before {
  background-image: url('../images/cloth production.webp');
}
.about-section-bg-studio::before {
  background-image: url('../images/studio hero.webp');
}

/* ============================================
   About page — Ohio map + animated pin
   ============================================ */
.ohio-map-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ohio-map-svg {
  width: 200px;
  height: auto;
}

.ohio-outline {
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: rgba(245, 166, 35, 0.06);
}

/* Pulsing rings around Columbus marker */
.ohio-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: ohio-ring-pulse 2.4s ease-out infinite;
}
.ohio-ring-2 {
  animation-delay: 1.2s;
}

@keyframes ohio-ring-pulse {
  0% { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* Map pin shape */
.ohio-pin {
  fill: var(--accent);
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: ohio-pin-drop 2.8s ease-in-out infinite;
}

.ohio-pin-hole {
  fill: var(--bg-primary);
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: ohio-pin-drop 2.8s ease-in-out infinite;
}

@keyframes ohio-pin-drop {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-6px); }
  40% { transform: translateY(-3px); }
  55% { transform: translateY(-5px); }
  70% { transform: translateY(-1px); }
}

/* Location label below map */
.ohio-location-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
}

.ohio-loc-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  animation: ohio-loc-pulse 2.4s ease-in-out infinite;
}

@keyframes ohio-loc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

.ohio-location-label span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   About What We Do 4-col (no cards)
   ============================================ */
.wwd-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .wwd-4 { grid-template-columns: repeat(4, 1fr); } }
.wwd-4-item svg { width: 44px; height: 44px; color: var(--accent); margin: 0 auto 0.875rem; display: block; }
.wwd-4-item h3 { font-size: clamp(1rem, 2vw, 1.25rem); margin-bottom: 0; }
.wwd-4-item .wwd-line {
  width: 2rem;
  height: 2px;
  background: var(--accent);
  margin: 0.6rem auto;
}

/* ============================================
   Feature bar item (icon + title + desc)
   ============================================ */
.feature-bar-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}
.feature-bar-item:last-child { border-right: none; }
.feature-bar-item:hover {
  background: rgba(245, 166, 35, 0.05);
}
.feature-bar-item:hover svg {
  transform: scale(1.1);
}
.feature-bar-item:hover h4 {
  color: var(--accent);
}
.feature-bar-item svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin: 0 auto 0.875rem;
  display: block;
  transition: transform 0.3s ease;
}
.feature-bar-item h4 {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.feature-bar-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   Contact info card wrapper
   ============================================ */
.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

/* ============================================
   CTA with bg image
   ============================================ */
.cta-section-img {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.cta-section-img .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.cta-section-img .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   Checklist with orange tick icon (small)
   ============================================ */
.tick-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tick-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.tick-list li svg {
  color: var(--accent);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* check-list: orange checkmark via pseudo-element (no SVG needed in HTML) */
.check-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5A623' 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: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* ============================================
   Pricing Card Price Display
   ============================================ */
.pricing-price {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-price span {
  font-size: 1.25rem;
  color: var(--text-muted);
}

/* ============================================
   Process Step Number label
   ============================================ */
.process-step-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

/* ============================================
   Clean Slate split section (homepage)
   ============================================ */
.clean-slate-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .clean-slate-split { grid-template-columns: 1fr 1fr; }
}

/* Beige text side */
.clean-slate-text {
  background: #e8e2d6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  overflow: hidden;
}

.cs-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a6f1a;
  display: block;
  margin-bottom: 0.75rem;
}

.cs-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 0.95;
  color: #0a0a0a;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

.cs-desc {
  font-size: 0.95rem;
  color: #4a4540;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #0a0a0a;
  color: #ffffff;
  border: 2px solid #0a0a0a;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  align-self: flex-start;
  font-family: var(--font-body);
}
.cs-btn svg { width: 16px; height: 16px; }
.cs-btn:hover {
  background: transparent;
  color: #0a0a0a;
}

/* Image side */
.clean-slate-img {
  overflow: hidden;
  min-height: 400px;
  position: relative;
}
.clean-slate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.clean-slate-img:hover img { transform: scale(1.03); }

@media (max-width: 767px) {
  .clean-slate-text { padding: 2.5rem 1.25rem; }
  .cs-heading { font-size: clamp(2.2rem, 9vw, 3rem); }
  .clean-slate-img { min-height: 240px; }
}

/* ============================================
   Radio Label (package selection)
   ============================================ */
.radio-label {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.radio-label strong {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}
.radio-label span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ============================================
   Project Steps — HOW THIS WORKS sidebar
   ============================================ */
.project-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}

.project-step:first-child {
  padding-top: 0;
}

.project-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Staggered scroll-reveal for each step */
.project-steps .project-step:nth-child(1) { transition-delay: 0s; }
.project-steps .project-step:nth-child(2) { transition-delay: 0.1s; }
.project-steps .project-step:nth-child(3) { transition-delay: 0.2s; }
.project-steps .project-step:nth-child(4) { transition-delay: 0.3s; }

.project-step-icon-wrap {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: var(--transition);
}

.project-step-icon-wrap svg {
  width: 16px;
  height: 16px;
}

.project-step:hover .project-step-icon-wrap {
  border-color: var(--accent);
  background: rgba(245, 166, 35, 0.1);
  transform: scale(1.12);
}

.project-step-body h4 {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.project-step-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   Button — full width block
   ============================================ */
.btn-block {
  width: 100%;
  display: flex !important;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.9rem 1.25rem;
  white-space: normal;
  text-align: center;
  box-sizing: border-box;
  min-width: 0;
}

