/* ============================================================
   Polish Branding LLC — style.css
   Theme: Luxury Editorial — Deep Purple + Sovereign Gold
   https://apolishbrand.com
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0D0812;       /* near-black with purple tint */
  --surface:   #130F1C;       /* dark purple surface */
  --surface2:  #1C1628;       /* lighter purple surface */
  --surface3:  #241E33;       /* card surface */
  --border:    #2E2540;       /* subtle purple border */
  --purple:    #6B21A8;       /* core brand purple */
  --purple-md: #7C3AED;       /* mid purple */
  --purple-lt: #A855F7;       /* light purple for accents */
  --gold:      #F0B429;       /* sovereign gold */
  --gold-lt:   #FCD34D;       /* light gold */
  --gold-dim:  rgba(240,180,41,0.15);
  --white:     #FFFFFF;
  --off-white: #EDE8F5;       /* purple-tinted off white */
  --muted:     #8B7BA8;       /* muted purple-grey */
  --text:      #D4C8E8;       /* body text — warm purple-white */
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 52px;
  background: rgba(13,8,18,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; line-height: 0;
}
.nav-logo-img {
  height: 28px; width: auto;
  display: block;
  /* On dark bg, the purple logo pops. Add a subtle gold glow on hover */
  transition: filter 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 8px rgba(240,180,41,0.5));
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bg);
  background: var(--gold); padding: 12px 28px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  font-weight: 400;
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 300;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--off-white);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 250;
  background: rgba(13,8,18,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 10vw, 3.2rem);
  font-weight: 600; color: var(--off-white);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  width: 75%; text-align: center;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:active { color: var(--gold); }
.mobile-nav .mob-cta {
  margin-top: 28px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg) !important; background: var(--gold);
  padding: 16px 40px; border-bottom: none !important;
  width: auto !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 52px 88px;
  position: relative; overflow: hidden;
}

/* Pushes all hero content below the fixed nav (72px tall + 28px buffer) */
.hero-spacer {
  flex-shrink: 0;
  height: 100px;
}

/* Diagonal gradient background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(107,33,168,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(107,33,168,0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(240,180,41,0.06) 0%, transparent 40%);
}

/* Subtle grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,180,41,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,180,41,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* Gold orb */
.hero-orb {
  position: absolute; top: -150px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,33,168,0.35) 0%, transparent 60%);
  border-radius: 50%;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb2 {
  position: absolute; bottom: -100px; left: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,180,41,0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: orbFloat 10s ease-in-out 2s infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* Decorative vertical line */
.hero-line {
  position: absolute; top: 0; left: 52px;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.15;
}

.hero-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
  opacity: 0; animation: slideUp 0.8s ease 0.3s forwards;
  display: flex; align-items: center; gap: 16px;
  position: relative;
}
.hero-tag::before {
  content: ''; display: block;
  width: 36px; height: 1px; background: var(--gold);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 11vw, 12rem);
  font-weight: 700; line-height: 0.88;
  letter-spacing: -0.02em;
  opacity: 0; animation: slideUp 1s ease 0.5s forwards;
  position: relative;
}
.hero-h1 .line1 { color: var(--off-white); }
.hero-h1 .line2 { color: var(--gold); font-style: italic; }
.hero-h1 .line3 { color: var(--purple-lt); }

.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 52px;
  opacity: 0; animation: slideUp 0.8s ease 0.9s forwards;
  position: relative;
}
.hero-desc {
  max-width: 420px;
  font-size: 1rem; line-height: 1.8;
  color: var(--muted);
}
.hero-desc strong { color: var(--off-white); font-weight: 400; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }

.btn-main {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 18px 44px; text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block; font-weight: 400;
}
.btn-main:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-outline {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white); border: 1px solid var(--border);
  padding: 18px 44px; text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-hint span {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted);
}
.scroll-arrow {
  width: 1px; height: 44px; background: var(--border);
  position: relative; overflow: hidden;
}
.scroll-arrow::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { top: -100%; } 100% { top: 200%; } }

/* ── TICKER ── */
.ticker {
  background: var(--purple);
  padding: 13px 0; overflow: hidden;
  border-top: 1px solid rgba(240,180,41,0.2);
  border-bottom: 1px solid rgba(240,180,41,0.2);
}
.ticker-track {
  display: flex;
  animation: tickerAnim 22s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 28px;
  padding: 0 28px; white-space: nowrap;
}
.ticker-item span {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-lt);
}
.ticker-sep {
  width: 4px; height: 4px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0; opacity: 0.6;
}
@keyframes tickerAnim {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SHARED SECTION STYLES ── */
.section-wrap { padding: 120px 52px; }

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 48px;
}
.section-label::after {
  content: ''; display: block; flex: 1;
  max-width: 72px; height: 1px; background: var(--border);
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.01em; color: var(--white);
}
.section-h2 em { font-style: italic; color: var(--gold); }

