body {
    background: #fff;
}

.fade-up {
    opacity: 0;
}

.scale-in {
    transform: scale(0.9);
}


/* ─── ALTMEDIA GLOBAL STYLESHEET ─── */

/* ═══ VARIABLES ═══ */
:root {
  --black:        #080808;
  --off-white:    #F4F1EC;
  --accent:       #C8A96E;
  --accent-dark:  #9E7E47;
  --text-primary: #F4F1EC;
  --text-muted:   rgba(244, 241, 236, 0.55);
  --surface:      rgba(255, 255, 255, 0.04);
  --border:       rgba(244, 241, 236, 0.12);
  --nav-bg:       rgba(8, 8, 8, 0.82);
  --overlay-dark: rgba(8, 8, 8, 0.58);
  --overlay-hero: rgba(8, 8, 8, 0.52);

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.75rem;
  --text-4xl:  3.75rem;
  --text-hero: clamp(3rem, 7vw, 7rem);

  --section-padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  --container-max: 1240px;
  --container-pad: clamp(24px, 6vw, 100px);
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ═══ GRAIN TEXTURE ═══ */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.38;
  background-size: 200px 200px;
}

/* ═══ CUSTOM CURSOR ═══ */
#cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%); transition: transform 0.1s ease;
}
#cursor-ring {
  position: fixed; width: 38px; height: 38px;
  border: 1.5px solid rgba(200,169,110,0.55); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}
#cursor-ring.expanded { width: 60px; height: 60px; opacity: 0.9; }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } body { cursor: auto; } }

/* ═══ TYPOGRAPHY ═══ */
h1 { font-family: 'Outfit', 'DM Sans', sans-serif; font-weight: 800; font-size: var(--text-hero); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.2; }
h3 { font-family: 'Syne', sans-serif; font-weight: 600; font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1.15rem; }
.label {
  font-family: 'Syne', sans-serif; font-weight: 500;
  font-size: var(--text-xs); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 1.2rem;
}

/* ═══ LAYOUT ═══ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
section { position: relative; }

/* ═══ BACKGROUND IMAGES ═══ */
.bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.bg-image::after {
  content: ''; position: absolute; inset: 0;
  background: var(--overlay-dark);
}
.bg-image.hero-overlay::after { background: var(--overlay-hero); }
.section-inner { position: relative; z-index: 1; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-block;
  font-family: 'Syne', sans-serif; font-weight: 500;
  font-size: var(--text-xs); letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.95rem 2.2rem;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  cursor: pointer; position: relative; overflow: hidden;
}
.btn-gold {
  background: var(--accent); color: var(--black);
  border: 1px solid var(--accent);
}
.btn-gold:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline-gold {
  background: transparent; color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline-gold:hover { background: var(--accent); color: var(--black); }
.btn-outline-white {
  background: transparent; color: var(--off-white);
  border: 1px solid var(--border);
}
.btn-outline-white:hover { border-color: var(--accent); color: var(--accent); }

.text-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Syne', sans-serif; font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--off-white); transition: color 0.3s ease, gap 0.3s ease;
  position: relative;
}
.text-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.35s ease;
}
.text-link:hover { color: var(--accent); gap: 0.9rem; }
.text-link:hover::after { width: 100%; }

