/* ===========================================================
   BUGU — design tokens
   Палитра: тёмная хвоя + тёплая кость + золото рогов
=========================================================== */
:root{
  /* Light (default) */
  --bg: #F6F4EC;
  --bg-tint: #EFEDE0;
  --bg-elevated: #FFFDF8;
  --text: #16211B;
  --text-secondary: #5E6B62;
  --border: #E1DDCC;
  --accent: #1D6B47;
  --accent-strong: #145034;
  --accent-soft: #E5EFE6;
  --accent-text: #FFFFFF;
  --gold: #A87B34;
  --gold-bright: #C89A44;
  --gold-soft: #F4EBD8;
  --terminal-bg: #101A14;
  --terminal-text: #DAE3D9;
  --code-green: #7FD4A0;
  --code-gold: #D6AE6B;
  --shadow: 0 1px 2px rgba(22,33,27,0.05), 0 10px 30px rgba(22,33,27,0.07);
  --shadow-lg: 0 2px 4px rgba(22,33,27,0.05), 0 24px 60px rgba(22,33,27,0.10);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', monospace;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 32px;

  color-scheme: light;
}

html[data-theme="dark"]{
  --bg: #0E1712;
  --bg-tint: #121C16;
  --bg-elevated: #16211A;
  --text: #EFEFE4;
  --text-secondary: #8C9A90;
  --border: #24322B;
  --accent: #56B583;
  --accent-strong: #6FCB99;
  --accent-soft: #16281E;
  --accent-text: #071410;
  --gold: #D6AE6B;
  --gold-bright: #E4C387;
  --gold-soft: #241D10;
  --terminal-bg: #070C09;
  --terminal-text: #C6D2C5;
  --shadow: 0 1px 2px rgba(0,0,0,0.4), 0 10px 34px rgba(0,0,0,0.45);
  --shadow-lg: 0 2px 6px rgba(0,0,0,0.45), 0 28px 70px rgba(0,0,0,0.55);
  color-scheme: dark;
}

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

html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
}

a{ color:inherit; text-decoration:none; }
img, svg{ max-width:100%; }

