/* ═══════════════════════════════════════════════════════════
   Naimat Innovation — Metallic brand design system
   Fonts: Montserrat · Open Sans · Roboto · Lato · Helvetica
   ═══════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;500;600&family=Roboto:wght@400;500;700&display=swap");

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

:root {
  --silver: #D1D3D4;
  --silver-dark: #A8A9AD;
  --gold: #C5B358;
  --gold-bright: #D4C76A;
  --gold-deep: #B5A642;
  --charcoal: #333333;
  --charcoal-mid: #414042;
  --charcoal-dark: #2A2A2C;
  --white: #FFFFFF;
  --surface: #F9F9F9;
  --surface-2: #EFEFEF;

  --purple: var(--charcoal);
  --teal: var(--silver);
  --pink: var(--silver-dark);
  --blue: var(--gold-deep);
  --mauve: #6B6B6D;
  --orange: var(--gold-bright);

  --bg: var(--surface);
  --text: var(--charcoal);
  --text-muted: #5C5C5E;
  --border: rgba(51, 51, 51, 0.1);
  --shadow-sm: 0 2px 8px rgba(51, 51, 51, 0.06);
  --shadow: 0 8px 32px rgba(51, 51, 51, 0.08);
  --shadow-lg: 0 24px 64px rgba(51, 51, 51, 0.12);
  --font-fallback: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Montserrat", var(--font-fallback);
  --font-body: "Open Sans", var(--font-fallback);
  --font-ui: "Roboto", var(--font-fallback);
  --font-meta: "Lato", var(--font-fallback);
  --header-h: 76px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(168, 169, 173, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

img { display: block; max-width: 100%; }
address { font-style: normal; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6,
.logo-brand,
.faq-question,
.section-head h2, .section-intro h2, .split-label h2,
.page-hero h1, .hero h1, .service-card h3, .card h3,
.service-block h2, .portfolio-body h3, .blog-body h3,
.process-step h3, .cta-panel h2, .footer-col h4,
.service-icon, .metric-icon,
.metric strong, .stat-item strong,
.quote-card p, .testimonial-card p,
.quote-card cite, .testimonial-card cite {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
}

.btn, .header-cta, .nav-cta,
.site-nav a, .nav-toggle,
.breadcrumb, .skip-link,
.form-group label, .faq-question,
.section-link, .link-arrow,
.service-num, .portfolio-tag {
  font-family: var(--font-ui);
  font-style: normal;
}

.eyebrow, .hero-badge, .hero-meta, .hero-meta a,
.bento-label, .bento-value,
.metric span, .stat-item span,
.footer-col a, .footer-col p, .footer-brand p,
.footer-bottom p, .footer-social a,
.blog-meta, .page-hero p, .hero-lead,
.card p, .service-card p, .portfolio-body p {
  font-family: var(--font-meta);
  font-style: normal;
}

.eyebrow, .footer-col h4, .header-cta, .nav-cta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 999;
  padding: 0.5rem 1rem; background: var(--gold); color: var(--charcoal-dark);
  border-radius: var(--radius); font-family: var(--font-ui); font-style: normal;
}
.skip-link:focus { top: 1rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--silver) 0%, var(--gold) 45%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--purple);
  transition: gap var(--transition);
}
.link-arrow::after { content: "→"; transition: transform var(--transition); }
.link-arrow:hover { color: var(--blue); gap: 0.6rem; }
.link-arrow:hover::after { transform: translateX(3px); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow var(--transition), background var(--transition);
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 55%, var(--gold-bright) 100%);
  color: var(--charcoal-dark);
  box-shadow: 0 4px 20px rgba(197, 179, 88, 0.35);
}
.btn-primary:hover {
  color: var(--charcoal-dark);
  box-shadow: 0 8px 32px rgba(197, 179, 88, 0.45);
}

.btn-ghost, .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-family: var(--font-ui);
  font-style: normal;
}
.btn-ghost:hover, .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--border);
  font-family: var(--font-ui);
  font-style: normal;
}
.btn-outline:hover {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--purple);
}
.btn-full { width: 100%; }

.top-bar { display: none; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.header-inner,
.header-shell {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.site-header .site-nav a:not(.nav-cta):not(.header-cta) {
  color: var(--charcoal);
}

.site-header .site-nav a:not(.nav-cta):not(.header-cta):hover,
.site-header .site-nav a:not(.nav-cta):not(.header-cta).active {
  color: var(--charcoal-dark);
}

.site-header .nav-toggle span { background: var(--charcoal); }

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  flex-shrink: 0;
  text-decoration: none;
  max-width: min(100%, 16rem);
}
.logo:hover { opacity: 0.92; }
.logo-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.8vw, 1.625rem);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}
.logo-brand-sub {
  color: var(--gold-bright);
}
.footer-brand .logo {
  margin-bottom: 0.75rem;
}
.footer-brand .logo-brand {
  font-size: clamp(1.375rem, 3.2vw, 1.875rem);
  letter-spacing: -0.045em;
}
.footer-brand .logo-brand-sub {
  color: var(--gold);
}
.site-header .logo-brand:not(.logo-brand-sub) {
  color: var(--charcoal);
}
.logo-light { color: var(--white) !important; }
.logo-accent { display: none; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 0.125rem; }

.site-nav a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.header-cta, .nav-cta {
  padding: 0.625rem 1.25rem !important;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold)) !important;
  color: var(--charcoal-dark) !important;
  border-radius: var(--radius) !important;
  font-size: 0.8125rem !important;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(197, 179, 88, 0.3);
}
.header-cta:hover, .nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright)) !important;
  color: var(--charcoal-dark) !important;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.site-header.scrolled .nav-toggle { background: var(--surface); }

.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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); }

.site-header .nav-toggle { background: var(--surface); }

/* Inner pages — light header (same as home) */
body:not(:has(.hero-modern)) .site-header { background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
body:not(:has(.hero-modern)) .nav-toggle { background: var(--surface); }

/* ── Hero ──────────────────────────────────────────────── */
.hero-modern {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  background: var(--charcoal-dark);
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(209, 211, 212, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(197, 179, 88, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 60% 60%, rgba(168, 169, 173, 0.1) 0%, transparent 50%),
    linear-gradient(160deg, #2A2A2C 0%, #414042 50%, #333333 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill, 999px);
  font-family: var(--font-meta);
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(197, 179, 88, 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px transparent; }
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  margin-bottom: 2rem;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8125rem;
}
.hero-meta a {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-meta);
  font-style: normal;
}
.hero-meta a:hover { color: var(--gold); }

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

.bento-cell {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(16px);
  transition: transform var(--transition), background var(--transition);
}
.bento-cell:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.bento-main { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.bento-wide { grid-column: span 2; }

.bento-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.bento-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-meta);
  font-style: normal;
}

.bento-accent {
  background: linear-gradient(135deg, rgba(197, 179, 88, 0.22), rgba(181, 166, 66, 0.14));
  border-color: rgba(197, 179, 88, 0.28);
}

.bento-bar {
  margin-top: 0.75rem;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.bento-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--silver), var(--gold));
  border-radius: 4px;
}

