/* =============================================
   Barnett Bows — Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,300;1,400&family=Inter:wght@400;500&display=swap');

/* ---- Variables -------------------------------- */
:root {
  --bg:       #FAF3EE;  /* linen  */
  --subtle:   #F2EBE6;  /* ivory  */
  --dark:     #24201D;  /* onyx   */
  --mid:      #1A1714;
  --accent:   #5C3820;  /* cocoa  */
  --gold:     #B88328;
  --text:     #24201D;
  --muted:    #8B8783;
  --border:   #DDD6CE;
  --surface:  #FFFFFF;
  --max-w:    980px;
  --nav-h:    68px;
}

/* ---- Reset ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ---- Base ------------------------------------- */
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #655d57; }
::-webkit-scrollbar-track { background: var(--dark); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }
p  { max-width: 64ch; }

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ---- Layout ----------------------------------- */
.container {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}

section { padding: 5rem 0; }

/* =============================================
   Navigation
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

nav {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #FAFAF8;
  letter-spacing: 0.01em;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 0.45rem 0.9rem;
  border-radius: 3px;
  transition: color 0.18s, background 0.18s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #FAFAF8;
  background: rgba(255,255,255,0.07);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   Hero
   ============================================= */
.hero {
  background: var(--dark);
  /* When you add images/hero.jpg it will appear automatically */
  background-image:
    linear-gradient(to bottom, rgba(17,17,16,0.52) 0%, rgba(17,17,16,0.72) 100%),
    url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 8rem 0 7rem;
  text-align: center;
}

.hero-inner {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hero h1 {
  color: #FAFAF8;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero p {
  color: rgba(250,250,248,0.68);
  font-size: 1.15rem;
  max-width: 46ch;
  line-height: 1.65;
}

/* ---- Buttons ---------------------------------- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  background: var(--accent);
  color: #FAFAF8;
  border: 1px solid var(--accent);
}

.btn:hover { background: var(--gold); border-color: var(--gold); }

.btn-outline {
  background: transparent;
  color: #FAFAF8;
  border: 1px solid rgba(255,255,255,0.32);
}

.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: transparent; }

.btn-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.18s;
}

.btn-text:hover { border-color: var(--accent); }

/* =============================================
   Page Header (About / Contact)
   ============================================= */
.page-header {
  background: var(--dark);
  padding: 4rem 0 3.5rem;
}

.page-header .container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-header h1 {
  color: #FAFAF8;
  font-style: italic;
  font-weight: 400;
}

.page-header p {
  color: rgba(255,255,255,0.46);
  font-size: 1.05rem;
  max-width: 48ch;
}

/* =============================================
   Services
   ============================================= */
.services { background: var(--bg); }

.services-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.services-list {
  border-top: 1px solid var(--border);
}

details { border-bottom: 1px solid var(--border); }

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.15s;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  transition: transform 0.3s ease, color 0.15s;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 1rem;
  line-height: 1;
  transition: transform 0.2s, color 0.2s;
}

details[open] > summary { color: var(--accent); }
details[open] > summary::after { transform: rotate(45deg); color: var(--accent); }
summary:hover { color: var(--accent); }

.service-body {
  max-width: 64ch;
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0.25rem 0 1.75rem;
  transition: height 0.32s ease, opacity 0.18s ease;
}

details[open] > .service-body {
  opacity: 1;
}

.service-body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* =============================================
   About Preview (Home page)
   ============================================= */
.about-preview { background: var(--subtle); }

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

@media (min-width: 640px) {
  .about-preview-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-preview-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-preview-text h2 { font-style: italic; font-weight: 400; }
.about-preview-text p  { color: var(--muted); }

.about-preview-image {
  aspect-ratio: 4 / 5;
  background: var(--border);
  /* When you add images/about-portrait.jpg it will appear automatically */
  background-image: url('images/about-portrait.jpg');
  background-size: cover;
  background-position: center top;
  border-radius: 2px;
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
  background: var(--mid);
  text-align: center;
  padding: 5.5rem 0;
}

.cta-section h2 {
  color: #FAFAF8;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  margin-inline: auto;
}

/* =============================================
   About Page
   ============================================= */
.about-section { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 680px) {
  .about-grid { grid-template-columns: 3fr 2fr; gap: 5rem; align-items: start; }
}

.about-text > * + * { margin-top: 1.1rem; }
.about-text h2 { font-style: italic; font-weight: 400; }
.about-text h3 { margin-top: 2.25rem; font-size: 1.25rem; }
.about-text p  { color: var(--muted); max-width: 60ch; }

.about-list {
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-list li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--muted);
  font-size: 1rem;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.about-list strong { color: var(--text); font-weight: 500; }

.about-aside-image {
  aspect-ratio: 3 / 4;
  background: var(--subtle);
  /* When you add images/about-portrait.jpg it will appear here automatically */
  background-image: url('images/about-portrait.jpg');
  background-size: cover;
  background-position: center top;
  border-radius: 2px;
}

.aside-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
}

.aside-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.4rem;
  display: block;
}

.aside-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.aside-card p  { color: var(--muted); font-size: 0.95rem; max-width: none; margin-bottom: 0.5rem; }
.aside-card p:last-of-type { margin-bottom: 0; }

hr.divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* =============================================
   Contact Page
   ============================================= */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 640px) {
  .contact-grid { grid-template-columns: 2fr 3fr; gap: 5rem; align-items: start; }
}

.contact-info h2 { font-style: italic; font-weight: 400; margin-bottom: 1rem; }
.contact-info p  { color: var(--muted); font-size: 0.97rem; max-width: none; margin-bottom: 0.85rem; }
.contact-info p:last-child { margin-bottom: 0; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }

