/* ============================================
   Cosuniq ? Creative professional collage
   White + Orange ? Logo motifs (spark, circle, AI)
   ============================================ */

:root {
  --brand: #ff6a00;
  --brand-soft: #ff8533;
  --brand-dim: rgba(255, 106, 0, 0.12);
  --cream: #fff7f0;
  --cream-2: #ffe8d6;
  --text: #1c1c1c;
  --muted: #5f5f5f;
  --line: #f0e2d6;
  --white: #ffffff;
  --radius: 1.5rem;
  --radius-lg: 2rem;
  --max: 1160px;
  --nav-h: 74px;
  --font: "Lato", "Helvetica Neue", Arial, sans-serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button {
  cursor: none;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---------- Logo spark motif ---------- */
.spark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--brand);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  flex-shrink: 0;
}

.spark--sm {
  width: 10px;
  height: 10px;
}

.spark--lg {
  width: 28px;
  height: 28px;
}

.spark--inline {
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-right: 0.35rem;
}

.spark--float {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 28px;
  height: 28px;
  animation: twinkle 2.4s ease-in-out infinite;
  z-index: 3;
}

.spark-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.spark-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

/* ---------- Cursor / progress ---------- */
.cursor,
.cursor-dot {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
}

.cursor {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--brand);
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.25s;
}

.cursor.is-hover {
  transform: translate(-50%, -50%) scale(1.5);
  background: var(--brand-dim);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  transform: translate(-50%, -50%);
}

body.has-cursor .cursor,
body.has-cursor .cursor-dot {
  opacity: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--brand);
  z-index: 200;
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-h);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid var(--brand);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-text span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--brand);
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 0.65rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

.mobile-nav a.active,
.mobile-nav a:hover {
  color: var(--brand);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 12px 28px -12px rgba(255, 106, 0, 0.55);
}

