/* ===========================================
   Golden Years Senior Foot Care — Style Sheet
   Colors: Navy (#1e3356) + Gold (#c9951a)
   Tone: Warm, trustworthy, professional
   =========================================== */

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

/* --- Design Tokens --- */
:root {
  /* Typography */
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-hero: clamp(2.5rem,   1rem    + 4vw,    4.5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Colors — Navy + Gold palette */
  --color-bg:             #faf9f6;
  --color-surface:        #ffffff;
  --color-surface-warm:   #f5f0e8;
  --color-surface-navy:   #1e3356;

  --color-text:           #2a2a2a;
  --color-text-muted:     #6b6b6b;
  --color-text-light:     #f9f8f4;

  --color-primary:        #1e3356;
  --color-primary-hover:  #152744;
  --color-primary-light:  #2d4a7a;

  --color-accent:         #c9951a;
  --color-accent-hover:   #b5850f;
  --color-accent-light:   #e8d5a0;
  --color-accent-subtle:  #f7f0dc;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(30, 51, 86, 0.06);
  --shadow-md: 0 4px 12px rgba(30, 51, 86, 0.08);
  --shadow-lg: 0 12px 32px rgba(30, 51, 86, 0.12);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}


/* --- Global --- */
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
}

a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  color: var(--color-accent-hover);
}

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}


/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 100;
  font-size: var(--text-sm);
}
.skip-link:focus {
  top: var(--space-2);
}


/* --- Header / Nav --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 51, 86, 0.08);
  transition: box-shadow 300ms ease;
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-6);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-primary);
  flex-shrink: 0;
}
.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 6px;
}
.footer__brand .nav__logo-img {
  height: 48px;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 0.85rem + 0.5vw, 1.2rem);
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .nav__logo-name { display: none; }
}
.nav__logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.nav__links {
  display: none;
  list-style: none;
  gap: var(--space-7, 1.75rem);
  align-items: center;
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-1) 0;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 250ms ease;
}
.nav__links a:hover::after {
  width: 100%;
}

/* Right-side actions: phone text + book button */
.nav__actions {
  display: none;
  align-items: center;
  gap: var(--space-5);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .nav__actions { display: flex; }
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms ease;
}
.nav__phone:hover {
  color: var(--color-primary);
}
.nav__phone svg {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.nav__book-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(201, 149, 26, 0.25);
  transition: background 200ms ease, box-shadow 200ms ease;
}
.nav__book-btn:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 14px rgba(201, 149, 26, 0.38);
  color: #fff;
}

/* Mobile menu toggle */
.nav__toggle {
  display: flex;
  padding: var(--space-2);
  color: var(--color-primary);
}
.nav__toggle svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .nav__toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(30, 51, 86, 0.4);
  backdrop-filter: blur(4px);
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--color-surface);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  box-shadow: var(--shadow-lg);
}
.mobile-menu__close {
  align-self: flex-end;
  padding: var(--space-2);
  color: var(--color-text-muted);
}
.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}
.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.mobile-menu__links a {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(30, 51, 86, 0.08);
}
.mobile-menu__links a:hover {
  color: var(--color-accent);
}
.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--text-base);
}


/* --- Hero Section --- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30, 51, 86, 0.92) 0%,
    rgba(30, 51, 86, 0.78) 50%,
    rgba(30, 51, 86, 0.55) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
  }
}
.hero__left {
  max-width: 560px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201, 149, 26, 0.2);
  border: 1px solid rgba(201, 149, 26, 0.4);
  color: var(--color-accent-light);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-4);
  line-height: 1.1;
}
.hero__title span {
  color: var(--color-accent);
}
.hero__desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 48ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Hero mini calendar (right column) */
.hero__right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero-cal-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  padding: var(--space-5);
  backdrop-filter: blur(4px);
}
.hero-cal-card__eyebrow {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  text-align: center;
  line-height: 1.3;
}
.hero-cal-card__cta-hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-3);
}