::selection{ background: var(--accent); color: var(--accent-text); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ===========================================================
   ЛОГОТИП
=========================================================== */
.brand-mark{
  width: 30px;
  height: 32.5px;
  display: block;
  color: var(--text);
  flex: none;
}
.brand-mark-sm{ width: 22px; height: 23.8px; }

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo-word{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.logo:hover .brand-mark{ color: var(--accent); }

/* ===========================================================
   THEME TOGGLE
=========================================================== */
.nav-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-toggle{
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.theme-toggle:hover{ transform: scale(1.06); border-color: var(--accent); color: var(--accent); }
.theme-toggle:focus-visible{ outline: 2px solid var(--accent); outline-offset: 2px; }
.icon-moon{ display:none; }
html[data-theme="dark"] .icon-sun{ display:none; }
html[data-theme="dark"] .icon-moon{ display:block; }

/* ===========================================================
   NAV
=========================================================== */
.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links{
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-links a{
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a::after{
  content:'';
  position:absolute;
  left:0; right:100%; bottom:0;
  height:1.5px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.nav-links a:hover{ color: var(--text); }
.nav-links a:hover::after{ right:0; }

.nav-cta{
  background: var(--accent);
  color: var(--accent-text);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-cta:hover{ background: var(--accent-strong); transform: translateY(-1px); }

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

/* ===========================================================
   BUTTONS
=========================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-primary{ background: var(--accent); color: var(--accent-text); }
.btn-primary:hover{ background: var(--accent-strong); transform: translateY(-2px); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold); }
.btn-wide{ width: 100%; }
.btn:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

/* ===========================================================
   HERO
=========================================================== */
.hero{
  position: relative;
  overflow: hidden;
  padding: 72px 24px 48px;
  background:
    radial-gradient(1000px 480px at 78% -12%, var(--accent-soft), transparent 65%),
    radial-gradient(720px 420px at 4% 8%, var(--gold-soft), transparent 60%);
}
.hero-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: color-mix(in srgb, var(--bg-elevated) 70%, transparent);
}
.dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); }
  70%{ box-shadow: 0 0 0 7px transparent; }
  100%{ box-shadow: 0 0 0 0 transparent; }
}

.hero h1{
  font-size: clamp(2.15rem, 4.4vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 24px;
  max-width: 15ch;
}
.highlight{
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.highlight::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom: 0.08em;
  height: 0.14em;
  background: var(--gold);
  opacity: 0.45;
  border-radius: 2px;
}

.hero-sub{
  font-size: 1.06rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 34px;
  line-height: 1.65;
}

.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats{
  display: flex;
  gap: 40px;
}
.stat{
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}
.stat-num{
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-label{
  font-size: 0.78rem;
  color: var(--text-secondary);
  max-width: 100px;
  line-height: 1.35;
}

/* ---- hero demo ---- */
.hero-demo{ position: relative; }



.hero-glyph{
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 694px;
  max-width: none;
  color: var(--text);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.chat-window{
  position: relative;
  z-index: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.chat-header{
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-tint);
}
.chat-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.chat-title{
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}
.chat-body{
  padding: 20px;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.msg{
  max-width: 82%;
  padding: 11px 16px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  animation: msgIn 0.4s ease forwards;
}
@keyframes msgIn{ to{ opacity:1; transform: translateY(0); } }
.msg-client{
  background: var(--bg-tint);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}
.msg-agent{
  background: var(--accent);
  color: var(--accent-text);
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  font-weight: 500;
}

.chat-input-row{
  padding: 12px 18px;
  border-top: 1px solid var(--border);
}
.chat-input-fake{
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
}

.code-float{
  position: absolute;
  z-index: 2;
  bottom: -24px;
  left: -26px;
  background: var(--terminal-bg);
  color: var(--terminal-text);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.code-kw{ color: var(--code-gold); }
.code-str{ color: var(--code-green); }
.code-dim{ opacity: 0.6; }

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; gap: 56px; }
  .hero-demo{ order: -1; max-width: 440px; margin: 0 auto; }
  .code-float{ display: none; }
  .hero-glyph{ width: 420px; height: 455px; top: 36%; }
  .hero h1{ max-width: none; }
}
@media (max-width: 560px){
  .hero{ padding: 44px 18px 32px; }
  .hero-stats{ gap: 20px; flex-wrap: wrap; }
}

/* ===========================================================
   SECTIONS
=========================================================== */
section{
  max-width: var(--container);
  margin: 0 auto;
  padding: 104px 24px;
}
.section-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section-eyebrow::before{
  content:'';
  width: 22px;
  height: 1.5px;
  background: var(--gold);
}
section h2{
  font-size: clamp(1.75rem, 3.1vw, 2.6rem);
  margin-bottom: 50px;
  max-width: 620px;
}
.inline-link{
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}
.inline-link:hover{ border-bottom-color: var(--accent); }

@media (max-width: 640px){
  section{ padding: 66px 18px; }
  section h2{ margin-bottom: 34px; }
}

/* ===========================================================
   SERVICES
=========================================================== */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card{
  background: var(--bg-elevated);
  padding: 34px 30px;
  position: relative;
  transition: background 0.25s ease;
}
.service-card::before{
  content:'';
  position:absolute;
  left:0; top:0; bottom:0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}
.service-card:hover{ background: var(--bg-tint); }
.service-card:hover::before{ transform: scaleY(1); }
.service-num{
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}
.service-card h3{
  font-size: 1.18rem;
  margin-bottom: 11px;
}
.service-card p{
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.service-card-featured{
  background: var(--accent-soft);
}
.service-card-featured:hover{ background: var(--accent-soft); }
.service-link{
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
}
.service-link:hover{ color: var(--gold); }

@media (max-width: 880px){ .services-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .services-grid{ grid-template-columns: 1fr; } }

/* ===========================================================
   AGENT
=========================================================== */
.agent{
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 24px;
  margin-bottom: 24px;
}
.agent-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.agent-lead{
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 460px;
}
.agent-features{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 38px;
}
.agent-features li{
  display: flex;
  gap: 14px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.agent-features strong{
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 600;
  font-size: 1.02rem;
}
.feature-icon{ color: var(--gold); font-size: 0.72rem; margin-top: 6px; }

.terminal{
  background: var(--terminal-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.terminal-header{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.term-dot{ width:10px; height:10px; border-radius:50%; }
.term-dot.red{ background:#D97757; }
.term-dot.yellow{ background:#D6AE6B; }
.term-dot.green{ background:#7FD4A0; }
.term-title{
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
}
.terminal-body{
  padding: 22px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--terminal-text);
  min-height: 265px;
}
.term-line{ opacity: 0; animation: termIn 0.3s ease forwards; }
@keyframes termIn{ to{ opacity:1; } }
.term-ok{ color: var(--code-green); }
.term-tag{ color: var(--code-gold); }

@media (max-width: 920px){
  .agent-inner{ grid-template-columns: 1fr; gap: 42px; }
  .agent{ border-radius: 22px; padding: 56px 22px; }
}

/* ===========================================================
   PROCESS
=========================================================== */
.process-track{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.process-step{
  border-top: 2px solid var(--border);
  padding-top: 22px;
  position: relative;
  transition: border-color 0.25s ease;
}
.process-step::before{
  content:'';
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.process-step:hover{ border-top-color: var(--gold); }
.process-step:hover::before{ border-color: var(--gold); background: var(--gold); }
.process-marker{
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.process-step h3{ font-size: 1.08rem; margin-bottom: 9px; }
.process-step p{
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 920px){ .process-track{ grid-template-columns: repeat(2, 1fr); gap: 34px 24px; } }
@media (max-width: 540px){ .process-track{ grid-template-columns: 1fr; } }

/* ===========================================================
   WORK
=========================================================== */
.work-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.work-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.work-thumb{ height: 168px; }
.work-thumb-1{ background: linear-gradient(140deg, #1D6B47, #2F9C68 65%, #A87B34); }
.work-thumb-2{ background: linear-gradient(140deg, #145034, #4F7A44 60%, #C89A44); }
.work-thumb-3{ background: linear-gradient(140deg, #2A4739, #A87B34 70%, #E0C489); }
.work-card h3{
  font-size: 1.1rem;
  padding: 22px 22px 8px;
}
.work-card p{
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0 22px;
  line-height: 1.55;
}
.work-tags{
  display: block;
  padding: 16px 22px 22px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

@media (max-width: 880px){ .work-grid{ grid-template-columns: 1fr; } }

/* ===========================================================
   ABOUT
=========================================================== */
.about{
  background: var(--bg-tint);
  border-radius: var(--radius-lg);
}
.about-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: -16px;
}
.about-cols p{
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-cols strong{ color: var(--text); font-weight: 700; }
.about-tags{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}
.about-tags li{
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-elevated);
}

@media (max-width: 820px){
  .about-cols{ grid-template-columns: 1fr; gap: 0; }
  .about{ border-radius: 22px; }
}

/* ===========================================================
   FAQ
=========================================================== */
.faq-list{
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item{
  background: var(--bg-elevated);
  padding: 4px 26px;
  transition: background 0.2s ease;
}
.faq-item[open]{ background: var(--bg-tint); }
.faq-item summary{
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease;
  flex: none;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{
  padding-bottom: 20px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
  max-width: 62ch;
}

/* ===========================================================
   CONTACT
=========================================================== */
.contact{
  margin-bottom: 72px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.contact-inner{ max-width: 580px; margin: 0 auto; }
.contact .section-eyebrow{ justify-content: center; }
.contact h2{ margin: 0 auto 14px; }
.contact-lead{
  color: var(--text-secondary);
  margin-bottom: 38px;
  line-height: 1.6;
}
.contact-form{
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.form-row{ display: flex; gap: 14px; }
.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 14px 17px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.94rem;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color: var(--text-secondary); opacity: 0.75; }
.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-direct{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-size: 0.87rem;
  font-style: normal;
  color: var(--text-secondary);
}
.contact-links{ display: flex; gap: 18px; }
.contact-direct a{ color: var(--accent); font-weight: 600; }
.contact-direct a:hover{ color: var(--gold); }

@media (max-width: 560px){
  .form-row{ flex-direction: column; }
  .contact{ border-radius: 22px; padding: 56px 22px; margin-bottom: 40px; }
}

/* ===========================================================
   FOOTER
=========================================================== */
.footer{
  border-top: 1px solid var(--border);
  padding: 30px 24px;
  background: var(--bg-tint);
}
.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.footer-links{ display: flex; gap: 20px; }
.footer-links a:hover{ color: var(--gold); }

@media (max-width: 700px){
  .footer-inner{ flex-direction: column; align-items: flex-start; }
}
