/* ============================================================
   JP Modelling Studio — Global Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Marck+Script&display=swap');

@font-face {
  font-family: 'Marcellus';
  src: url('../assets/fonts/Marcellus/Marcellus-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Colors */
  --bg: #FAF8F5;
  --bg-alt: #F4F1EC;
  --bg-card: #FFFFFF;
  --accent: #F46A2E;
  --accent-hover: #D95A24;
  --heading: #222222;
  --body: #5F6368;
  --border: #E8E5E1;
  --sage: #A8B79E;
  --peach: #F5D7C8;
  --sand: #E9D7BE;
  --lavender: #D8D2F0;
  --cream: #FFF9F3;

  /* Typography */
  --font-main: 'Marcellus', serif;
  --font-script: 'Marck Script', cursive;

  /* Spacing (golden-ratio inspired) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.618rem;
  --space-lg: 2.618rem;
  --space-xl: 4.236rem;
  --space-2xl: 6.854rem;

  /* Animation */
  --ease: ease-in-out;
  --dur-fast: 400ms;
  --dur-med: 500ms;
  --dur-slow: 600ms;

  /* Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;

  /* Shadows */
  --shadow-soft: 0 4px 32px rgba(34, 34, 34, 0.06);
  --shadow-card: 0 2px 16px rgba(34, 34, 34, 0.08);
}

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

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

body {
  background-color: var(--bg);
  color: var(--body);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

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

input,
textarea {
  font-family: inherit;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  color: var(--heading);
  font-family: var(--font-main);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
}

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

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
}

p {
  color: var(--body);
  font-size: 1rem;
  line-height: 1.75;
}

.script {
  font-family: var(--font-script);
  font-size: 1.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}

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

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

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

.text-center {
  text-align: center;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  color: var(--body);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: var(--space-md) 0;
}

.divider--center {
  margin: var(--space-md) auto;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--dur-fast) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform var(--dur-med) var(--ease);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(244, 106, 46, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--heading);
  color: var(--heading);
}

.btn-outline:hover {
  background: var(--heading);
  color: var(--bg);
  transform: translateY(-1px);
}

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

.btn-outline-light:hover {
  background: #fff;
  color: var(--heading);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateZ(0);
  will-change: transform;
  transition: background 0.3s var(--ease),
    padding 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem var(--space-lg);
  border-bottom: 1px solid rgba(232, 229, 225, 0.65);
  box-shadow:
    0 8px 32px 0 rgba(34, 34, 34, 0.06),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: filter var(--dur-fast) var(--ease);
}

.nav--light .nav-logo-text,
.nav--light .nav-link {
  color: #fff;
}

.nav.scrolled .nav-logo-text,
.nav.scrolled .nav-link {
  color: var(--heading);
}

.nav-logo-text {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #fff;
  transition: color var(--dur-fast) var(--ease);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--dur-med) var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  border-radius: 1px;
  transition: all var(--dur-fast) var(--ease);
}

.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.nav.scrolled .nav-cta {
  border-color: var(--accent);
  color: var(--accent);
}

.nav.scrolled .nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.nav.scrolled .nav-hamburger span {
  background: var(--heading);
}

/* Mobile Nav Overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(232, 229, 225, 0.6);
  flex-shrink: 0;
}

.nav-mobile-close {
  font-size: 1.4rem;
  color: var(--heading);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s ease;
}

.nav-mobile-close:hover {
  color: var(--accent);
}

.nav-mobile-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 0;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--heading);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(232, 229, 225, 0.4);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  color: var(--accent);
}

.nav-mobile-accordion-toggle .accordion-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  color: var(--body);
}

.nav-mobile-accordion-toggle.open .accordion-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.nav-mobile-submenu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
  padding-left: 0.8rem;
  border-left: 2px solid var(--peach);
  margin-left: 0.4rem;
}

.nav-mobile-submenu.open {
  max-height: 500px;
  opacity: 1;
  padding-top: 0.4rem;
  padding-bottom: 0.6rem;
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
}

.nav-mobile-sublink {
  display: block;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--body);
  font-weight: 400;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.nav-mobile-sublink:hover,
.nav-mobile-sublink.active {
  color: var(--accent);
  transform: translateX(4px);
}

.nav-mobile-footer {
  margin-top: 2rem;
  padding-top: 1rem;
}

.btn-mobile-cta {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  font-size: 0.85rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--heading);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.618fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .footer-logo {
  height: 44px;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-title {
  font-family: var(--font-main);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--dur-fast) var(--ease);
  position: relative;
  padding-left: 0;
}

.footer-link:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--dur-fast) var(--ease);
}

.footer-social:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(244, 106, 46, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-section {
  background: var(--bg-alt);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: var(--space-sm);
  transition: color var(--dur-fast) var(--ease);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-med) var(--ease),
    background var(--dur-fast) var(--ease);
  font-size: 0.7rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease),
    padding var(--dur-med) var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.4rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--body);
}

/* ── Scroll Reveal Animations ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}

/* ── Parallax Wrapper ────────────────────────────────────────── */
.parallax-section {
  position: relative;
  overflow: hidden;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #fff;
}

/* ── Half-screen Hero ────────────────────────────────────────── */
.page-hero {
  height: 60vh;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s var(--ease);
}

.page-hero.loaded .page-hero-bg {
  transform: scale(1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-hero-content .section-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  animation: lbFadeIn var(--dur-fast) var(--ease);
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
}

.lightbox-close:hover {
  color: #fff;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.lightbox-nav:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ── Selection ───────────────────────────────────────────────── */
::selection {
  background: var(--peach);
  color: var(--heading);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-cta {
    display: none !important;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav {
    padding: 1.2rem var(--space-md);
  }

  .nav.scrolled {
    padding: 0.9rem var(--space-md);
  }

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

  .section-pad--sm {
    padding: var(--space-lg) 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 393px) {
  :root {
    --space-md: 1.2rem;
    --space-lg: 2rem;
  }

  h1 {
    font-size: 2.2rem;
  }
}

.b-pad-none {
  padding-bottom: 0 !important;
}

/* ── Progressive Image Loading System ────────────────────────── */
.progressive-img-wrap {
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.progressive-img-wrap:not(.loaded)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: skeleton-shimmer 1.8s infinite;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.progressive-img-wrap.loaded::before {
  display: none !important;
}

@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

img {
  transition: opacity 0.35s var(--ease);
  font-size: 0;
}

img:not(.img-loaded):not(.loaded) {
  opacity: 0.85;
}

img.img-loaded,
img.loaded {
  opacity: 1;
}

/* ── Ensure Logos and Brand Elements Remain Completely Transparent ── */
.nav-logo,
.nav-logo-img,
.footer-brand,
.footer-logo,
.client-logo {
  background: transparent !important;
  background-color: transparent !important;
}

.nav-logo.progressive-img-wrap,
.footer-brand.progressive-img-wrap {
  background: transparent !important;
  background-color: transparent !important;
}

.nav-logo.progressive-img-wrap::before,
.footer-brand.progressive-img-wrap::before {
  display: none !important;
}

/* ── Local SEO Location Tags & In-Page Breadcrumb Links ── */
.location-tags-wrap {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.location-tags-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--heading);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.location-tags-label svg {
  color: var(--accent);
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--body);
  transition: all 0.25s ease;
  text-decoration: none;
}

.location-tag:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 106, 46, 0.25);
}

/* Footer Locations Section */
.footer-locations-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  margin-top: var(--space-xl);
}

.footer-locations-title {
  font-family: var(--font-main);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
}

.footer-locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footer-location-chip {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-location-chip:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(244, 106, 46, 0.2);
}

.footer-locations-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}