/* Legacy hero */
.hero:not(.hero-modern) {
  padding: calc(var(--header-h) + 3rem) 0 2rem;
}
.hero-contact a { color: var(--purple); }

/* ── Metrics bar ───────────────────────────────────────── */
.metrics-bar,
.stats-strip {
  padding: 0 0 4rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.metrics-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.metric,
.stat-item {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.metric-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.metric-link:hover {
  background: linear-gradient(180deg, var(--white), rgba(197, 179, 88, 0.08));
}

.metric-link:hover strong {
  color: var(--gold-deep);
}

.metric-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.metric-icon {
  color: var(--gold);
  font-size: 0.625rem;
  margin-top: 0.35rem;
}

.metric strong,
.stat-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--purple);
  margin-bottom: 0.15rem;
}

.metric span,
.stat-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Sections ──────────────────────────────────────────── */
.section { padding: 5.5rem 0; position: relative; z-index: 1; }
.section-muted, .section-tint, .section-alt { background: var(--surface); }

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: end;
}

.split-label h2,
.section-head h2,
.section-intro h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--purple);
}

.split-body p,
.section-head p,
.section-intro p { color: var(--text-muted); }

.section-head,
.section-intro { max-width: 540px; margin-bottom: 3rem; }
.section-head h2,
.section-intro h2 { margin-bottom: 0.75rem; }

.section-header {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; color: var(--purple); }
.section-header p { color: var(--text-muted); }