.btn-primary:hover {
  background: var(--brand-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}

.btn-ghost:hover {
  background: var(--brand-dim);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* ---------- Bands ---------- */
.band {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.band--tight {
  padding: 3.5rem 0;
}

.band--white {
  background: var(--white);
}

.band--cream {
  background: var(--cream);
}

.section-intro {
  max-width: 34rem;
  margin-bottom: 2.5rem;
}

.section-intro h2,
.slider-head h2,
.hero-creative h1,
.path-card h3,
.svc h3,
.process-card h3,
.work-slide__meta h3,
.bento-caption h3,
.result strong,
.quote-card p,
.cta-blob h2,
.mega-line {
  font-family: var(--display);
  letter-spacing: -0.03em;
}

.section-intro h2,
.slider-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 750;
  margin: 0.4rem 0 0.65rem;
  line-height: 1.15;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Hero creative ---------- */
.hero-creative {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255, 106, 0, 0.12), transparent 55%),
    var(--white);
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-creative__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-creative h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 1rem 0 1.15rem;
}

.hero-creative h1 em {
  font-style: normal;
  color: var(--brand);
}

.hero-creative p {
  color: var(--muted);
  max-width: 36ch;
  font-size: 1.08rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-blob {
  position: relative;
  background: linear-gradient(145deg, var(--cream-2), #ffd7b8);
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  padding: 1.25rem;
  min-height: 380px;
  display: grid;
  place-items: center;
}

.hero-blob img {
  width: 88%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2rem 2rem 2.5rem 1.5rem;
  box-shadow: 0 24px 48px -20px rgba(255, 106, 0, 0.4);
}

.orbit-ring {
  position: absolute;
  inset: 6%;
  border: 1.5px dashed rgba(255, 106, 0, 0.45);
  border-radius: 50%;
  animation: spin 30s linear infinite;
  pointer-events: none;
}

.ai-chip {
  position: absolute;
  bottom: 12%;
  left: 8%;
  background: var(--brand);
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.55rem 0.7rem;
  border-radius: 0.45rem;
  box-shadow: 0 10px 24px -8px rgba(255, 106, 0, 0.55);
  z-index: 3;
}

.more-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem auto 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--brand);
}

/* ---------- Manifesto ---------- */
.mega-line {
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: 16em;
}

.line-accent {
  display: block;
  color: var(--brand);
  margin-top: 0.35rem;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.25s, border-color 0.25s;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
}

.process-num {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  color: var(--brand);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.process-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.process-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Service bento ---------- */
.service-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.svc {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.svc:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  box-shadow: 0 16px 32px -18px rgba(255, 106, 0, 0.4);
}

.svc-icon {
  margin-bottom: 1rem;
}

.svc h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.svc p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Work slider ---------- */
.slider-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.slider-controls {
  display: flex;
  gap: 0.55rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--brand);
  background: var(--white);
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.slider-btn:hover {
  background: var(--brand);
  color: var(--white);
  transform: scale(1.05);
}

.work-slider-wrap {
  overflow: hidden;
  padding-left: max(1.25rem, calc((100vw - var(--max)) / 2));
}

.work-slider {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  padding-right: 1.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.work-slider::-webkit-scrollbar {
  display: none;
}

.work-slide {
  flex: 0 0 min(78vw, 360px);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.25s;
}

.work-slide:hover {
  transform: translateY(-4px);
}

.work-slide__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.work-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-slide__meta {
  padding: 1.2rem 1.25rem 1.4rem;
}

.work-slide__meta h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.work-slide__meta p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tags span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-dim);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* Orange circular badges (RSNL) */
.stat-badge {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
  box-shadow: 0 12px 28px -10px rgba(255, 106, 0, 0.55);
  z-index: 2;
}

.stat-badge small {
  display: block;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}

.stat-badge--tl {
  right: auto;
  bottom: auto;
  top: 0.85rem;
  left: 0.85rem;
}

/* ---------- Bento showcase ---------- */
.bento {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.9rem;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
  background: #ddd;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.bento-card--tall {
  grid-row: span 2;
  min-height: 460px;
}

.bento-card--wide {
  grid-column: span 2;
  min-height: 240px;
}

.bento-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: var(--white);
  z-index: 1;
}

.bento-caption p {
  opacity: 0.85;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.bento-cutout {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 70%;
  background: var(--white);
  color: var(--text);
  font-family: var(--display);
  font-weight: 650;
  font-size: 0.95rem;
  line-height: 1.35;
  padding: 1.1rem 1.25rem;
  border-radius: 1.25rem 0 0 0;
  z-index: 2;
}

.bento-cutout:hover {
  color: var(--brand);
}

/* ---------- Results ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.result {
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--cream);
  text-align: center;
}

.result strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 0.45rem;
}

.result span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- Quote slider ---------- */
.quote-slider {
  position: relative;
  min-height: 200px;
}

.quote-card {
  display: none;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  animation: fade-up 0.4s ease;
}

.quote-card.is-active {
  display: block;
}

.quote-card p {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.quote-card footer {
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-card strong {
  color: var(--text);
}

/* ---------- Pathways ---------- */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.path-card {
  padding: 1.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--cream);
  transition: transform 0.25s, border-color 0.25s;
}

.path-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
}

.path-card--hot {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.path-card--hot p,
.path-card--hot a {
  color: rgba(255, 255, 255, 0.9);
}

.path-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.path-card p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

.path-card a {
  font-weight: 700;
  color: var(--brand);
}

/* ---------- CTA ---------- */
.cta-blob {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: 2.5rem;
  background: linear-gradient(145deg, var(--cream-2), var(--white));
  border: 1.5px solid rgba(255, 106, 0, 0.25);
  position: relative;
}

.cta-blob .spark--lg {
  margin-bottom: 1rem;
}

.cta-blob h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.cta-blob p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ---------- Shared page bits ---------- */
.page-hero {
  padding: 4.25rem 0 3rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255, 106, 0, 0.12), transparent 55%),
    var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.bg-mesh {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255, 106, 0, 0.12), transparent 55%),
    var(--cream);
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.45rem 0 0.75rem;
  line-height: 1.15;
}

.page-hero p {
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}

main > section:not(.hero-creative):not(.band):not(.page-hero):not(.cta-band) {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--line);
}

main > section:not(.hero-creative):not(.band):not(.page-hero):not(.cta-band):nth-of-type(even) {
  background: var(--cream);
}

.services-grid,
.portfolio-grid,
.team-grid,
.about-grid,
.service-detail-grid {
  display: grid;
  gap: 1rem;
}

.services-grid,
.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-grid,
.service-detail-grid,
.contact-layout,
.faq-layout {
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 1.25rem;
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-tile,
.about-block,
.team-card,
.portfolio-item,
.contact-form {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.5rem;
}

.service-tile:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  transition: 0.25s;
}

.icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.service-tile h3,
.about-block h3,
.portfolio-body h3 {
  font-family: var(--display);
  margin-bottom: 0.45rem;
}