/* ── ABOUT ── */
.about { background: var(--surface); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-body {
  font-size: 1.05rem; line-height: 1.9;
  color: var(--muted); margin-top: 32px;
}
.about-body p + p { margin-top: 18px; }
.about-body strong { color: var(--off-white); font-weight: 400; }

.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; margin-top: 52px;
}
.stat-box {
  background: var(--surface2);
  padding: 28px 20px;
  border-top: 2px solid var(--gold);
}
.stat-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-box .lbl {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-top: 6px;
}

/* About visual panel */
.about-visual {
  position: relative;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; min-height: 480px;
}
.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(107,33,168,0.4), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(240,180,41,0.08), transparent 50%);
}
/* Decorative corner brackets */
.about-visual::after {
  content: '';
  position: absolute; inset: 20px;
  border: 1px solid rgba(240,180,41,0.1);
  pointer-events: none;
}
.about-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16rem; font-weight: 700;
  color: rgba(107,33,168,0.12);
  line-height: 1; user-select: none;
  letter-spacing: -0.05em;
  position: relative;
}
.about-badge {
  position: absolute; bottom: 28px; right: 28px;
  border: 1px solid rgba(240,180,41,0.3); padding: 18px 22px;
  background: rgba(13,8,18,0.85);
  backdrop-filter: blur(8px);
}
.about-badge .b-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.about-badge .b-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--white); margin-top: 2px;
}

/* Purple accent tag top-left of visual */
.about-tag {
  position: absolute; top: 28px; left: 28px;
  background: var(--purple);
  padding: 8px 16px;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-lt);
}

/* ── SERVICES ── */
.services { background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
}
.svc-card {
  background: var(--surface);
  padding: 44px 34px;
  position: relative; overflow: hidden;
  transition: background 0.35s ease;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(180deg, rgba(107,33,168,0.25) 0%, transparent 100%);
  transition: height 0.4s ease;
}
.svc-card::after {
  content: ''; position: absolute;
  left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.svc-card:hover { background: var(--surface2); }
.svc-card:hover::before { height: 100%; }
.svc-card:hover::after { width: 100%; }
.svc-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.22em;
  color: var(--gold); margin-bottom: 20px; opacity: 0.8;
}
.svc-icon { font-size: 1.6rem; margin-bottom: 18px; display: block; }
.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px; line-height: 1.2;
}
.svc-desc { font-size: 0.9rem; line-height: 1.75; color: var(--muted); }

/* ── PROCESS ── */
.process { background: var(--surface); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 56px;
}
.proc-step {
  padding: 44px 32px 44px 0;
  border-right: 1px solid var(--border);
  position: relative;
}
.proc-step:last-child { border-right: none; padding-right: 0; }
.proc-step + .proc-step { padding-left: 32px; }
.proc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 700;
  color: rgba(107,33,168,0.2); line-height: 1;
  margin-bottom: 18px;
  -webkit-text-stroke: 1px rgba(107,33,168,0.4);
}
.proc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.proc-title span { color: var(--gold); font-style: italic; }
.proc-desc { font-size: 0.88rem; line-height: 1.75; color: var(--muted); }
.proc-connector {
  position: absolute; top: 74px; right: -1px;
  width: 10px; height: 10px;
  border: 2px solid var(--gold); border-radius: 50%;
  background: var(--surface);
  transform: translateX(50%);
}
.proc-step:last-child .proc-connector { display: none; }

/* ── WORK ── */
.work { background: var(--bg); }
.work-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 340px 280px;
  gap: 3px;
}
.work-card {
  position: relative; overflow: hidden;
  background: var(--surface);
}
.work-card:first-child { grid-row: span 2; }
.work-card-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 32px;
}
.work-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,8,18,0.95) 0%, rgba(13,8,18,0.3) 55%, transparent 100%);
  z-index: 1;
}
.work-card-letter {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem; font-weight: 700;
  color: rgba(107,33,168,0.08);
  user-select: none; letter-spacing: -0.05em;
  transition: transform 0.6s ease, color 0.4s ease;
}
.work-card:hover .work-card-letter {
  transform: scale(1.06);
  color: rgba(240,180,41,0.07);
}
/* Purple overlay on hover */
.work-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(107,33,168,0.15), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.work-card:hover::after { opacity: 1; }
.work-card-content { position: relative; z-index: 2; }
.work-cat {
  font-family: 'DM Mono', monospace;
  font-size: 0.56rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.work-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--white); line-height: 1.1;
}
.work-card:nth-child(2) .work-title,
.work-card:nth-child(3) .work-title { font-size: 1.5rem; }
.work-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.work-card:hover .work-arrow {
  opacity: 1; transform: translateY(0); color: var(--gold);
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--purple);
  padding: 96px 52px;
  text-align: center;
  position: relative; overflow: hidden;
}
.testimonial::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(240,180,41,0.1), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(13,8,18,0.4), transparent 50%);
}
.test-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; font-weight: 700;
  color: rgba(240,180,41,0.2); line-height: 0.5;
  margin-bottom: 24px; position: relative;
}
.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600; font-style: italic;
  color: var(--white); line-height: 1.4;
  max-width: 800px; margin: 0 auto 32px;
  position: relative;
}
.test-attr {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-lt);
  opacity: 0.7; position: relative;
}

