/* ============================================================
   Pacific Ties — Shared Stylesheet
   ============================================================ */

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Lora', Georgia, 'Noto Serif SC', serif;
  background: #0A1628;
  color: #E8D5A3;
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ===== CSS Custom Properties ===== */
:root {
  --color-primary: #0A1628;
  --color-deep: #1B2D4F;
  --color-accent: #C9A84C;
  --color-accent-light: #E8D5A3;
  --color-parchment: #F5ECD7;
  --color-parchment-dark: #E8DCC0;
  --color-footer: #060E1A;
  --navbar-h: 64px;
  --max-width: 1200px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, 'Noto Serif SC', serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
}

/* ===== Container ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: transparent;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.navbar--scrolled,
.navbar--solid {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(201, 168, 76, 0.3);
}
.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar__logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
.navbar__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #C9A84C;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.navbar__link:hover {
  color: #C9A84C;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #C9A84C;
  transition: width 0.3s ease, left 0.3s ease;
}
.navbar__link:hover::after {
  width: 100%;
  left: 0;
}
.navbar__link--active {
  color: #C9A84C;
}
.navbar__link--active::after {
  width: 100%;
  left: 0;
}
.navbar__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(232, 213, 163, 0.5);
  letter-spacing: 0.5px;
}

/* ===== Hero Slideshow (index.html) ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #0A1628;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__slide--active {
  opacity: 1;
}
.hero__slide-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero__slide--active .hero__slide-bg {
  animation: kenBurns 8s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.5) 40%,
    rgba(10, 22, 40, 0.3) 100%
  );
}
.hero__slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px;
  z-index: 2;
}
.hero__era {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #C9A84C;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero__slide--active .hero__era {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.hero__slide-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero__slide--active .hero__slide-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}
.hero__slide-subtitle {
  font-family: var(--font-sans);
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero__slide--active .hero__slide-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

/* Hero arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.hero:hover .hero__arrow {
  opacity: 1;
}
.hero__arrow:hover {
  background: rgba(255,255,255,0.15);
  color: #C9A84C;
}
.hero__arrow--prev {
  left: 40px;
}
.hero__arrow--next {
  right: 40px;
}

/* Hero dots */
.hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.hero__dot--active {
  background: #C9A84C;
  border-color: #C9A84C;
}

/* Hero progress bar */
.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}
.hero__progress-bar {
  height: 100%;
  width: 0%;
  background: #C9A84C;
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
  transition: width 6000ms linear;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #C9A84C;
  animation: scrollBounce 2.5s ease-in-out infinite;
  cursor: pointer;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Page Hero Banner (stories.html, videos.html) ===== */
.page-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0A1628;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.9) 0%,
    rgba(10, 22, 40, 0.5) 50%,
    rgba(10, 22, 40, 0.3) 100%
  );
}
.page-hero__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

/* ===== Section Common ===== */
.section {
  padding: 80px 0;
}
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 0.5rem;
}
.section__ornament {
  display: block;
  width: 60px;
  height: 2px;
  background: #C9A84C;
  margin: 0 auto 1rem;
}

/* ===== Preview Cards (index.html) ===== */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 2.5rem;
}
.preview-card {
  background: #111d30;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.preview-card:hover {
  transform: scale(1.02);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.15);
}
.preview-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a2a42;
  overflow: hidden;
}
.preview-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-card__play svg {
  margin-left: 3px;
}
.preview-card__body {
  padding: 16px;
}
.preview-card__era {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #C9A84C;
  background: rgba(201,168,76,0.12);
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.preview-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px;
}
.preview-card__excerpt {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 12px;
}
.preview-card__duration {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.preview-card__link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #C9A84C;
  transition: color 0.2s ease;
}
.preview-card__link:hover {
  color: #E8D5A3;
}

/* View all button */
.section__cta {
  text-align: center;
  margin-top: 1rem;
}
.section__cta-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #C9A84C;
  padding: 10px 28px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.section__cta-link:hover {
  background: rgba(201,168,76,0.1);
  border-color: #C9A84C;
  color: #E8D5A3;
}