.service-tile p,
.about-block p,
.portfolio-body p,
.service-lead {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-tile .link,
.text-link {
  color: var(--brand);
  font-weight: 700;
}

.service-title {
  font-family: var(--display);
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}

.feature-list {
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 0.65rem;
}

main > section:nth-of-type(odd) .feature-list li {
  background: var(--cream);
}

.feature-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 0.35rem;
  background: var(--brand);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  flex-shrink: 0;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tech-pills span {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-dim);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 650;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.portfolio-item {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  box-shadow: 0 16px 32px -18px rgba(255, 106, 0, 0.35);
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), #ffb066);
  padding: 0;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-body {
  padding: 1.15rem;
}

.portfolio-body .tag {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
}

.team-card {
  text-align: center;
}

.team-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.about-block h3 {
  color: var(--brand);
}

.contact-info h2 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin-bottom: 0.65rem;
}

.contact-info > p,
.info-item p,
.info-item a {
  color: var(--muted);
}

.info-item {
  margin-bottom: 1rem;
}

.info-item strong {
  display: block;
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--muted);
}

.socials a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 650;
  margin-bottom: 0.35rem;
}

.field {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 0.85rem 1rem;
  outline: none;
}

.field:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-dim);
}

textarea.field {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 0.75rem;
  background: var(--brand-dim);
  color: #c44f00;
  border: 1px solid rgba(255, 106, 0, 0.3);
}

.form-success.show {
  display: block;
}

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

.faq-item summary {
  list-style: none;
  padding: 1.15rem 2rem 1.15rem 0;
  font-family: var(--display);
  font-weight: 650;
  cursor: pointer;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 1.35rem;
}

.faq-item[open] summary {
  color: var(--brand);
}

.faq-item[open] summary::after {
  content: "?";
}

.faq-item p {
  padding-bottom: 1.15rem;
  color: var(--muted);
}

