/* ============================================
   Bilbao Abogados — Design system
   ============================================ */

:root {
  --navy: #2A4058;
  --navy-dark: #1c2c3d;
  --navy-light: #3d5872;
  --tan: #D7A67A;
  --tan-dark: #c48f5f;
  --tan-light: #ecd9c3;
  --white: #ffffff;
  --offwhite: #f7f4f0;
  --ink: #2c333a;
  --ink-soft: #5b6570;
  --border: #e6e0d8;

  --font: "Alexandria", -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius: 6px;
  --shadow-sm: 0 2px 10px rgba(42, 64, 88, 0.08);
  --shadow-md: 0 12px 32px rgba(42, 64, 88, 0.14);
  --header-h: 84px;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

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

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

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tan-dark);
  margin-bottom: .9em;
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 64px 0; }

.section--offwhite { background: var(--offwhite); }

.section--navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: rgba(255,255,255,.92);
}

.section--navy h2, .section--navy h3 { color: var(--white); }

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p { color: var(--ink-soft); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--tan);
  color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--tan-dark); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn--outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover { background: #1ebc5a; }

.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--block { width: 100%; justify-content: center; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Logo ---------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.logo img { height: 34px; width: auto; display: block; }
.site-footer .logo img { height: 38px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.main-nav { display: flex; align-items: center; gap: 8px; }

.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover, .main-nav a.is-active { background: var(--offwhite); color: var(--navy); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a { display: block; border-radius: 4px; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .45);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(215,166,122,.16) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
}
.hero-mark {
  width: 100%;
  max-width: 320px;
  justify-self: center;
  opacity: .9;
}
.hero-mark svg { width: 100%; height: auto; color: var(--tan); opacity: .35; }

/* ---------- Hero with photo (home) ---------- */

.hero--photo {
  padding: 0;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
}
.hero--photo .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
  width: 100%;
}
.hero-photo-text {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-photo-text .eyebrow,
.hero-photo-text h1,
.hero-photo-text p.lead { margin: 0; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-photo-text > * {
  opacity: 0;
  animation: heroFadeUp .7s ease forwards;
}
.hero-photo-text > *:nth-child(1) { animation-delay: .05s; }
.hero-photo-text > *:nth-child(2) { animation-delay: .18s; }
.hero-photo-text > *:nth-child(3) { animation-delay: .34s; }
.hero-photo-text > *:nth-child(4) { animation-delay: .48s; }

@keyframes heroPhotoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-photo-wrap {
  animation: heroPhotoFadeIn 1s ease .1s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-text > * { animation: none; opacity: 1; }
  .hero-photo-wrap { animation: none; }
}

.hero-photo-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  max-width: 640px;
  z-index: 1;
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(.35) brightness(.82) contrast(1.12) saturate(.85);
}
.hero-photo-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-dark) 0%, rgba(28,44,61,0) 42%),
    linear-gradient(to top, var(--navy-dark) 0%, rgba(28,44,61,0) 22%);
}

@media (max-width: 1020px) {
  .hero-photo-wrap { display: none; }
  .hero--photo { min-height: 0; }
  .hero--photo .container { padding-top: 72px; padding-bottom: 64px; }
  .hero-photo-text { max-width: 100%; }
}

.hero--page {
  padding: 52px 0 56px;
}
.hero--page .eyebrow { color: var(--tan-light); }
.hero--page p.lead { max-width: 620px; }

/* ---------- Areas cards ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.area-card .icon {
  width: 48px; height: 48px;
  color: var(--tan-dark);
  margin-bottom: 18px;
}
.area-card h3 { margin-bottom: .5em; }
.area-card p { color: var(--ink-soft); font-size: .95rem; }
.area-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-weight: 600; font-size: .9rem;
  margin-top: 10px;
}
.area-card .more svg { width: 14px; height: 14px; transition: transform .15s ease; }
.area-card:hover .more svg { transform: translateX(4px); }

/* ---------- Stats ---------- */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat .num {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--tan);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label { font-size: .95rem; color: rgba(255,255,255,.8); }

/* ---------- Testimonials ---------- */

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--tan);
  height: 100%;
}
.testi-card .quote-mark {
  font-size: 3rem;
  color: var(--tan-light);
  font-family: Georgia, serif;
  line-height: .5;
  display: block;
  margin-bottom: 10px;
}
.testi-card p.quote { font-style: italic; color: var(--ink); }
.testi-card .who { font-weight: 600; color: var(--navy); font-size: .9rem; margin-top: 16px; }

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--tan);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
}
.cta-banner h2 { color: var(--navy-dark); margin: 0; max-width: 560px; }

/* ---------- Team ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-card .photo {
  aspect-ratio: 4/5;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .avatar-placeholder {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--tan-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; font-weight: 700;
}
.team-card .info { padding: 24px 26px 28px; }
.team-card .role {
  color: var(--tan-dark); font-weight: 600; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px;
  display: block;
}
.team-card p.bio { color: var(--ink-soft); font-size: .92rem; margin-top: 10px; }
.placeholder-tag {
  display: inline-block;
  font-size: .72rem;
  color: var(--ink-soft);
  background: var(--offwhite);
  border: 1px dashed var(--border);
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 10px;
}

/* ---------- History block ---------- */