/* ═══ NAV ═══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1.6rem var(--container-pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.35s ease;
}
#nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding-top: 1rem; padding-bottom: 1rem;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.8rem; }
.nav-links a {
  font-family: 'Syne', sans-serif; font-weight: 500;
  font-size: var(--text-xs); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.35s ease; transform-origin: left;
}
.nav-links a:hover { color: var(--off-white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Syne', sans-serif; font-size: var(--text-xs);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1.4rem; border: 1px solid var(--accent);
  color: var(--accent); transition: background 0.35s ease, color 0.35s ease;
}
.nav-cta:hover { background: var(--accent); color: var(--black); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; background: none; border: none; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 1px; background: var(--off-white); transition: transform 0.35s, opacity 0.35s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
#mobile-nav {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
#mobile-nav.open { opacity: 1; pointer-events: all; }
#mobile-nav a {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 600;
  color: var(--off-white); transition: color 0.3s ease;
}
#mobile-nav a:hover { color: var(--accent); }

/* ═══ HERO ═══ */
.page-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.page-hero .hero-content {
  padding: 12rem var(--container-pad) 6rem;
  max-width: var(--container-max); margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.hero-h1-line2 { padding-left: clamp(1rem, 3vw, 3rem); display: block; }
.hero-sub {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: var(--text-lg); color: var(--text-muted);
  max-width: 540px; margin: 1.5rem 0 2.5rem; line-height: 1.75;
}
.hero-ctas { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: 'Syne', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
  z-index: 1; transition: opacity 0.4s ease;
}
.scroll-indicator.hidden { opacity: 0; }
.scroll-line {
  width: 1px; height: 40px; background: var(--border);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 50%; background: var(--accent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0% { top: -100%; } 100% { top: 100%; } }

/* Shorter hero for inner pages */
.page-hero.short { min-height: 65vh; }
.page-hero.short .hero-content { padding-top: 10rem; padding-bottom: 4rem; }

/* ═══ SECTION: TRUST BAR ═══ */
.trust-bar {
  padding: 4.5rem var(--container-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.trust-num {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  color: var(--off-white); line-height: 1; margin-bottom: 0.6rem;
}
.trust-label {
  font-family: 'Syne', sans-serif; font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
}

/* ═══ SECTION: PILLAR CARDS ═══ */
.pillar-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 2rem; transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 48px rgba(0,0,0,0.6);
}
.pillar-numeral {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.5rem; color: var(--accent);
  margin-bottom: 0.8rem;
}
.pillar-card h4 { margin-bottom: 0.6rem; }
.pillar-card p { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; }

/* ═══ SECTION: SERVICES PANEL ═══ */
.services-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.services-list { border-right: 1px solid var(--border); }
.svc-item {
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 2rem;
  cursor: pointer; display: flex; align-items: center; gap: 1.5rem;
  transition: background 0.3s ease;
  position: relative;
}
.svc-item::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s ease;
}
.svc-item.active::before, .svc-item:hover::before { transform: scaleY(1); }
.svc-item.active { background: var(--surface); }
.svc-num {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.3rem; color: var(--border);
  flex-shrink: 0; transition: color 0.3s ease;
  min-width: 2.5rem;
}
.svc-item.active .svc-num, .svc-item:hover .svc-num { color: var(--accent); }
.svc-name {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.3rem); color: var(--text-muted);
  transition: color 0.3s ease;
}
.svc-item.active .svc-name, .svc-item:hover .svc-name { color: var(--off-white); }

.svc-panel-right { padding: 2.5rem 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.svc-panel { display: none; }
.svc-panel.active { display: flex; flex-direction: column; gap: 1.2rem; }
.svc-panel h3 { color: var(--off-white); }
.svc-panel p { font-size: 0.92rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; }

/* Mobile accordion for services */
.svc-accordion { display: none; }
.svc-acc-item { border-bottom: 1px solid var(--border); }
.svc-acc-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; cursor: pointer;
}
.svc-acc-trigger .svc-name { color: var(--off-white); }
.svc-acc-icon {
  width: 28px; height: 28px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem;
  transition: transform 0.4s ease, border-color 0.3s ease; flex-shrink: 0;
}
.svc-acc-item.open .svc-acc-icon { transform: rotate(45deg); border-color: var(--accent); }
.svc-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.svc-acc-body-inner { padding: 0 0 1.5rem; font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; }

/* ═══ SECTION: PROCESS ═══ */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; margin-top: 3rem;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 1.4rem; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(to right, var(--accent), rgba(200,169,110,0.2), var(--accent));
  opacity: 0.35;
}
.process-line-animated::before { transform-origin: left; transform: scaleX(0); transition: transform 1.5s ease; }
.process-line-animated.animated::before { transform: scaleX(1); }
.process-step { padding: 0 2rem 0 0; }
.step-num {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 2rem; color: var(--accent); line-height: 1; margin-bottom: 1.5rem;
}
.step-title { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1.1rem; margin-bottom: 0.7rem; }
.step-desc { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; }

/* ═══ SECTION: CASE STUDY CARDS ═══ */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.case-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; display: flex; flex-direction: column;
  justify-content: flex-end; cursor: pointer;
}
.case-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.case-card:hover .case-card-bg { transform: scale(1.05); }
.case-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.3) 60%, transparent 100%);
  z-index: 1; transition: background 0.4s ease;
}
.case-card:hover::before { background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.6) 60%, rgba(8,8,8,0.2) 100%); }
.case-card-content { position: relative; z-index: 2; padding: 1.8rem; }
.case-client { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1.1rem; margin-bottom: 0.3rem; }
.case-challenge { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; margin-bottom: 0.8rem; }
.case-stat { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem; }
.case-link { opacity: 0; transform: translateY(8px); transition: opacity 0.4s ease, transform 0.4s ease; }
.case-card:hover .case-link { opacity: 1; transform: translateY(0); }