/* ===== Filter Bar (stories.html, videos.html) ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 3rem;
}
.filter-bar__pill {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-bar__pill:hover {
  color: #C9A84C;
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.06);
}
.filter-bar__pill--active {
  color: #C9A84C;
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.4);
}

/* ===== Content Grid (stories.html, videos.html) ===== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== Timeline (index.html - Stories section) ===== */
.stories {
  background: #0A1628;
  padding: 5rem 0;
}
.stories__header {
  text-align: center;
  margin-bottom: 3rem;
}
.stories__ornament {
  display: block;
  width: 60px;
  height: 2px;
  background: #C9A84C;
  margin: 0 auto 1rem;
}
.stories__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #C9A84C;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #C9A84C 5%, #C9A84C 95%, transparent);
  transform: translateX(-50%);
}
.timeline-node {
  position: relative;
  margin-bottom: 3rem;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 14px;
  height: 14px;
  background: #C9A84C;
  border: 3px solid #0A1628;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.story-card {
  width: 44%;
  background: #F5ECD7;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.story-card--left {
  margin-right: auto;
  transform: rotate(-0.6deg);
}
.story-card--right {
  margin-left: auto;
  transform: rotate(0.6deg);
}
.story-card--upcoming {
  margin-left: auto;
  opacity: 0.5;
  cursor: default;
}
.story-card--left:hover,
.story-card--right:hover {
  transform: translateY(-3px) rotate(0deg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.story-card__inner {
  display: flex;
  flex-direction: column;
}
.story-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-card__coming {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: #C9A84C;
}
.story-card__content {
  padding: 1.2rem;
}
.story-card__year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 0.3rem;
}
.story-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #1B2D4F;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.story-card__content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}
.story-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.story-card__tags span {
  font-size: 0.72rem;
  background: #E8DCC0;
  color: #1B2D4F;
  padding: 2px 8px;
  border-radius: 3px;
}

/* ===== About ===== */
.about {
  background: #0A1628;
  padding: 5rem 0;
}
.about__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 0 2rem;
}
.about__image-wrapper {
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.4);
}
.about__image-wrapper img {
  width: 100%;
  opacity: 0.85;
}
.about__text h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #C9A84C;
  margin-bottom: 1rem;
}
.about__text p {
  font-size: 0.95rem;
  color: rgba(232,213,163,0.75);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  background: #060E1A;
  padding: 3rem 2rem;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}
.footer__logo {
  height: 36px;
  width: 36px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
.footer__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #C9A84C;
}
.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(232,213,163,0.5);
  margin-bottom: 1.2rem;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.2rem;
}
.footer__nav a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.footer__nav a:hover {
  color: #C9A84C;
}
.footer__copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
}

/* ===== Scroll reveal ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.scroll-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive — Tablet ===== */
@media (max-width: 1023px) {
  .preview-grid,
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before {
    left: 24px;
  }
  .timeline-dot {
    left: 24px;
  }
  .story-card--left,
  .story-card--right,
  .story-card--upcoming {
    width: calc(100% - 56px);
    margin-left: auto;
    margin-right: 0;
    transform: none;
  }
  .story-card--left:hover,
  .story-card--right:hover {
    transform: translateY(-3px);
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===== Responsive — Mobile ===== */
@media (max-width: 767px) {
  :root {
    --navbar-h: 56px;
  }
  .navbar__logo {
    height: 32px;
    width: 32px;
  }
  .navbar__nav {
    gap: 1.2rem;
  }
  .navbar__tagline {
    display: none;
  }
  .hero__slide-content {
    padding: 24px;
  }
  .hero__slide-title {
    font-size: 32px;
  }
  .hero__slide-subtitle {
    font-size: 14px;
  }
  .hero__arrow {
    display: none;
  }
  .hero__dot {
    width: 8px;
    height: 8px;
  }
  .hero__dots {
    gap: 12px;
    bottom: 32px;
  }
  .hero__scroll {
    bottom: 56px;
  }
  .page-hero__title {
    font-size: 36px;
  }
  .section {
    padding: 48px 0;
  }
  .section__title {
    font-size: 2rem;
  }
  .preview-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    gap: 6px;
  }
  .filter-bar__pill {
    font-size: 11px;
    padding: 6px 12px;
  }
  .timeline {
    padding: 0 1rem;
  }
  .timeline::before {
    left: 16px;
  }
  .timeline-dot {
    left: 16px;
    width: 10px;
    height: 10px;
  }
  .story-card--left,
  .story-card--right,
  .story-card--upcoming {
    width: calc(100% - 40px);
  }
  .story-card__content h3 {
    font-size: 1rem;
  }
  .about__inner {
    padding: 0 1rem;
  }
  .about__image-wrapper {
    max-width: 100%;
  }
}

/* ===== Preview Section ===== */
.preview-section {
  padding: 80px 0;
}
.preview-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 0.5rem;
}
.section-heading::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #C9A84C;
  margin: 0 auto 1rem;
}
.preview-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.view-all {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #C9A84C;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid #C9A84C;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}
.view-all:hover {
  background: #C9A84C;
  color: #0A1628;
}
.preview-section__footer {
  text-align: center;
}

/* ===== Site Footer ===== */
.site-footer {
  background: #060E1A;
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.site-footer__logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.site-footer__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #C9A84C;
}
.site-footer__tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.site-footer__nav a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.site-footer__nav a:hover {
  color: #C9A84C;
}
.site-footer__copy {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== Responsive — Tablet (preview sections) ===== */
@media (max-width: 768px) {
  .preview-section {
    padding: 48px 0;
  }
  .preview-section__grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    font-size: 1.6rem;
  }
  .site-footer__nav {
    gap: 1rem;
  }
}

/* ===== Responsive — Small mobile ===== */
@media (max-width: 480px) {
  .navbar__inner {
    padding: 0 1rem;
  }
  .navbar__name {
    font-size: 1rem;
  }
  .navbar__nav {
    gap: 1rem;
  }
  .navbar__link {
    font-size: 0.78rem;
  }
  .hero__slide-title {
    font-size: 28px;
  }
  .container {
    padding: 0 1rem;
  }
}