.cta-band {
  padding: 4rem 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.cta-inner {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(255, 106, 0, 0.28);
  background:
    radial-gradient(ellipse at center, rgba(255, 106, 0, 0.1), transparent 65%),
    var(--white);
  max-width: 820px;
  margin-inline: auto;
}

.cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.cta-inner p {
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.testimonials-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 min(100%, 360px);
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.testimonial p {
  margin-bottom: 1rem;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 3.25rem 0 1.75rem;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--muted);
  margin-top: 0.85rem;
  max-width: 28ch;
}

.footer-col h4 {
  font-family: var(--display);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- Motion ---------- */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.25) rotate(20deg);
    opacity: 0.7;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-enter {
  animation: fade-up 0.8s ease forwards;
}

.hero-enter-d1 {
  animation: fade-up 0.8s ease 0.12s forwards;
  opacity: 0;
}

.hero-enter-d2 {
  animation: fade-up 0.8s ease 0.24s forwards;
  opacity: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-creative__grid,
  .process-grid,
  .service-bento,
  .results-grid,
  .paths-grid,
  .about-grid,
  .service-detail-grid,
  .contact-layout,
  .faq-layout,
  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card--tall {
    grid-row: auto;
    min-height: 280px;
  }

  .bento-card--wide {
    grid-column: span 2;
  }

  .services-grid,
  .portfolio-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .hero-creative__grid,
  .process-grid,
  .service-bento,
  .results-grid,
  .paths-grid,
  .bento,
  .services-grid,
  .portfolio-grid,
  .team-grid,
  .form-row,
  .footer-grid,
  .about-grid,
  .service-detail-grid,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .bento-card--wide {
    grid-column: auto;
  }

  .hero-creative {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .hero-blob {
    min-height: 300px;
    border-radius: 2rem;
  }

  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button {
    cursor: auto;
  }

  .cursor,
  .cursor-dot {
    display: none !important;
  }
}

@media (hover: none) {
  .cursor,
  .cursor-dot {
    display: none !important;
  }

  body.has-cursor {
    cursor: auto;
  }
}

/* ============================================
   Global polish / bugfixes
   ============================================ */

.more-cue {
  align-self: center;
}

.hero-creative {
  align-items: stretch;
}

.hero-creative .more-cue {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.work-slider-wrap {
  width: 100%;
  max-width: 100vw;
}

.bento-card {
  isolation: isolate;
}

.bento-caption,
.bento-cutout,
.stat-badge {
  pointer-events: auto;
}

.stat-badge {
  line-height: 1.15;
  padding: 0.35rem;
}

.svc-icon.spark {
  width: 18px;
  height: 18px;
}

.accent-line {
  display: block;
  height: 1px;
  width: min(200px, 40%);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  border: 0;
}

select.field {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff6a00' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field,
.btn,
.slider-btn,
.filter-btn,
.menu-toggle {
  -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible,
.slider-btn:focus-visible,
.filter-btn:focus-visible,
.nav-links a:focus-visible,
.field:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.service-tile,
.about-block,
.team-card,
.contact-form,
.portfolio-item {
  background: var(--white);
}

section.band--cream .service-tile,
section.band--cream .about-block,
.page-hero + section .about-block {
  background: var(--white);
}

.about-grid {
  margin-top: 0;
}

.team-grid {
  margin-top: 1.5rem;
}

.contact-form .btn {
  width: auto;
  min-width: 160px;
}

.footer-bottom .spark-row {
  color: var(--muted);
}

img {
  height: auto;
}

.brand img {
  height: 42px;
}

/* Prevent horizontal page scroll from absolute badges / sliders */
.band,
.hero-creative,
.page-hero,
.site-footer,
main {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.work-slider-wrap {
  overflow: hidden;
}

@media (max-width: 960px) {
  .slider-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-slide {
    flex-basis: min(85vw, 320px);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.75rem, var(--max));
  }

  .stat-badge {
    width: 76px;
    height: 76px;
    font-size: 0.92rem;
  }

  .hero-blob img {
    width: 92%;
    aspect-ratio: 1;
  }

  .quote-card {
    padding: 1.5rem;
  }

  .cta-inner,
  .cta-blob {
    padding: 2.25rem 1.15rem;
  }

  .bento-cutout {
    max-width: 90%;
    font-size: 0.88rem;
  }
}

/* ============================================
   Typography ? Playfair Display + Lato
   Clear, premium, unmistakable
   ============================================ */

body,
p,
li,
a,
label,
input,
textarea,
select,
button,
.btn,
.nav-links a,
.field,
.form-note,
.footer-col a,
.spark-label,
.eyebrow,
.tags span,
.mobile-nav a {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif !important;
}

h1,
h2,
h3,
h4,
.font-display,
.hero-creative h1,
.mega-line,
.section-intro h2,
.slider-head h2,
.process-card h3,
.svc h3,
.work-slide__meta h3,
.bento-caption h3,
.path-card h3,
.cta-blob h2,
.cta-inner h2,
.page-hero h1,
.service-title,
.quote-card p,
.result strong,
.process-num,
.footer-col h4,
.trust-label,
.contact-info h2,
.about-block h3,
.portfolio-body h3,
.team-card h3,
.service-tile h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif !important;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.brand-text strong {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text span,
.spark-label,
.eyebrow,
.portfolio-body .tag,
.tags span {
  font-family: "Lato", Arial, sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-creative h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
}

.mega-line {
  font-size: clamp(1.7rem, 3.8vw, 2.85rem) !important;
  font-weight: 700 !important;
}

.section-intro h2,
.slider-head h2,
.page-hero h1,
.cta-blob h2,
.cta-inner h2 {
  font-size: clamp(1.95rem, 3.6vw, 2.85rem) !important;
  font-weight: 700 !important;
}

.quote-card p {
  font-style: italic;
  font-weight: 600 !important;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem) !important;
}

.result strong {
  font-weight: 800 !important;
}

.stat-badge,
.ai-chip {
  font-family: "Lato", Arial, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em;
}

body {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero-creative h1 {
    font-size: clamp(2.15rem, 9.5vw, 2.85rem) !important;
  }
}
/* ============================================
   Fullscreen hero slider — Stellar Souls style
   + Designpluz messaging clarity
   ============================================ */

.hero-slider {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
  max-height: 920px;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
  display: flex;
  align-items: flex-end;
  padding: 0 0 7.5rem;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 6.5s ease-out;
}

.hero-slide.is-active .hero-slide__bg {
  transform: scale(1);
}

.hero-slide__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.35) 55%, rgba(10, 10, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.75) 0%, transparent 45%);
  z-index: 1;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: max(1.25rem, calc((100vw - var(--max)) / 2));
  margin-right: 1.25rem;
  padding-left: 0;
  width: min(100% - 2.5rem, 720px);
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.8s ease 0.15s, opacity 0.8s ease 0.15s;
}

.hero-slide.is-active .hero-slide__content {
  transform: translateY(0);
  opacity: 1;
}

.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand);
  font-family: "Lato", Arial, sans-serif !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-slide h1 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(2.6rem, 6.5vw, 5rem) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em;
  color: #fff !important;
  margin-bottom: 1rem;
  max-width: 12ch;
}

.hero-slide h1 em {
  font-style: italic;
  color: var(--brand);
}

.hero-slide__sub {
  font-family: "Lato", Arial, sans-serif !important;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.hero-slider .btn-primary {
  box-shadow: 0 14px 32px -10px rgba(255, 106, 0, 0.65);
}

.hero-more {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Lato", Arial, sans-serif !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.hero-more span {
  display: block;
  width: 42px;
  height: 1.5px;
  background: var(--brand);
  position: relative;
  transition: width 0.25s ease;
}

.hero-more span::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--brand);
  border-top: 1.5px solid var(--brand);
  transform: rotate(45deg);
}