.history {
  max-width: 760px;
  margin: 0 auto;
}
.history blockquote {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
  border-left: 3px solid var(--tan);
  padding-left: 24px;
}
.history blockquote strong { color: var(--navy); }
.history .closing-line {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
}

/* ---------- Service lists (area pages) ---------- */

.service-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.service-col h3 {
  font-size: 1.05rem;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--tan-light);
  margin-bottom: 18px;
}
.service-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list .bullet {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--tan-light);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
  margin-top: 2px;
}
.service-list strong { color: var(--navy); display: block; margin-bottom: 2px; font-size: .96rem; }
.service-list span.desc { color: var(--ink-soft); font-size: .9rem; }

.service-list--split {
  columns: 2;
  column-gap: 48px;
}
.service-list--split li {
  break-inside: avoid;
}

.why-block {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 20px;
}
.why-block h3 { margin-bottom: .4em; }

/* ---------- Blog ---------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.post-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .18s ease, transform .18s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-card .thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
}
.post-card .thumb svg { width: 46px; height: 46px; color: var(--tan); opacity: .8; }
.post-card .thumb--photo { overflow: hidden; }
.post-card .thumb--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.post-card:hover .thumb--photo img { transform: scale(1.04); }
.post-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card .date { font-size: .78rem; color: var(--ink-soft); margin-bottom: 8px; }
.post-card h3 { font-size: 1.15rem; }
.post-card .excerpt { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.post-card .readmore { font-weight: 600; color: var(--navy); font-size: .88rem; margin-top: 14px; }

.post-card--soon {
  border-style: dashed;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  padding: 40px 24px;
}

/* ---------- Article ---------- */

.article {
  max-width: 760px;
  margin: 0 auto;
}
.article .meta {
  color: var(--ink-soft);
  font-size: .88rem;
  margin-bottom: 20px;
}
.article h2 { margin-top: 1.4em; font-size: 1.5rem; }
.article h3 { margin-top: 1.2em; font-size: 1.15rem; }
.article ul, .article ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { margin-bottom: .5em; }
.article .legal-box {
  background: var(--offwhite);
  border-left: 3px solid var(--tan);
  padding: 18px 22px;
  font-size: .92rem;
  color: var(--ink-soft);
  margin: 1.6em 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  font-size: .92rem;
}
.article th, .article td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}
.article th { background: var(--offwhite); color: var(--navy); }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.contact-card .icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--tan);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .icon svg { width: 20px; height: 20px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.contact-quote {
  margin-top: 12px;
  padding: 8px 4px 8px 22px;
  border-left: 3px solid var(--tan);
}
.contact-quote p {
  margin: 0;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: .95rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--offwhite);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--tan);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 14px; }
.form-success {
  display: none;
  background: var(--offwhite);
  border: 1px solid var(--tan-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 500;
}
.form-success.is-visible { display: block; }
.form-card.is-submitted form { display: none; }

/* ---------- Disclaimer / footer ---------- */

.disclaimer {
  font-size: .82rem;
  color: var(--ink-soft);
  background: var(--offwhite);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.78);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col p { font-size: .9rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .92rem; transition: color .15s ease; }
.footer-col ul a:hover { color: var(--tan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a:hover { color: var(--tan); }

/* ---------- Utilities ---------- */

.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mark { display: none; }
  .grid-3, .service-columns, .team-grid, .blog-grid, .stats-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .main-nav, .header-actions .btn--primary { display: none; }
  .nav-toggle { display: block; }

  .site-header .container { position: relative; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 10px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 16px; }
  .has-dropdown .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; display: none;
    padding-left: 12px;
  }
  .has-dropdown.is-open .dropdown { display: block; }

  .cta-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .header-actions .btn { padding: 10px 16px; font-size: .82rem; }
  .wa-float { width: 52px; height: 52px; bottom: max(18px, env(safe-area-inset-bottom)); right: 18px; }
  .wa-float svg { width: 26px; height: 26px; }
  .section { padding: 56px 0; }
  .section--tight { padding: 44px 0; }
  :root { --header-h: 72px; }
  .container { padding: 0 20px; }
  .logo img { height: 30px; }
  .btn { white-space: normal; text-align: center; justify-content: center; }
  .cta-row { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-banner { padding: 32px 22px; gap: 24px; }
  .service-list--split { columns: 1; }
  .why-block { padding: 26px 22px; }
  .form-card { padding: 24px 18px; }
  .contact-card { padding: 18px; }
  .stats-row { gap: 24px; }
  .article table { display: block; overflow-x: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Robustez global (tablet / móvil) ---------- */
.contact-cards, .contact-card, .contact-card > div, .form-card, .service-list li > div { min-width: 0; }
.contact-card p, .contact-card a, .footer-col a, .article p { overflow-wrap: anywhere; }
.field input, .field select, .field textarea { font-size: 16px; }
@media (min-width: 641px) and (max-width: 1100px) {
  .container { padding: 0 32px; }
  .main-nav a { padding: 10px 12px; font-size: .88rem; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .site-header .logo img { height: 30px; }
  .header-actions .btn { padding: 10px 16px; font-size: .82rem; }
}