/* ═══ SECTION: TESTIMONIALS ═══ */
.testimonials-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.testimonial-card {
  border: 1px solid var(--border); padding: 2.5rem 2rem;
  position: relative; transition: border-color 0.4s ease;
}
.testimonial-card:hover { border-color: rgba(200,169,110,0.25); }
.t-quote-mark {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 5rem; line-height: 1; color: var(--accent);
  opacity: 0.5; margin-bottom: 0.5rem; display: block;
}
.t-text { font-family: 'DM Sans', sans-serif; font-weight: 300; font-style: italic; font-size: 1rem; color: var(--off-white); line-height: 1.85; margin-bottom: 1.5rem; }
.t-divider { width: 40px; height: 1px; background: var(--border); margin-bottom: 1rem; }
.t-author { font-family: 'Syne', sans-serif; font-weight: 500; font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }

/* ═══ SECTION: WHY LIST ═══ */
.why-row {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 2rem; align-items: center;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: border-left-color 0.35s ease; padding-left: 1.2rem;
}
.why-row:first-child { border-top: 1px solid var(--border); }
.why-row:hover { border-left-color: var(--accent); }
.why-row:hover .why-label { color: var(--accent); }
.why-label { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.95rem; transition: color 0.35s ease; }
.why-text { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.75; }

/* ═══ SECTION: FAQ ═══ */
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; gap: 1.5rem; cursor: pointer;
}
.faq-qtext { font-family: 'Syne', sans-serif; font-weight: 500; font-size: 0.95rem; transition: color 0.3s ease; }
.faq-item:hover .faq-qtext { color: var(--accent); }
.faq-icon {
  width: 30px; height: 30px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem; font-weight: 300;
  transition: transform 0.4s ease, border-color 0.3s ease; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq-a-inner { padding: 0 2rem 1.5rem 0; font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.85; }

/* ═══ SECTION: CLOSING CTA ═══ */
.cta-section {
  padding: var(--section-padding);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-buttons { display: flex; justify-content: center; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.cta-note { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

/* ═══ FOOTER ═══ */
#footer {
  border-top: 1px solid var(--border);
  padding: 4.5rem var(--container-pad) 2rem;
  background: var(--black);
}
.footer-grid {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem; margin-bottom: 3.5rem;
}
.footer-wordmark { display: block; margin-bottom: 0.75rem; }
.footer-wordmark img { height: 32px; }
.footer-tagline { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 1.4rem; line-height: 1.6; }
.footer-socials { display: flex; gap: 1.2rem; }
.footer-socials a { font-family: 'Syne', sans-serif; font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s ease; }
.footer-socials a:hover { color: var(--accent); }
.footer-col-label { font-family: 'Syne', sans-serif; font-size: var(--text-xs); letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.87rem; color: var(--text-muted); transition: color 0.3s ease; }
.footer-col ul a:hover { color: var(--off-white); }
.footer-contact-item { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--container-max); margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p, .footer-bottom a { font-size: 0.75rem; color: var(--text-muted); }
.footer-bottom a:hover { color: var(--off-white); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ═══ CONTACT FORM ═══ */
.form-field { margin-bottom: 2rem; position: relative; }
.form-field label {
  display: block; font-family: 'Syne', sans-serif;
  font-size: var(--text-xs); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 0.6rem; transition: color 0.3s ease;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  color: var(--off-white); font-family: 'DM Sans', sans-serif;
  font-size: 1rem; padding: 0.6rem 0;
  transition: border-color 0.3s ease; outline: none;
}
.form-field select option { background: var(--black); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-bottom-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-success {
  background: rgba(200,169,110,0.12); border: 1px solid rgba(200,169,110,0.3);
  padding: 1.2rem 1.6rem; margin-top: 1.5rem; display: none;
  font-family: 'Syne', sans-serif; font-size: 0.88rem; color: var(--accent);
  letter-spacing: 0.05em;
}

/* ═══ BLOG CARDS ═══ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { border: 1px solid var(--border); overflow: hidden; transition: border-color 0.4s ease; }
.blog-card:hover { border-color: rgba(200,169,110,0.25); }
.blog-card-img {
  height: 220px; background-size: cover; background-position: center;
  transition: transform 0.5s ease; overflow: hidden;
}
.blog-card:hover .blog-card-img { transform: scale(1.03); }
.blog-card-body { padding: 1.5rem; }
.blog-cat { font-family: 'Syne', sans-serif; font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem; display: block; }
.blog-title { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1.05rem; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-excerpt { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; margin-bottom: 1rem; }
.blog-meta { font-family: 'Syne', sans-serif; font-size: var(--text-xs); color: var(--text-muted); }

/* ═══ CAREERS ═══ */
.job-listing {
  border: 1px solid var(--border); padding: 2rem;
  margin-bottom: 1rem; transition: border-color 0.4s ease;
}
.job-listing:hover { border-color: rgba(200,169,110,0.25); }
.job-title { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1.2rem; margin-bottom: 0.4rem; }
.job-meta { font-family: 'Syne', sans-serif; font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
.job-desc { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.75; margin-bottom: 1.2rem; }

/* ═══ SERVICE DETAIL PAGE ═══ */
.deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.deliverable-item {
  border: 1px solid var(--border); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.deliverable-num { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.deliverable-text { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; }

/* ═══ SERVICES OVERVIEW GRID ═══ */
.services-overview-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border);
}
.svc-overview-card {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10; display: flex; flex-direction: column;
  justify-content: flex-end; cursor: pointer;
  background: var(--black);
}
.svc-overview-card:nth-child(5) { grid-column: span 2; aspect-ratio: auto; min-height: 280px; }
.svc-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.svc-overview-card:hover .svc-card-bg { transform: scale(1.04); }
.svc-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.35) 55%, transparent 100%);
}
.svc-card-hover-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,169,110,0.08);
  opacity: 0; transition: opacity 0.4s ease;
}
.svc-overview-card:hover .svc-card-hover-label { opacity: 1; }
.svc-card-hover-label span {
  font-family: 'Syne', sans-serif; font-size: var(--text-xs);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.svc-card-content { position: relative; z-index: 1; padding: 2rem; }
.svc-card-num { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--accent); margin-bottom: 0.4rem; }
.svc-card-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.4rem; margin-bottom: 0.3rem; }
.svc-card-desc { font-size: 0.84rem; color: var(--text-muted); font-weight: 300; }