/* ── CONTACT ── */
.contact { background: var(--surface); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: start;
}
.contact-tagline {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--muted); margin-top: 28px; max-width: 380px;
}
.contact-info { margin-top: 48px; }
.info-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.info-item:first-child { border-top: 1px solid var(--border); }
.info-key {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  min-width: 80px; padding-top: 2px;
}
.info-val { font-size: 0.92rem; color: var(--off-white); }
.info-val a { color: var(--off-white); text-decoration: none; transition: color 0.25s; }
.info-val a:hover { color: var(--gold); }
.info-val address { font-style: normal; line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; }
.field-group {
  border-bottom: 1px solid var(--border);
  padding: 4px 0 0;
}
.field-group:first-child { border-top: 1px solid var(--border); }
.field-group label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.56rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  padding-top: 16px;
}
.field-group input,
.field-group textarea {
  display: block; width: 100%;
  background: transparent; border: none; outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem; font-weight: 300;
  color: var(--white);
  padding: 8px 0 16px; resize: none;
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--border); }
.form-footer {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 36px;
}
.form-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.56rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
}
.form-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  border: none; padding: 18px 44px;
  cursor: pointer; font-weight: 400;
  transition: background 0.25s, transform 0.2s;
}
.form-btn:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 44px 52px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 40px;
}
.foot-logo {
  display: flex; align-items: center;
}
.foot-logo-img {
  height: 22px; width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.25s;
}
.foot-logo:hover .foot-logo-img { opacity: 1; }
.foot-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  text-align: center; line-height: 1.8;
}
.foot-links {
  display: flex; gap: 24px; justify-content: flex-end;
}
.foot-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.25s;
}
.foot-links a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── TABLET (max-width: 1024px) ── */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  .hero { padding: 0 32px 80px; }
  .section-wrap { padding: 96px 32px; }
  .about-inner { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .proc-step:nth-child(2) { border-right: none; }
  .proc-step:nth-child(3) { border-right: 1px solid var(--border); }
  .proc-step:nth-child(3),
  .proc-step:nth-child(4) { border-top: 1px solid var(--border); padding-top: 36px; }
  .proc-connector { display: none; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px; }
  .work-card:first-child { grid-row: span 2; }
  footer { padding: 40px 32px; }
}

/* ── MOBILE (max-width: 680px) ── */
@media (max-width: 680px) {
  nav { padding: 18px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero { padding: 0 20px 72px; min-height: 100svh; }
  .hero-spacer { height: 72px; }
  .hero-line { left: 20px; }
  .hero-tag { font-size: 0.55rem; margin-bottom: 18px; }
  .hero-h1 { font-size: clamp(3.6rem, 17vw, 5.5rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; margin-top: 32px; }
  .hero-desc { font-size: 0.95rem; max-width: 100%; }
  .hero-actions { align-items: stretch; width: 100%; gap: 12px; }
  .btn-main, .btn-outline { text-align: center; padding: 18px 24px; width: 100%; }
  .scroll-hint { display: none; }

  .section-wrap { padding: 64px 20px; }
  .section-label { margin-bottom: 28px; }

  .about-inner { grid-template-columns: 1fr; gap: 0; }
  .about-visual { display: none; }
  .about-body { font-size: 0.97rem; margin-top: 22px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 32px; }
  .stat-box { padding: 18px 12px; }
  .stat-box .num { font-size: 2rem; }
  .stat-box .lbl { font-size: 0.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 30px 22px; }

  .process-steps { grid-template-columns: 1fr; margin-top: 36px; }
  .proc-step {
    border-right: none !important; border-top: none !important;
    border-bottom: 1px solid var(--border);
    padding: 26px 0 !important;
  }
  .proc-step:last-child { border-bottom: none; }
  .proc-connector { display: none; }
  .proc-num { font-size: 3rem; margin-bottom: 10px; }

  .work-grid { grid-template-columns: 1fr; grid-template-rows: none; gap: 3px; }
  .work-card { min-height: 240px; position: relative; }
  .work-card:first-child { grid-row: span 1; }
  .work-card-inner { padding: 22px; }
  .work-title { font-size: 1.5rem !important; }
  .work-arrow { opacity: 1; transform: none; color: var(--gold); }

  .testimonial { padding: 56px 20px; }
  .test-mark { font-size: 4.5rem; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-tagline { max-width: 100%; }
  .form-footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .form-btn { width: 100%; text-align: center; padding: 18px 24px; }
  .form-note { text-align: center; }

  footer { grid-template-columns: 1fr; text-align: center; padding: 32px 20px; gap: 18px; }
  .foot-links { justify-content: center; flex-wrap: wrap; gap: 18px; }
}

/* ── VERY SMALL PHONES ── */
@media (max-width: 380px) {
  .hero-h1 { font-size: 3rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stats .stat-box:last-child { grid-column: span 2; }
}