.section-foot { margin-top: 3rem; text-align: center; }
.section-link { font-family: var(--font-ui); font-style: normal; color: var(--blue); }

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

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card-photo {
  margin: -2rem -2rem 1.25rem;
  height: 180px;
  min-height: 180px;
  overflow: hidden;
  background: var(--charcoal-mid);
}

.service-card-photo img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.service-card:hover .service-card-photo img { transform: scale(1.05); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 179, 88, 0.35);
}

.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  color: var(--purple);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.service-num { font-family: var(--font-ui); font-size: 0.75rem; color: var(--text-muted); }
.sc-marketing::before, .sc-web::before, .sc-brand::before { display: none; }

/* ── Quotes ────────────────────────────────────────────── */
.quote-row, .testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.quote-card, .testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--surface-2);
  pointer-events: none;
}

.quote-card p, .testimonial-card p {
  font-size: 1.0625rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  color: var(--purple);
  position: relative;
}

.quote-card cite, .testimonial-card cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.875rem;
  display: block;
  color: var(--purple);
}
.quote-card span, .testimonial-card span { font-size: 0.8125rem; color: var(--text-muted); }

.quote-card .client-company,
.testimonial-card .client-company {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-top: 0.15rem;
}
.quote-accent { background: linear-gradient(135deg, rgba(209, 211, 212, 0.25), rgba(255, 255, 255, 1)); }

/* ── CTA ───────────────────────────────────────────────── */
.cta-section { padding: 2rem 0 5rem; }

.cta-panel {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-mid) 100%);
  color: var(--white);
  padding: 4.5rem 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-panel::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(197, 179, 88, 0.22) 0%, transparent 70%);
  top: -150px; right: -100px;
}

.cta-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-panel p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.75rem;
  max-width: 460px;
  margin-inline: auto;
  position: relative;
}

.cta-banner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; color: var(--purple); }
.cta-banner p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ── Page hero ─────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero:not(.page-hero-modern) h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  color: var(--purple);
  max-width: 720px;
}

.page-hero:not(.page-hero-modern) p { color: var(--text-muted); font-size: 1.0625rem; max-width: 560px; }

.breadcrumb {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-family: var(--font-ui);
  font-style: normal;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--blue); }

/* ── Cards ─────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border-radius: var(--radius);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; color: var(--purple); }
.card p { font-size: 0.9375rem; color: var(--text-muted); }
.card li { font-size: 0.875rem; color: var(--text-muted); padding: 0.2rem 0 0.2rem 1rem; position: relative; }
.card li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; }

/* ── Services detail ───────────────────────────────────── */
.service-block {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.service-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--charcoal-mid);
  min-height: 220px;
}

.service-photo img {
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.service-block:hover .service-photo img { transform: scale(1.03); }

.service-block h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; color: var(--purple); }
.service-block .lead { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 800px; }
.service-block h3 { font-size: 1rem; margin: 1.5rem 0 0.75rem; color: var(--blue); }

.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 2rem; }
.feature-list li { font-size: 0.9375rem; color: var(--text-muted); padding-left: 1.25rem; position: relative; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-style: normal; }

.service-section-label {
  font-family: var(--font-meta);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 2rem 0 1.25rem;
}

.deliver-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.deliver-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 179, 88, 0.45), transparent);
}

.deliver-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.deliver-grid li {
  padding: 1.5rem 3rem 1.5rem 1.5rem;
  padding-left: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--white) 0%, rgba(249, 249, 249, 0.9) 100%);
  border: 1px solid rgba(51, 51, 51, 0.08);
  box-shadow: 0 2px 8px rgba(51, 51, 51, 0.04), 0 12px 32px rgba(51, 51, 51, 0.05);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.deliver-grid li::before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 3px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--silver));
  transition: height var(--transition);
}

.deliver-grid li::after {
  content: "✓";
  position: absolute;
  top: 1.35rem;
  right: 1.25rem;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(197, 179, 88, 0.18), rgba(197, 179, 88, 0.06));
  border: 1px solid rgba(197, 179, 88, 0.28);
  color: var(--gold-deep);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.deliver-grid li:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 179, 88, 0.5);
  background: linear-gradient(160deg, rgba(197, 179, 88, 0.1) 0%, var(--white) 55%);
  box-shadow: 0 8px 24px rgba(51, 51, 51, 0.08), 0 0 0 1px rgba(197, 179, 88, 0.2);
}