.hero-more:hover span {
  width: 58px;
}

.hero-slider__ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem max(1.25rem, calc((100vw - var(--max)) / 2)) 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
}

.hero-slider__count {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}

.hero-slider__count .sep {
  margin: 0 0.25rem;
  color: var(--brand);
}

.hero-slider__nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-nav-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Lato", Arial, sans-serif !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  cursor: pointer;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}

.hero-nav-btn:hover {
  color: var(--brand);
}

.hero-nav-divider {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-slider__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-slider__progress i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--brand);
  transition: width 0.1s linear;
}

.hero-slider__progress i.is-animating {
  transition: width 6s linear;
}

@media (max-width: 720px) {
  .hero-slider {
    min-height: 520px;
    height: 85vh;
    max-height: none;
  }

  .hero-slide {
    padding-bottom: 6.5rem;
    align-items: center;
  }

  .hero-slide h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3rem) !important;
  }

  .hero-slider__ui {
    flex-wrap: wrap;
    padding-bottom: 1.25rem;
  }

  .hero-slider__count {
    order: 1;
  }

  .hero-slider__nav {
    order: 2;
    margin-left: auto;
  }
}

/* ============================================
   Fixed header + img-based fullscreen banner
   ============================================ */

.site-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header--fixed .brand-text strong,
.site-header--fixed .nav-links a {
  color: #fff;
}

.site-header--fixed .brand-text span,
.site-header--fixed .nav-links a:hover,
.site-header--fixed .nav-links a.active {
  color: var(--brand);
}

.site-header--fixed .menu-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.site-header--fixed .menu-toggle span,
.site-header--fixed .menu-toggle span::before,
.site-header--fixed .menu-toggle span::after {
  background: #fff;
}

.site-header--fixed .mobile-nav {
  background: rgba(12, 12, 12, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header--fixed .mobile-nav a {
  color: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header--fixed.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.2);
}

.site-header--fixed.is-scrolled .brand-text strong,
.site-header--fixed.is-scrolled .nav-links a {
  color: var(--text);
}

.site-header--fixed.is-scrolled .nav-links a:hover,
.site-header--fixed.is-scrolled .nav-links a.active,
.site-header--fixed.is-scrolled .brand-text span {
  color: var(--brand);
}

.site-header--fixed.is-scrolled .menu-toggle {
  border-color: var(--line);
  background: var(--white);
}

.site-header--fixed.is-scrolled .menu-toggle span,
.site-header--fixed.is-scrolled .menu-toggle span::before,
.site-header--fixed.is-scrolled .menu-toggle span::after {
  background: var(--text);
}

.site-header--fixed.is-scrolled .mobile-nav {
  background: var(--white);
  border-bottom-color: var(--line);
}

.site-header--fixed.is-scrolled .mobile-nav a {
  color: var(--muted);
  border-bottom-color: var(--line);
}

/* True fullscreen banner (under fixed header) */
.hero-slider {
  height: 100vh;
  min-height: 100vh;
  max-height: none;
  margin: 0;
  cursor: grab;
}

.hero-slider.is-dragging {
  cursor: grabbing;
}

.hero-slide__media {
  position: absolute;
  inset: -4%;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.45s ease-out;
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
  pointer-events: none;
  transform: scale(1.08);
  transition: transform 6.5s ease-out;
}

.hero-slide.is-active .hero-slide__media img {
  transform: scale(1);
}

.hero-slide__bg {
  display: none;
}

.hero-scroll-a {
  position: absolute;
  right: max(1.25rem, calc((100vw - var(--max)) / 2));
  bottom: 5.5rem;
  z-index: 6;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 106, 0, 0.15);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  animation: scroll-a-bounce 2.2s ease-in-out infinite;
}

.hero-scroll-a span {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand);
}

.hero-scroll-a small {
  font-family: "Lato", Arial, sans-serif !important;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.hero-scroll-a:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.06);
  animation: none;
}

.hero-scroll-a:hover span,
.hero-scroll-a:hover small {
  color: #fff;
}

@keyframes scroll-a-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

#section-a {
  scroll-margin-top: 0;
}

@media (max-width: 720px) {
  .hero-slider {
    height: 100vh;
    min-height: 100svh;
  }

  .hero-scroll-a {
    right: 1rem;
    bottom: 5rem;
    width: 56px;
    height: 56px;
  }
}
