/* ========================================================
   South FL Media — styles.css
   Bold modern + Miami sunset accents
   ======================================================== */

:root {
  --bg: #07090f;
  --bg-2: #0c1120;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f6fa;
  --text-dim: #a4adc2;
  --text-muted: #6b7493;

  /* Miami sunset gradient */
  --sunset-1: #ff6b35;   /* orange */
  --sunset-2: #ff3d7f;   /* pink */
  --sunset-3: #9b51e0;   /* purple */
  --teal: #00d4ff;       /* ocean accent */

  --grad-sunset: linear-gradient(135deg, var(--sunset-1) 0%, var(--sunset-2) 50%, var(--sunset-3) 100%);
  --grad-sunset-soft: linear-gradient(135deg, rgba(255,107,53,.18) 0%, rgba(255,61,127,.16) 50%, rgba(155,81,224,.18) 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow: 0 8px 32px rgba(0,0,0,.4);
  --shadow-lg: 0 24px 80px rgba(0,0,0,.5);
  --shadow-glow: 0 12px 60px rgba(255, 61, 127, 0.35);

  --max-w: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

/* ---------- container ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- background decoration ---------- */
.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--sunset-1);
  top: -200px; left: -150px;
  animation: float1 22s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: var(--sunset-3);
  top: 20%; right: -150px;
  animation: float2 28s ease-in-out infinite;
}
.orb-3 {
  width: 450px; height: 450px;
  background: var(--sunset-2);
  bottom: -150px; left: 30%;
  opacity: 0.4;
  animation: float3 32s ease-in-out infinite;
}
@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(80px,60px) scale(1.1); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-60px,40px) scale(0.95); }
}
@keyframes float3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-60px) scale(1.05); }
}

main, .nav, .footer { position: relative; z-index: 1; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding .3s ease, background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(7, 9, 15, 0.75);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-sunset);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,61,127,.3);
}
.logo-text { font-size: 16px; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}
.nav-links a {
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--grad-sunset);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { font-size: 14px; padding: 10px 18px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 24px var(--gutter) 32px;
  background: rgba(7,9,15,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: 0; margin-top: 8px; text-align: center; }
.mobile-menu.open { display: flex; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-sunset);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,61,127,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255,61,127,.5);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(80px, 12vw, 140px);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: 980px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
}

.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.grad-text {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: shift 8s ease infinite;
}
@keyframes shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-meta span { color: var(--text-muted); font-size: 14px; }

/* ---------- trust strip ---------- */
.trust {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
.trust-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
}
.trust-row span:nth-child(odd):not([aria-hidden]) { /* labels, no styling */ }
.trust-row [aria-hidden] { color: var(--text-muted); }

/* ---------- section ---------- */
.section {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent);
}
.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 16px 0 20px;
}
.section-head p {
  color: var(--text-dim);
  font-size: clamp(16px, 1.5vw, 18px);
}
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sunset-2);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 61, 127, 0.1);
  border: 1px solid rgba(255, 61, 127, 0.25);
}

/* ---------- promise / guarantee ---------- */
.promise { padding-top: clamp(80px, 10vw, 110px); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.promise-card {
  position: relative;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 61, 127, 0.12), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.promise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-sunset);
}
.promise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 61, 127, 0.4);
  box-shadow: 0 24px 60px rgba(255, 61, 127, 0.18);
}

.promise-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 61, 127, 0.12);
  border: 1px solid rgba(255, 61, 127, 0.3);
  color: var(--sunset-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.promise-badge svg { width: 16px; height: 16px; }

.promise-card h3 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 12px;
}
.promise-lead {
  font-size: 18px;
  font-weight: 600;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.promise-card > p:not(.promise-lead) {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.promise-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.promise-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.promise-points li::before {
  content: '';
  flex: 0 0 auto;
  width: 18px; height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background:
    var(--grad-sunset)
    no-repeat center / 10px 10px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.promise-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.promise-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- featured / flagship services ---------- */
.featured-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 56px;
}
.featured-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,107,53,0.08), rgba(155,81,224,0.08)),
    var(--bg-card);
  border: 1px solid rgba(255, 61, 127, 0.25);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.featured-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-sunset);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(255, 61, 127, 0.22);
}
.featured-card:hover::after { opacity: 1; }

.featured-tag {
  position: absolute;
  top: 18px; right: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad-sunset);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.featured-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.featured-card > p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.featured-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.featured-points li {
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.featured-points li::before {
  content: '→';
  color: var(--sunset-2);
  font-weight: 700;
}

.services-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 32px;
  max-width: 600px;
}
.services-divider::before,
.services-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.services-divider span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-sunset-soft);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }

.card-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--grad-sunset);
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255,61,127,.25);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 15px; line-height: 1.6; }

/* ---------- process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.process li {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
}
.step-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.process h3 { font-size: 20px; margin-bottom: 8px; }
.process p { color: var(--text-dim); font-size: 15px; }

/* ---------- work / portfolio ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.work-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.work-thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  overflow: hidden;
  background: #0c1120;
}
.work-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
  transition: transform .5s ease;
}
.work-card:hover .work-thumb img {
  transform: scale(1.04);
}
.work-thumb::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  z-index: 0;
  pointer-events: none;
}
.work-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.work-meta { padding: 24px; }
.work-meta h3 { font-size: 20px; margin-bottom: 6px; }
.work-meta p { color: var(--text-dim); font-size: 14px; }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { font-size: clamp(32px, 5vw, 56px); margin: 16px 0 24px; }
.about-text .lead { font-size: 19px; color: var(--text); margin-bottom: 18px; }
.about-text p { color: var(--text-dim); margin-bottom: 18px; font-size: 16px; }
.about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.about-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.about-card-row:last-child { border-bottom: 0; }
.about-card-row span { color: var(--text-muted); }
.about-card-row strong { font-weight: 600; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact h2 { font-size: clamp(32px, 5vw, 52px); margin: 16px 0 24px; }
.contact .lead { color: var(--text-dim); font-size: 17px; margin-bottom: 32px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.contact-list a {
  font-size: 17px;
  font-weight: 500;
  transition: color .2s;
}
.contact-list a:hover { color: var(--sunset-2); }

.contact-form {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-sunset-soft);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.contact-form > * { position: relative; z-index: 1; }
.hp { position: absolute; left: -9999px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}
.field .opt { color: var(--text-muted); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color .2s, background .2s;
  font-size: 15px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sunset-2);
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 3px rgba(255, 61, 127, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a4adc2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-foot {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- footer ---------- */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.4);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-tag {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-cols a {
  display: block;
  padding: 6px 0;
  color: var(--text-dim);
  font-size: 14px;
  transition: color .2s;
}
.footer-cols a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.built { font-weight: 500; }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb { animation: none; }
  .grad-text { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .card, .process li { padding: 24px; }
  .hero-meta { gap: 24px; }
  .hero-meta div { flex: 1 1 40%; }
}