.deliver-grid li:hover::before { height: 4px; }

.deliver-grid li:hover::after {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  border-color: transparent;
  color: var(--white);
}

.deliver-grid li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  padding-right: 2rem;
  line-height: 1.35;
  transition: color var(--transition);
}

.deliver-grid li:hover strong { color: var(--gold-deep); }

.feature-desc {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.why-list li { font-size: 0.9375rem; color: var(--text-muted); padding: 0.4rem 0 0.4rem 1.25rem; position: relative; }
.why-list li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: 0.55rem; top: 0.7rem; }

.why-branding {
  margin-top: 2.5rem;
  padding: 2.25rem 2rem 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(197, 179, 88, 0.11) 0%, rgba(255, 255, 255, 0.95) 42%, var(--white) 100%);
  border: 1px solid rgba(197, 179, 88, 0.28);
  box-shadow: 0 4px 24px rgba(51, 51, 51, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.why-branding::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--silver));
}

.why-branding-title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.why-branding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-branding-grid li {
  text-align: center;
  padding: 0.5rem 0.75rem;
  transition: transform var(--transition);
}

.why-branding-grid li:hover { transform: translateY(-3px); }

.why-branding-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(197, 179, 88, 0.45);
  box-shadow: 0 4px 16px rgba(197, 179, 88, 0.18);
  font-size: 1.125rem;
  color: var(--gold-deep);
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.why-branding-grid li:hover .why-branding-icon {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(181, 166, 66, 0.35);
  transform: scale(1.06);
}

.why-branding-grid li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  transition: color var(--transition);
}

.why-branding-grid li:hover strong { color: var(--gold-deep); }

.why-branding-grid li p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 960px) {
  .why-branding-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .why-branding { padding: 1.75rem 1.25rem 1.5rem; }
  .why-branding-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .why-branding-grid li { padding: 0.25rem 0; }
}

.why-webdev {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--charcoal-dark) 0%, var(--charcoal-mid) 55%, var(--charcoal) 100%);
  border: 1px solid rgba(209, 211, 212, 0.15);
  box-shadow: 0 12px 40px rgba(42, 42, 44, 0.22);
  position: relative;
  overflow: hidden;
}

.why-webdev::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--silver), var(--gold-bright), var(--silver));
}

.why-webdev::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 179, 88, 0.12), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(209, 211, 212, 0.08), transparent 38%);
  pointer-events: none;
}

.why-webdev-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.why-webdev-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-webdev-grid li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(209, 211, 212, 0.14);
  backdrop-filter: blur(6px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.why-webdev-grid li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(197, 179, 88, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.why-webdev-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(209, 211, 212, 0.25);
  font-size: 1rem;
  color: var(--gold-bright);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.why-webdev-grid li:hover .why-webdev-icon {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  border-color: transparent;
  color: var(--white);
  transform: scale(1.05);
}

.why-webdev-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.35;
  transition: color var(--transition);
}

.why-webdev-grid li:hover .why-webdev-copy strong { color: var(--gold-bright); }

.why-webdev-copy p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

@media (max-width: 768px) {
  .why-webdev-grid { grid-template-columns: 1fr; }
  .why-webdev { padding: 1.75rem 1.25rem; }
}

.why-marketing {
  margin-top: 2.5rem;
  padding: 2rem 2rem 1.75rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(51, 51, 51, 0.08);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.why-marketing::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold-deep), var(--gold-bright), var(--silver));
}

.why-marketing-title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
  letter-spacing: -0.01em;
}

.why-marketing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0 0 0 0.75rem;
  margin: 0;
}

.why-marketing-grid li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface) 0%, var(--white) 100%);
  border: 1px solid rgba(51, 51, 51, 0.07);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.why-marketing-grid li:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 179, 88, 0.4);
  background: linear-gradient(160deg, rgba(197, 179, 88, 0.08) 0%, var(--white) 70%);
  box-shadow: 0 8px 24px rgba(51, 51, 51, 0.07);
}

.why-marketing-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(197, 179, 88, 0.35);
  font-size: 0.9375rem;
  color: var(--gold-deep);
  box-shadow: 0 2px 10px rgba(197, 179, 88, 0.15);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.why-marketing-grid li:hover .why-marketing-icon {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  border-color: transparent;
  color: var(--white);
  transform: scale(1.06);
}

