/* ═══════════════════════════════════════════════════════
   TYRELL BAKER — PORTFOLIO
   Design: Dark editorial-tech. Warm amber accents.
   Fonts: Syne (display) + DM Sans (body)
═══════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --bg:         #0c0c0e;
  --bg-2:       #111115;
  --bg-3:       #161619;
  --surface:    rgba(255,255,255,0.04);
  --surface-2:  rgba(255,255,255,0.07);
  --border:     rgba(255,255,255,0.08);
  --border-2:   rgba(255,255,255,0.12);

  --amber:      #e8a23a;
  --amber-light:#f5c76e;
  --amber-dim:  rgba(232,162,58,0.15);

  --text:       #f0ede8;
  --text-2:     rgba(240,237,232,0.6);
  --text-3:     rgba(240,237,232,0.35);

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --ease-out:   cubic-bezier(0.16,1,0.3,1);
  --ease-in-out:cubic-bezier(0.65,0,0.35,1);

  --nav-h: 72px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; font-family: inherit; border: none; background: none; }

/* ─── Custom Cursor ─── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  top: 0; left: 0;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(232,162,58,0.5);
  top: 0; left: 0;
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--amber);
}

/* ─── Utility ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--amber);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* ─── Reveal Animations (initial state) ─── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}
.reveal-line {
  display: inline-block;
  overflow: hidden;
}
.reveal-line span {
  display: block;
  transform: translateY(100%);
}
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, border-color 0.4s;
}
.nav.scrolled {
  background: rgba(12,12,14,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-right: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--amber);
  color: #0c0c0e;
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  box-shadow: 0 0 28px rgba(232,162,58,0.4);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.6;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,162,58,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,80,200,0.08) 0%, transparent 70%);
  bottom: 50px; left: -80px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,162,58,0.06) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat 10s ease-in-out infinite 3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: 80px;
  padding-bottom: 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 36px;
  background: var(--surface);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.italic-word em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--amber);
  color: #0c0c0e;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.btn-primary svg {
  width: 18px; height: 18px;
  stroke: #0c0c0e;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s var(--ease-out);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(232,162,58,0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  font-weight: 500;
  font-size: 15px;
  border-radius: 100px;
  background: var(--surface);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--text);
  background: var(--amber-dim);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── Marquee Strip ─── */
.marquee-section {
  background: var(--amber);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.marquee-track { display: flex; }
.marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0c0c0e;
}
.marquee-content .sep { color: rgba(12,12,14,0.4); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Services / Bento Grid ─── */
.services {
  padding: 120px 0;
  background: var(--bg);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,162,58,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
  transform: translateY(-4px);
}
.bento-card:hover::before { opacity: 1; }
.bento-large {
  grid-column: span 2;
}
.bento-wide {
  grid-column: span 2;
}
.bento-glow {
  background: linear-gradient(135deg, rgba(232,162,58,0.06) 0%, var(--surface) 60%);
  border-color: rgba(232,162,58,0.15);
}
.bento-accent {
  background: var(--amber);
  border-color: var(--amber);
  color: #0c0c0e;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-accent:hover {
  background: var(--amber-light);
  transform: translateY(-4px);
}
.bento-dark {
  background: var(--bg-3);
  border-color: var(--border-2);
}
.bento-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.bento-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
}
.bento-stat {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.bento-accent p { font-size: 14px; font-weight: 500; color: rgba(12,12,14,0.7); }
.bento-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--amber-dim);
  border: 1px solid rgba(232,162,58,0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 20px;
}
.bento-dark blockquote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  opacity: 0.85;
}
.bento-dark .bento-tag { margin-top: 24px; }