/* ═══ ABOUT PAGE ═══ */
.about-story-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.about-quote { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--accent); line-height: 1.3; }
.about-body p { font-size: 0.95rem; color: var(--text-muted); font-weight: 300; line-height: 1.85; margin-bottom: 1.2rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { }
.team-photo {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(200,169,110,0.15) 0%, rgba(8,8,8,0.8) 100%);
  border: 1px solid var(--border); margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.team-photo span { font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 800; color: rgba(200,169,110,0.2); }
.team-name { font-family: 'Syne', sans-serif; font-weight: 600; margin-bottom: 0.3rem; }
.team-role { font-family: 'Syne', sans-serif; font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem; }
.team-bio { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.75; }

/* ═══ VALUES CARDS ═══ */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* ═══ CONTACT PAGE ═══ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.contact-left { position: relative; padding: 10rem 4rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.contact-right { padding: 10rem 4rem 4rem; background: var(--black); }
.contact-detail { margin-bottom: 0.8rem; }
.contact-detail span { font-family: 'Syne', sans-serif; font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.2rem; }
.contact-detail a, .contact-detail p { font-size: 1rem; color: var(--off-white); transition: color 0.3s ease; }
.contact-detail a:hover { color: var(--accent); }

/* ═══ SECTION SPACING ═══ */
.section { padding: var(--section-padding); position: relative; }
.section.bordered-top { border-top: 1px solid var(--border); }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.8rem; }
.section-intro { font-size: 0.95rem; color: var(--text-muted); font-weight: 300; max-width: 580px; line-height: 1.8; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .services-panel { grid-template-columns: 1fr; }
  .services-list { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-panel-right { display: none; }
  .services-list { display: none; }
  .svc-accordion { display: block; }
  .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { min-height: 60vh; padding: 8rem 2rem 3rem; }
  .contact-right { padding: 3rem 2rem 4rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-steps::before { display: none; }
  .case-grid { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .services-overview-grid { grid-template-columns: 1fr; }
  .svc-overview-card:nth-child(5) { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ═══ AOS OVERRIDES ═══ */
[data-aos] { pointer-events: auto !important; }




/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Wp2ywxg089UriCZaSExdy3sGt9zz86D3wyKK58VXh.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Wp2ywxg089UriCZaSExdy3sGt9zz86D3wyKy58Q.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Hp2ywxg089UriCZ2IHSeH.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Hp2ywxg089UriCZOIHQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Hp2ywxg089UriCZ2IHSeH.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Hp2ywxg089UriCZOIHQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Hp2ywxg089UriCZ2IHSeH.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Hp2ywxg089UriCZOIHQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* greek */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm2NL9Hz_.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm25L9Hz_.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm2BL9A.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* greek */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm2NL9Hz_.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm25L9Hz_.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm2BL9A.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* greek */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm2NL9Hz_.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm25L9Hz_.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm2BL9A.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* greek */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm2NL9Hz_.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm25L9Hz_.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm2BL9A.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* greek */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm2NL9Hz_.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm25L9Hz_.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm2BL9A.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