.why-marketing-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  line-height: 1.35;
  transition: color var(--transition);
}

.why-marketing-grid li:hover .why-marketing-copy strong { color: var(--gold-deep); }

.why-marketing-copy p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .why-marketing-grid { grid-template-columns: 1fr; padding-left: 0; }
  .why-marketing { padding: 1.75rem 1.25rem 1.5rem; }
  .why-marketing-title { padding-left: 0.5rem; }
}

/* ── Portfolio ─────────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.portfolio-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal-mid), var(--charcoal));
}
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.06); }
.portfolio-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(51, 51, 51, 0.35));
  pointer-events: none;
}
.portfolio-card:nth-child(even) .portfolio-thumb {
  background: linear-gradient(135deg, var(--charcoal), var(--gold-deep));
}

.portfolio-body { padding: 1.5rem; }
.portfolio-body h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; color: var(--purple); }
.portfolio-body p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.portfolio-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.portfolio-tag {
  font-size: 0.6875rem;
  font-family: var(--font-display);
  padding: 0.25rem 0.65rem;
  background: var(--surface);
  border-radius: 999px;
  color: var(--mauve);
}

.portfolio-result {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--blue);
  font-style: normal;
}

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

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }

.team-avatar {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  font-style: normal;
}

.team-card h3 { font-size: 0.9375rem; color: var(--purple); margin-bottom: 0.2rem; }
.team-card p { font-size: 0.8125rem; color: var(--blue); }

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

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.process-num {
  width: 40px; height: 40px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-style: normal;
}

.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--purple); }
.process-step p { font-size: 0.875rem; color: var(--text-muted); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-modern .faq-item {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--purple);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-style: normal;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer-inner { padding-bottom: 1.25rem; color: var(--text-muted); font-size: 0.9375rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Prose ─────────────────────────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.375rem; margin: 2rem 0 0.75rem; color: var(--purple); }
.prose p, .prose li { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 0.75rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose a { color: var(--blue); text-decoration: underline; }

/* ── Contact ───────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info-block, .contact-item { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.25rem;
}

.social-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.social-links a {
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-family: var(--font-display);
  font-style: normal;
  color: var(--purple);
  box-shadow: var(--shadow-sm);
}
.social-links a:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.8125rem;
  margin-bottom: 0.35rem;
  color: var(--purple);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(197, 179, 88, 0.2);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.optional { font-weight: 400; color: var(--text-muted); }

.form-status { margin-top: 1rem; font-size: 0.875rem; text-align: center; min-height: 1.25rem; }
.form-status.success { color: var(--blue); font-style: normal; }
.form-status.error { color: var(--pink); font-style: normal; }

.map-embed {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ── Blog ──────────────────────────────────────────────── */
.blog-categories { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; justify-content: center; }
.blog-categories a {
  padding: 0.4rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-family: var(--font-display);
  font-style: normal;
  color: var(--mauve);
}
.blog-categories a:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-4px); }

.blog-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--charcoal-mid);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.06);
}

.blog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(51, 51, 51, 0.25));
  pointer-events: none;
}

.blog-body { padding: 1.5rem; }
.blog-cat {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
.blog-body h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; color: var(--purple); line-height: 1.35; }
.blog-body p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--purple);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.footer-rainbow { display: none; }

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

.footer-brand p { font-size: 0.875rem; margin-top: 0.75rem; line-height: 1.65; }

.footer-col h4 {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-col a,
.footer-col p,
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-meta);
  font-style: normal;
}

.footer-col a:hover,
.footer-social a:hover { color: var(--gold); }

.footer-col ul li { margin-bottom: 0.45rem; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.5); }

.footer-social { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-social a {
  font-size: 0.8125rem;
  font-family: var(--font-meta);
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
}

/* ── 404 ───────────────────────────────────────────────── */
.error-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--surface);
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-page h1 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--purple); }
.error-page p { color: var(--text-muted); margin-bottom: 2rem; }

/* ── Homepage modern ───────────────────────────────────── */
.hero-visual {
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 3;
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197, 179, 88, 0.15), transparent 55%);
  pointer-events: none;
}

.hero-stat-card {
  position: absolute;
  bottom: 1.25rem;
  left: -1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
}