/* Mini calendar widget (hero) */
.hero-cal {
  user-select: none;
}
.hero-cal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}
.hero-cal__month {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}
.hero-cal__nav {
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: background 150ms ease;
}
.hero-cal__nav:hover {
  background: var(--color-surface-warm);
}
.hero-cal__nav:disabled {
  opacity: 0.3;
  cursor: default;
}
.hero-cal__nav svg {
  width: 14px;
  height: 14px;
}
.hero-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.hero-cal__day-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  padding-bottom: var(--space-1);
}
.hero-cal__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: var(--text-xs);
  font-weight: 500;
  transition: background 150ms ease, color 150ms ease;
  position: relative;
}
.hero-cal__day--empty { /* spacer */ }
.hero-cal__day--past {
  color: #ccc;
  cursor: not-allowed;
}
.hero-cal__day--unavailable {
  color: var(--color-text-muted);
  opacity: 0.5;
}
.hero-cal__day--available {
  color: var(--color-primary);
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 0 0 2px rgba(134, 197, 142, 0.75);
  border-radius: 6px;
}
.hero-cal__day--available:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(134, 197, 142, 0.75);
}
.hero-cal--loading .hero-cal__grid {
  opacity: 0.4;
  pointer-events: none;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(201, 149, 26, 0.3);
  transition: background 200ms ease, box-shadow 200ms ease, color 200ms ease;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201, 149, 26, 0.35);
}
.btn-primary svg {
  width: 18px;
  height: 18px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease,
              color 200ms ease, box-shadow 200ms ease;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.15);
}
.btn-outline svg {
  width: 18px;
  height: 18px;
}

/* Book Now — hero CTA */
.btn-book-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 149, 26, 0.45);
  transition: background 200ms ease, box-shadow 200ms ease, transform 150ms ease;
  animation: pulse-book 2.8s ease-in-out infinite;
}
.btn-book-cta:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 6px 28px rgba(201, 149, 26, 0.55);
  transform: translateY(-2px);
  color: #fff;
  animation: none;
}
.btn-book-cta svg {
  width: 20px;
  height: 20px;
}
@keyframes pulse-book {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 149, 26, 0.45); }
  50%       { box-shadow: 0 4px 28px rgba(201, 149, 26, 0.65), 0 0 0 7px rgba(201, 149, 26, 0.14); }
}

/* Book Now — white variant (on gold banner) */
.btn-book-white {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: #fff;
  color: var(--color-accent);
  font-weight: 700;
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: background 200ms ease, box-shadow 200ms ease, transform 150ms ease;
}
.btn-book-white:hover {
  background: var(--color-bg);
  color: var(--color-accent-hover);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.btn-book-white svg {
  width: 20px;
  height: 20px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  font-size: var(--text-sm);
  text-decoration: none;
  padding: var(--space-3) 0;
  transition: color 200ms ease, gap 200ms ease;
}
.btn-secondary:hover {
  color: var(--color-accent-light);
  gap: calc(var(--space-2) + 2px);
}
.btn-secondary svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}
.btn-secondary:hover svg {
  transform: translateY(2px);
}


/* --- Section Shared --- */
.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.section__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.7;
}


/* --- Trust Bar --- */
.trust-bar {
  background: var(--color-surface);
  border-bottom: 1px solid rgba(30, 51, 86, 0.06);
  padding-block: var(--space-6);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}


/* --- Services Section --- */
.services {
  background: var(--color-surface);
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--color-bg);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 51, 86, 0.06);
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-subtle);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}


/* --- Full-bleed image break --- */
.image-break {
  width: 100%;
  max-height: 340px;
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}


/* --- About Section --- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-8);
}
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
  }
}
.about__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 4;
}
.about__body p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}
.about__body p:last-of-type {
  margin-bottom: var(--space-6);
}
.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent-subtle);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.credential-tag svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}


/* --- Service Area Section --- */
.service-area {
  background: var(--color-surface-navy);
  color: var(--color-text-light);
}
.service-area .section__eyebrow {
  color: var(--color-accent-light);
}
.service-area .section__title {
  color: #fff;
}
.service-area .section__desc {
  color: rgba(255,255,255,0.7);
}
.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.area-list li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}


/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, #d9a520 100%);
  padding-block: clamp(var(--space-10), 6vw, var(--space-16));
  text-align: center;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-3);
}
.cta-banner__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-8);
  max-width: 50ch;
  margin-inline: auto;
}
.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}
.cta-banner__or {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  font-style: italic;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #fff;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}
.btn-white svg {
  width: 18px;
  height: 18px;
}


/* --- Footer --- */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-12) var(--space-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer__brand .nav__logo {
  color: #fff;
}
.footer__brand .nav__logo-name {
  color: #fff;
}
.footer__brand .nav__logo-sub {
  color: var(--color-accent-light);
}
.footer__tagline {
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 36ch;
}
.footer__heading {
  font-weight: 600;
  font-size: var(--text-sm);
  color: #fff;
  margin-bottom: var(--space-4);
  letter-spacing: 0.03em;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer__links a:hover {
  color: var(--color-accent-light);
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer__contact-item a:hover {
  color: var(--color-accent-light);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
}


/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
