/* ============================================
   Johann Haggard Architectural Design Studio
   Brand System & Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* --- Design Tokens --- */
:root {
  /* Brand Colors */
  --color-teal: #1a8a9b;
  --color-teal-dark: #14707e;
  --color-teal-light: #e0f4f7;
  --color-gold: #f0b547;
  --color-gold-dark: #d99e2e;
  --color-gold-light: #fdf3dc;
  --color-navy: #1a2e5a;
  --color-navy-light: #2a4478;
  --color-white: #ffffff;
  --color-offwhite: #f8f7f4;
  --color-text: #2c2c2c;
  --color-text-light: #5a5a5a;
  --color-border: #e2e0dc;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', 'Segoe UI', Tahoma, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 350ms ease;
  --transition-slow: 600ms ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 46, 90, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 46, 90, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 46, 90, 0.16);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  max-width: 65ch;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-xs);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

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

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

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

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

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

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
}

.nav__logo svg,
.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text);
  position: relative;
  padding: 0.25rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--color-teal);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav__cta:hover {
  background: var(--color-gold-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
  transition: right var(--transition-base);
  z-index: 999;
}

.nav__mobile.open {
  right: 0;
}

.nav__mobile a {
  display: block;
  font-size: 1.1rem;
  padding: 0.75rem 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.nav__mobile a:hover {
  color: var(--color-teal);
}

.nav__mobile .nav__cta {
  margin-top: var(--space-md);
  justify-content: center;
  width: 100%;
  text-align: center;
}

.nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 46, 90, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  z-index: 998;
}

.nav__overlay.open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
  .nav__hamburger {
    display: none;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  margin-top: var(--nav-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

/* Diagonal accent stripe echoing logo */
.hero__stripe {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: linear-gradient(
    135deg,
    var(--color-teal) 0%,
    var(--color-teal) 35%,
    var(--color-gold) 35%,
    var(--color-gold) 65%,
    var(--color-navy) 65%,
    var(--color-navy) 100%
  );
  transform: skewX(-15deg);
  opacity: 0.15;
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: var(--space-xl) var(--space-md);
  color: var(--color-white);
}

.hero__content .section-label {
  color: var(--color-gold);
}

.hero__content h1 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.hero__tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .hero__content {
    padding: var(--space-2xl) var(--space-xl);
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn--primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.btn--teal {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn--teal:hover {
  background: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--color-white);
  font-size: 1rem;
  padding: 1rem 2rem;
}

.btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

/* --- Service Cards --- */
.service-card {
  padding: var(--space-lg);
  border-radius: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--color-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--color-teal);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* --- Service Detail (services page) --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.service-detail:nth-child(even) .service-detail__image {
  order: 1;
}

.service-detail__image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-teal-light);
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__content h3 {
  margin-bottom: var(--space-xs);
}

.service-detail__content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Portfolio --- */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.portfolio-filters button {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.portfolio-filters button:hover,
.portfolio-filters button.active {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.portfolio-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.portfolio-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-teal-light);
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__info {
  padding: var(--space-sm) var(--space-md);
}

.portfolio-card__info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.portfolio-card__info span {
  font-size: 0.8rem;
  color: var(--color-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-card.hidden {
  display: none;
}

/* --- About page --- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-hero__image {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-teal-light);
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.about-value {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.about-value__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
}

.about-value h4 {
  margin-bottom: 0.25rem;
}

.about-value p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .about-hero {
    grid-template-columns: 1fr 1.5fr;
  }
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.contact-info__item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-teal);
  margin-top: 2px;
}

.contact-info__item h4 {
  margin-bottom: 0.15rem;
}

.contact-info__item p,
.contact-info__item a {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.contact-info__item a:hover {
  color: var(--color-teal);
}

.contact-map {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-teal-light);
  border: 1px solid var(--color-border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--nav-height);
  background: var(--color-offwhite);
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  margin-bottom: var(--space-xs);
}

.page-header p {
  font-size: 1.05rem;
  color: var(--color-text-light);
}

/* --- Footer --- */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

.footer__links a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.footer__contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 900;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 500ms; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Utility --- */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* --- Associate Cards --- */
.associate-card {
  padding: var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.associate-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.associate-card h4 {
  margin-bottom: 0.25rem;
}

.associate-card__trade {
  display: block;
  font-size: 0.85rem;
  color: var(--color-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.associate-card__contact {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.9rem;
}

.associate-card__contact a {
  color: var(--color-text-light);
}

.associate-card__contact a:hover {
  color: var(--color-teal);
}

/* --- Current Projects Status Badges --- */
.project-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.project-status--design {
  background: var(--color-gold-light);
  color: var(--color-gold-dark);
}

.project-status--construction {
  background: var(--color-teal-light);
  color: var(--color-teal-dark);
}

.project-status--approval {
  background: #e8e0f0;
  color: #5a3d7a;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 46, 90, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
  transition: color var(--transition-fast);
}

.lightbox__close:hover {
  color: white;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

.lightbox__prev:hover,
.lightbox__next:hover {
  color: white;
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

.lightbox__content {
  text-align: center;
  padding: 1rem;
  max-width: 95vw;
}

.lightbox__content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.lightbox__counter {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

@media (max-width: 767px) {
  .lightbox__prev,
  .lightbox__next {
    font-size: 2rem;
  }
  .lightbox__close {
    font-size: 2rem;
    top: 0.5rem;
    right: 1rem;
  }
}

/* --- Nav fix for medium breakpoints (6 links) --- */
@media (min-width: 768px) and (max-width: 1024px) {
  .nav__links {
    gap: var(--space-sm);
  }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 3px;
}