.hero-stat-card-alt {
  top: 1.25rem;
  right: -0.75rem;
  bottom: auto;
  left: auto;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid));
  border-color: rgba(197, 179, 88, 0.35);
}

.hero-stat-card-alt .hero-stat-value { color: var(--gold-bright); }
.hero-stat-card-alt .hero-stat-label { color: rgba(255, 255, 255, 0.75); }

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-family: var(--font-meta);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-home {
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.45rem 0.85rem;
  background: rgba(42, 42, 44, 0.88);
  color: var(--gold-bright);
  font-family: var(--font-meta);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(197, 179, 88, 0.35);
}

.about-copy h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--purple);
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-points {
  margin-bottom: 1.5rem;
}

.about-points li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: 700;
}

/* ── About page ────────────────────────────────────────── */
.page-hero-modern {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 4rem;
  background: var(--charcoal-dark);
  border-bottom: none;
  overflow: hidden;
}

.page-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(209, 211, 212, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 15% 85%, rgba(197, 179, 88, 0.16) 0%, transparent 55%),
    linear-gradient(160deg, #2A2A2C 0%, #414042 55%, #333333 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-modern .breadcrumb {
  color: rgba(255, 255, 255, 0.55);
}

.page-hero-modern .breadcrumb a {
  color: var(--gold-bright);
}

.page-hero-modern .breadcrumb a:hover {
  color: var(--white);
}

.eyebrow-light {
  color: var(--gold-bright);
}

.page-hero-modern h1 {
  color: var(--white);
  max-width: 780px;
}

.page-hero-modern .page-hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  max-width: 680px;
  line-height: 1.65;
  margin-top: 0.25rem;
}

.page-hero-modern .eyebrow.eyebrow-light {
  color: var(--gold-bright);
}

.about-page-intro {
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.about-stats {
  padding: 2rem 0;
  background: var(--charcoal-dark);
  border-block: 1px solid rgba(209, 211, 212, 0.1);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.about-stat {
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(209, 211, 212, 0.12);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.about-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 179, 88, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.about-stat span {
  font-family: var(--font-meta);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.process-modern .process-step {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.process-modern .process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--silver));
  transition: height var(--transition);
}

.process-modern .process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 179, 88, 0.35);
  box-shadow: var(--shadow);
}

.process-modern .process-step:hover::before {
  height: 4px;
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197, 179, 88, 0.16), rgba(197, 179, 88, 0.05));
  border: 1px solid rgba(197, 179, 88, 0.3);
  font-size: 1.125rem;
  color: var(--gold-deep);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.process-modern .process-step:hover .process-icon {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  color: var(--white);
  transform: scale(1.06);
}

.commitment-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(197, 179, 88, 0.09) 0%, var(--white) 45%, var(--surface) 100%);
  border: 1px solid rgba(197, 179, 88, 0.22);
  box-shadow: var(--shadow-sm);
}

.commitment-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.commitment-copy p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.commitment-copy p:last-child {
  margin-bottom: 0;
}

.commitment-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.commitment-points li {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(51, 51, 51, 0.08);
  box-shadow: 0 2px 8px rgba(51, 51, 51, 0.04);
  transition: transform var(--transition), border-color var(--transition);
}

.commitment-points li:hover {
  transform: translateX(4px);
  border-color: rgba(197, 179, 88, 0.35);
}

.commitment-points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.commitment-points span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.team-grid-modern {
  gap: 1.25rem;
}

.team-card-modern {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-xl);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.team-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--silver));
}

.team-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(197, 179, 88, 0.3);
}

.team-card-modern .team-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--charcoal-mid), var(--charcoal));
  border: 2px solid rgba(197, 179, 88, 0.35);
  font-size: 1.0625rem;
  transition: transform var(--transition), border-color var(--transition);
}

.team-card-modern:hover .team-avatar {
  transform: scale(1.05);
  border-color: var(--gold-bright);
}

/* ── Inner pages (shared modern) ───────────────────────── */
.prose-panel {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(51, 51, 51, 0.08);
  box-shadow: var(--shadow-sm);
}

.prose-panel h2:first-child {
  margin-top: 0;
}

.card-modern {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--silver));
  transition: height var(--transition);
}

.card-modern:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 179, 88, 0.3);
  box-shadow: var(--shadow);
}

.card-modern:hover::before { height: 4px; }