/* ─── Showcase Sections ─── */
.showcase {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.showcase-alt { background: var(--bg-2); }
.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.showcase-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.showcase-copy p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 28px;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.feat-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ─── Browser Mockup ─── */
.mock-browser {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
  background: #1a1a1f;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transition: transform 0.5s var(--ease-out);
}
.mock-browser:hover { transform: scale(1.02); }
.mock-bar {
  background: #2a2a30;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.mock-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #3a3a40;
}
.mock-bar span:nth-child(1) { background: #ff5f57; }
.mock-bar span:nth-child(2) { background: #febc2e; }
.mock-bar span:nth-child(3) { background: #28c840; }
.mock-url {
  margin-left: 12px;
  flex: 1;
  background: #1e1e24;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--text-3);
  max-width: 200px;
}
.mock-screen { overflow: hidden; }

/* ─── Restaurant Screen ─── */
.restaurant-screen { background: #1a1209; }
.rest-hero {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #2a1a08, #3d2510);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.rest-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(180,120,40,0.3) 0%, transparent 60%),
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(200,150,60,0.05)' stroke-width='1'/%3E%3C/svg%3E");
}
.rest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,8,4,0.8));
}
.rest-content {
  position: relative; z-index: 1;
  padding: 20px;
}
.rest-tag { font-size: 9px; letter-spacing: 0.15em; color: rgba(200,150,80,0.7); text-transform: uppercase; margin-bottom: 4px; }
.rest-content h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: 0.1em; color: #e8c87a; }
.rest-sub { font-size: 10px; color: rgba(240,220,180,0.5); margin-top: 2px; }
.rest-btn {
  margin-top: 10px;
  padding: 6px 14px;
  background: #c8a055;
  color: #1a1209;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: default;
}
.rest-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  padding: 12px;
  background: #120e07;
}
.rest-card { text-align: center; }
.rc-img {
  height: 65px;
  border-radius: 8px;
  background: #2a1e0d;
  margin-bottom: 6px;
}
.rc-1 { background: linear-gradient(135deg, #3d2a10, #5a3c18); }
.rc-2 { background: linear-gradient(135deg, #1a1a2e, #2d2050); }
.rc-3 { background: linear-gradient(135deg, #2e1a1a, #4a2828); }
.rest-card p { font-size: 8px; color: rgba(200,170,120,0.6); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── Agency Screen ─── */
.agency-screen { background: #0a0a0a; padding: 0; }
.agency-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.agency-hero {
  padding: 24px 16px 16px;
}
.agency-hero h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.agency-hero em { font-style: italic; color: #e8a23a; }
.agency-hero p { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 6px; letter-spacing: 0.1em; text-transform: uppercase; }
.agency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 12px 16px;
}
.ag { height: 70px; border-radius: 8px; }
.ag-1 { background: linear-gradient(135deg, #e8a23a, #c87830); }
.ag-2 { background: linear-gradient(135deg, #2a2a3e, #1a1a2a); }
.ag-3 { background: linear-gradient(135deg, #3a2a4a, #2a1a3a); }
.ag-4 { background: linear-gradient(135deg, #1a3a2a, #0a2018); }

/* ─── E-commerce Screen ─── */
.ecom-screen { background: #080808; padding: 0; }
.ecom-header {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ecom-hero-text {
  padding: 12px 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ecom-hero-text strong { color: var(--text); }
.ecom-products {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  padding: 12px;
}
.ep-card { }
.ep-img {
  height: 90px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.ep-1 { background: linear-gradient(160deg, #1a1a1a, #2d2d2d); }
.ep-2 { background: linear-gradient(160deg, #0f0f1a, #1a1a2e); }
.ep-3 { background: linear-gradient(160deg, #1a0f0f, #2e1a1a); }
.ep-card p { font-size: 9px; color: rgba(255,255,255,0.6); margin-bottom: 2px; }
.ep-card span { font-size: 10px; font-weight: 600; color: var(--amber); }

/* ─── Tech Screen ─── */
.tech-screen { background: #050510; padding: 0; }
.tech-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(100,100,255,0.1);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tech-logo-dot { color: #8b6fff; }
.tech-hero {
  padding: 20px 16px;
}
.tech-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(139,111,255,0.15);
  border: 1px solid rgba(139,111,255,0.3);
  border-radius: 100px;
  font-size: 8px;
  color: #b39fff;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.tech-hero h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}
.tech-hero p { font-size: 9px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.tech-btns { display: flex; gap: 8px; }
.tech-cta {
  padding: 5px 14px;
  background: #8b6fff;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  border-radius: 100px;
  cursor: default;
}
.tech-ghost {
  padding: 5px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 9px;
  border-radius: 100px;
  cursor: default;
}
.tech-dash {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 12px 16px;
  height: 60px;
}
.td-bar {
  flex: 1;
  background: rgba(139,111,255,0.3);
  border-radius: 4px 4px 0 0;
  height: 30px;
}
.td-b2 { height: 45px; background: rgba(139,111,255,0.5); }
.td-b3 { height: 20px; }
.td-b4 { height: 50px; background: #8b6fff; }
.td-b5 { height: 35px; background: rgba(139,111,255,0.4); }

/* ─── Photography Screen ─── */
.photo-screen { background: #0a0a0a; padding: 0; }
.photo-nav {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 80px);
  gap: 4px;
  padding: 8px;
}
.pg { border-radius: 6px; background: #1a1a1a; }
.pg-1 { background: linear-gradient(135deg, #1a0f0a, #3a1f10); }
.pg-2 { background: linear-gradient(160deg, #0a1020, #1a2040); grid-row: span 2; }
.pg-3 { background: linear-gradient(135deg, #0f1a0a, #1a3010); }
.pg-4 { background: linear-gradient(160deg, #1a0a10, #3a1020); }
.pg-5 { background: linear-gradient(135deg, #0a1520, #152035); }
.pg-6 { background: linear-gradient(135deg, #1a150a, #302510); }

/* ─── Local Service Screen ─── */
.local-screen { background: #f8f7f4; color: #1a1a1a; padding: 0; }
.local-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.local-header span { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: #1a1a1a; }
.local-book-btn {
  padding: 5px 12px;
  background: #1a1a1a;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  border-radius: 100px;
  cursor: default;
}
.local-hero {
  padding: 24px 16px 16px;
  background: linear-gradient(135deg, #1a2a1a, #0a1810);
  color: #fff;
}
.local-hero h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.local-hero p { font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }
.local-features {
  display: flex;
  gap: 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.lf {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.lf:last-child { border-right: none; }
.lf span { display: block; font-size: 13px; margin-bottom: 2px; }
.lf p { font-size: 8px; color: #666; line-height: 1.3; }

/* ─── Process Section ─── */
.process {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.process-step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.process-step:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
  transform: translateY(-4px);
}
.process-connector {
  width: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.process-connector::before {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--border-2), transparent);
}
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── Contact Section ─── */
.contact {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,162,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-copy .section-title { margin-bottom: 16px; }
.contact-copy > p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--amber-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-card:hover {
  border-color: rgba(232,162,58,0.35);
  background: var(--surface-2);
  transform: translateX(6px);
}
.contact-card:hover::after { opacity: 1; }
.cc-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, background 0.3s;
}
.contact-card:hover .cc-icon {
  background: var(--amber-dim);
  border-color: rgba(232,162,58,0.3);
}
.cc-icon svg { width: 22px; height: 22px; }
.cc-text {
  flex: 1;
  position: relative;
  z-index: 1;
}
.cc-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 3px;
}
.cc-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.cc-arrow {
  font-size: 18px;
  color: var(--text-3);
  position: relative;
  z-index: 1;
  transition: color 0.3s, transform 0.3s;
}
.contact-card:hover .cc-arrow {
  color: var(--amber);
  transform: translateX(4px);
}

/* ─── Footer ─── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-3);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-3);
}
.footer-made {
  font-style: italic;
  color: var(--amber) !important;
  opacity: 0.6;
}

/* ─── Magnetic Button ─── */
.mag-btn { display: inline-flex; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; }
  .bento-wide  { grid-column: span 2; }

  .showcase-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .showcase-alt .showcase-copy { order: -1; }

  .process-steps { flex-direction: column; }
  .process-connector { width: auto; height: 20px; }
  .process-connector::before {
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, var(--border-2), transparent);
  }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

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

  .hero-title { font-size: clamp(40px, 10vw, 68px); }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }

  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  .hero-content { padding: 60px 20px 80px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .services { padding: 80px 0; }
  .process { padding: 80px 0; }
  .contact { padding: 80px 0; }
}
