  /* ── Base & Reset ── */
  *, *::before, *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

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

  /* ── Section Labels & Titles ── */
  .section-label {
    display: block;
  }

  .section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
  }

  /* ── Navigation ── */
  #navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  }

  #navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }

  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
  }

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

  /* ── Mobile Menu ── */
  #mobileMenu.open {
    opacity: 1;
    pointer-events: all;
  }

  .menu-line {
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  }

  #menuBtn.active .menu-line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  #menuBtn.active .menu-line:nth-child(2) {
    opacity: 0;
  }

  #menuBtn.active .menu-line:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
    width: 1.5rem;
  }

  .mobile-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
  }

  /* ── Hero Animations ── */
  .hero-subtitle {
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
  }

  .hero-headline {
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
  }

  .hero-body {
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
  }

  .hero-cta {
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
  }

  .hero-animate .hero-subtitle,
  .hero-animate .hero-headline,
  .hero-animate .hero-body,
  .hero-animate .hero-cta {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Divider ── */
  .divider-line {
    transition: width 1s ease;
  }

  /* ── Offering Cards ── */
  .offering-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .offering-card:hover {
    transform: translateY(-4px);
  }

  /* ── Gallery ── */
  .gallery-item {
    cursor: pointer;
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 95, 95, 0);
    transition: background 0.3s ease;
  }

  .gallery-item:hover::after {
    background: rgba(26, 95, 95, 0.1);
  }

  .gallery-item {
    position: relative;
  }

  /* ── Scroll Reveal ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  .reveal-delay-6 { transition-delay: 0.6s; }

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

  ::-webkit-scrollbar-track {
    background: #f1f5f9;
  }

  ::-webkit-scrollbar-thumb {
    background: #1a5f5f;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #144d4d;
  }

  /* ── Focus Styles ── */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  select:focus-visible {
    outline: 2px solid #1a5f5f;
    outline-offset: 2px;
  }

  /* ── Selection ── */
  ::selection {
    background: #1a5f5f;
    color: #fff;
  }