.card-wide {
  margin-top: 1.5rem;
  max-width: 100%;
}

.contact-info-modern .contact-item {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(51, 51, 51, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-info-modern .contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 179, 88, 0.35);
  box-shadow: var(--shadow);
}

.contact-form-modern {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.contact-form-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--silver));
}

.map-embed-modern {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.faq-modern {
  max-width: 820px;
}

.faq-modern .faq-item {
  margin-bottom: 0.75rem;
  background: var(--white);
  border: 1px solid rgba(51, 51, 51, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-modern .faq-item:last-child { margin-bottom: 0; }

.faq-modern .faq-item.open,
.faq-modern .faq-item:hover {
  border-color: rgba(197, 179, 88, 0.35);
  box-shadow: var(--shadow);
}

.faq-modern .faq-question {
  padding: 1.25rem 1.5rem;
}

.faq-modern .faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
}

.section-muted .portfolio-card {
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.section-muted .portfolio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--silver));
  z-index: 2;
  transition: height var(--transition);
}

.section-muted .portfolio-card:hover::before { height: 4px; }

.section-muted .blog-card {
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.section-muted .blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--silver));
  z-index: 2;
}

.section-muted .blog-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(197, 179, 88, 0.25);
}

.error-page-modern {
  position: relative;
  background: var(--charcoal-dark);
  overflow: hidden;
}

.error-page-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(209, 211, 212, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 20% 80%, rgba(197, 179, 88, 0.16) 0%, transparent 55%),
    linear-gradient(160deg, #2A2A2C 0%, #414042 55%, #333333 100%);
}

.error-page-inner {
  position: relative;
  z-index: 1;
}

.error-page-modern h1 {
  color: var(--white);
}

.error-page-modern p {
  color: rgba(255, 255, 255, 0.72);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.section-head-center {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 3rem;
}

.section-home-services {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(197, 179, 88, 0.08), transparent 70%),
    linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.service-cards-modern {
  gap: 1.5rem;
}

.service-card-modern {
  position: relative;
  padding: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(51, 51, 51, 0.08);
  box-shadow: var(--shadow-sm);
}

.service-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--silver));
  z-index: 2;
}

.service-card-modern .service-card-photo {
  margin: 0;
  height: 200px;
  min-height: 200px;
}

.service-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-eyebrow {
  font-family: var(--font-meta);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.45rem;
}

.service-card-modern h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.service-tags li {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--mauve);
}

.service-link { margin-top: auto; }

.clients-strip {
  padding: 2.5rem 0;
  background: var(--charcoal-dark);
  color: var(--white);
}

.clients-label {
  text-align: center;
  font-family: var(--font-meta);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.clients-logos .client-company {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0;
}

.section-testimonials {
  background: var(--white);
}

.quote-card-modern {
  background: linear-gradient(165deg, var(--white) 0%, #fafafa 100%);
  border-color: rgba(197, 179, 88, 0.2);
  padding: 2rem 1.75rem;
}

.quote-card-modern::before {
  color: rgba(197, 179, 88, 0.2);
}

.quote-stars {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.metrics-bar .metric {
  transition: background var(--transition);
}

.metrics-bar .metric:hover {
  background: linear-gradient(180deg, var(--white), rgba(197, 179, 88, 0.06));
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-layout, .split-section, .about-grid, .contact-layout, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-bento { max-width: 400px; margin: 0 auto; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-stat-card { left: 0.75rem; bottom: 0.75rem; }
  .hero-stat-card-alt { right: 0.75rem; top: 0.75rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment-panel { grid-template-columns: 1fr; padding: 1.75rem 1.25rem; }
  .metrics-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards, .card-grid, .team-grid, .blog-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-row, .testimonial-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .feature-list, .deliver-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + 0.5rem);
    left: 1rem; right: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    margin-left: 0;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav a { padding: 0.75rem 1rem; color: var(--charcoal) !important; }

  .metrics-grid, .stats-grid,
  .service-cards, .card-grid, .team-grid, .blog-grid, .process-grid { grid-template-columns: 1fr; }

  .about-stats-grid { grid-template-columns: 1fr; }

  .clients-logos { flex-direction: column; align-items: center; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .cta-panel { padding: 2.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .bento-wide { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .badge-dot { animation: none; }
  html { scroll-behavior: auto; }
}