label {
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
}

label .optional { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  font: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236E6860' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

input:focus, select:focus, textarea:focus { border-color: var(--accent); }

textarea { resize: vertical; min-height: 140px; }

.btn-submit {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: #FAFAF8;
  border: 1px solid var(--accent);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}

.btn-submit:hover { background: var(--gold); border-color: var(--gold); }

/* =============================================
   Thank You
   ============================================= */
.thankyou {
  text-align: center;
  padding: 8rem 0;
  background: var(--bg);
}

.thankyou h1 { color: var(--text); font-style: italic; font-weight: 400; margin-bottom: 1.25rem; }
.thankyou p  { color: var(--muted); margin-bottom: 2rem; margin-inline: auto; }

/* =============================================
   Testimonials
   ============================================= */
.testimonials {
  background: var(--mid);
  padding: 4.5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.testimonials-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonial-track {
  display: grid;
  text-align: center;
}

.testimonial {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}

.testimonial.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial blockquote { max-width: 58ch; margin: 0 auto; }

.testimonial blockquote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: rgba(250,250,248,0.9);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: none;
}

.testimonial cite {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.05em;
  font-style: normal;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.t-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: none;
  color: rgba(255,255,255,0.42);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s, color 0.18s;
}

.t-btn:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.85); }

.t-dots { display: flex; align-items: center; gap: 0.5rem; }

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}

.t-dot.active { background: var(--gold); transform: scale(1.4); }

/* =============================================
   Footer bottom
   ============================================= */
.footer-bottom {
  background: var(--dark);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.22);
  font-size: 0.85rem;
  max-width: none;
}

/* =============================================
   About Page — restructured sections
   ============================================= */
.who-section  { background: var(--bg); }
.offer-section { background: var(--subtle); }

/* Bio text: full-width block above the image row */
.who-text {
  margin-bottom: 3rem;
}

/* Override italic/light weight so the heading reads with authority */
.who-text h2 {
  font-style: normal;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 1.75rem;
}

/* Image + credentials card: side by side below the text */
.who-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 680px) {
  .who-bottom { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

@media (min-width: 680px) {
  .offer-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.offer-grid h3 { margin-bottom: 1rem; font-size: 1.25rem; }

/* =============================================
   Contact — preferred contact checkboxes
   ============================================= */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  user-select: none;
}

.checkbox-pill input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-pill:has(input:checked) {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(92, 56, 32, 0.05);
}

/* =============================================
   Bows for Sale
   ============================================= */
.bows-section  { background: var(--bg); }
.source-section { background: var(--mid); text-align: center; padding: 5.5rem 0; }
.source-section h2 { color: #FAFAF8; font-style: italic; font-weight: 400; margin-bottom: 1rem; }
.source-section p  { color: rgba(255,255,255,0.5); margin-bottom: 2rem; margin-inline: auto; }

.bow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.bow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bow-card-image {
  aspect-ratio: 3 / 2;
  background: var(--subtle);
  /* Inline style each card: background-image: url('images/bows/bow-name.jpg') */
  background-size: cover;
  background-position: center;
}

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

.bow-period {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.bow-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.bow-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
  max-width: none;
}

.bow-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.bow-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
}

/* placeholder state when no bows listed yet */
.bow-placeholder {
  text-align: center;
  padding: 4rem 0;
  color: var(--muted);
}

.bow-placeholder p { margin-inline: auto; }

/* Bow images folder note: add images inside images/bows/ */

/* =============================================
   Bows — Coming Soon state
   ============================================= */
.bows-coming-soon {
  background: var(--bg);
  text-align: center;
  padding: 7rem 0;
}

.bows-coming-soon h2 {
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1rem;
}

.bows-coming-soon p { color: var(--muted); margin-inline: auto; }

/* =============================================
   Cookie Notice (UK PECR)
   ============================================= */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
}

.cookie-inner {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
  max-width: none;
  flex: 1;
}

.cookie-inner a { color: rgba(255,255,255,0.55); text-decoration: underline; }

.cookie-accept {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  background: none;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 3px;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.18s, color 0.18s;
}

.cookie-accept:hover { border-color: rgba(255,255,255,0.55); color: #FAF3EE; }

/* =============================================
   Scroll Animations
   ============================================= */
@media (prefers-reduced-motion: no-preference) {

  /* Single element fade-up */
  [data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  [data-animate].in-view {
    opacity: 1;
    transform: none;
  }

  /* Optional stagger delays for sequential siblings */
  [data-animate][data-delay="1"] { transition-delay: 0.12s; }
  [data-animate][data-delay="2"] { transition-delay: 0.24s; }
  [data-animate][data-delay="3"] { transition-delay: 0.36s; }

  /* Staggered grid / list groups — children animate in sequence */
  [data-animate-group] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  [data-animate-group] > *.in-view {
    opacity: 1;
    transform: none;
  }

  [data-animate-group] > *:nth-child(1) { transition-delay: 0s;     }
  [data-animate-group] > *:nth-child(2) { transition-delay: 0.12s;  }
  [data-animate-group] > *:nth-child(3) { transition-delay: 0.24s;  }
  [data-animate-group] > *:nth-child(4) { transition-delay: 0.36s;  }
  [data-animate-group] > *:nth-child(5) { transition-delay: 0.48s;  }

}

/* =============================================
   Responsive — Mobile
   ============================================= */
@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 6rem 0 5rem; }
  .cta-section, .testimonials { padding: 4rem 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--dark);
    padding: 0.75rem 0 1.25rem;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1.5rem; display: block; }
}
