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

  :root {
    --midnight: #0f172a;
    --midnight-light: #1e293b;
    --midnight-soft: #334155;
    --mint: #3a9d82;
    --mint-light: #5fbfa0;
    --mint-pale: #e3f5ed;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

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

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

  ul {
    list-style: none;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ─── Navigation ─── */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s var(--ease-out);
  }

  .nav.scrolled {
    box-shadow: 0 1px 20px rgba(15, 23, 42, 0.06);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--midnight);
    letter-spacing: -0.01em;
  }

  .nav-logo-icon {
    width: 24px;
    height: 24px;
    color: var(--mint);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--gray-600);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint);
    transition: width 0.3s var(--ease-out);
  }

  .nav-links a:hover {
    color: var(--midnight);
  }

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

  .nav-cta {
    font-size: 0.8125rem !important;
    font-weight: 500 !important;
    color: var(--white) !important;
    background: var(--midnight);
    padding: 10px 20px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease !important;
  }

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

  .nav-cta:hover {
    background: var(--midnight-light) !important;
    transform: translateY(-1px);
    color: var(--white) !important;
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--midnight);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
  }

  /* ─── Hero ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

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

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.72) 0%,
      rgba(15, 23, 42, 0.82) 50%,
      rgba(15, 23, 42, 0.88) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    padding: 120px 24px 80px;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint-light);
    margin-bottom: 24px;
  }

  .hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }

  .hero-accent {
    font-style: italic;
    color: var(--mint-light);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 40px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }

  .hero-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 auto 32px;
  }

  .hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
  }

  .hero-meta-dot {
    color: rgba(255, 255, 255, 0.3);
  }

  /* ─── Buttons ─── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
  }

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

  .btn-primary:hover {
    background: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(58, 157, 130, 0.3);
  }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
  }

  .btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }

  .btn-ghost-dark {
    background: transparent;
    color: var(--midnight);
    border: 1px solid var(--gray-300);
  }

  .btn-ghost-dark:hover {
    border-color: var(--midnight);
    background: var(--midnight);
    color: var(--white);
    transform: translateY(-2px);
  }

  /* ─── Sections ─── */
  .section {
    padding: 120px 0;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--midnight);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 560px;
  }

  /* ─── Products ─── */
  .products {
    background: var(--white);
  }

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

  .products .section-subtitle {
    margin: 0 auto 64px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .product-card {
    text-align: left;
    transition: transform 0.4s var(--ease-out);
  }

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

  .product-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    margin-bottom: 20px;
  }

  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
  }

  .product-card:hover .product-img-wrap img {
    transform: scale(1.05);
  }

  .product-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .product-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.7;
  }

  /* ─── Services ─── */
  .services {
    background: var(--gray-50);
  }

  .services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .services-text {
    max-width: 480px;
  }

  .services-text .section-subtitle {
    margin-bottom: 48px;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mint-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
  }

  .service-item strong {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    color: var(--midnight);
    margin-bottom: 4px;
  }

  .service-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.7;
  }

  .services-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 6/7;
  }

  .services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ─── About ─── */
  .about {
    background: var(--white);
  }

  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 6/5;
  }

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

  .about-text {
    max-width: 480px;
  }

  .about-text .section-subtitle {
    margin-bottom: 24px;
  }

  .about-text p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 16px;
  }

  /* ─── Visit ─── */
  .visit {
    background: var(--gray-50);
  }

  .visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
  }

  .visit-info {
    max-width: 480px;
  }

  .visit-info .section-subtitle {
    margin-bottom: 40px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-item dt {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mint-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    margin-top: 2px;
  }

  .contact-item dd {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-700);
    line-height: 1.6;
  }

  .contact-item a {
    color: var(--gray-700);
    transition: color 0.2s ease;
  }

  .contact-item a:hover {
    color: var(--mint);
  }

  .hours-label {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 16px;
  }

  .hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    font-weight: 300;
  }

  .hours-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
  }

  .hours-table tr:last-child td {
    border-bottom: none;
  }

  .hours-table td:first-child {
    color: var(--gray-700);
    font-weight: 400;
  }

  .visit-map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  }

  .visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
  }

  /* ─── CTA ─── */
  .cta {
    background: var(--midnight);
    padding: 120px 0;
  }

  .cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .cta .section-eyebrow {
    color: var(--mint-light);
  }

  .cta-title {
    color: var(--white);
  }

  .cta-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* ─── Footer ─── */
  .footer {
    background: var(--gray-900);
    padding: 80px 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-brand {
    max-width: 320px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
  }

  .footer-logo svg {
    width: 24px;
    height: 24px;
    color: var(--mint);
  }

  .footer-tagline {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
  }

  .footer-links ul,
  .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a,
  .footer-contact a {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
  }

  .footer-links a:hover,
  .footer-contact a:hover {
    color: var(--mint-light);
  }

  .footer-contact li:not(:has(a)) {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
  }

  /* ─── Scroll Reveal ─── */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }

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

  /* ─── Mobile Menu ─── */
  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
    }

    .nav-links {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      flex-direction: column;
      align-items: stretch;
      padding: 24px;
      gap: 0;
      border-bottom: 1px solid var(--gray-200);
      transform: translateY(-110%);
      opacity: 0;
      transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
      pointer-events: none;
    }

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

    .nav-links li {
      border-bottom: 1px solid var(--gray-100);
    }

    .nav-links li:last-child {
      border-bottom: none;
    }

    .nav-links a {
      display: block;
      padding: 16px 0;
      font-size: 0.9375rem;
    }

    .nav-links a::after {
      display: none;
    }

    .nav-cta {
      text-align: center;
      margin-top: 8px;
    }
  }

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

    .services-layout,
    .about-layout,
    .visit-layout {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .services-text,
    .about-text,
    .visit-info {
      max-width: 100%;
    }
  }

  @media (max-width: 640px) {
    .section {
      padding: 80px 0;
    }

    .products-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .hero-content {
      padding: 100px 20px 60px;
    }

    .hero-actions {
      flex-direction: column;
      gap: 12px;
    }

    .btn {
      width: 100%;
      justify-content: center;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }

    .cta {
      padding: 80px 0;
    }

    .cta-actions {
      flex-direction: column;
    }
  }

  /* ─── Reduced Motion ─── */
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .product-card:hover {
      transform: none;
    }

    .product-img-wrap img:hover {
      transform: none;
    }

    .btn:hover {
      transform: none;
    }

    .nav-cta:hover {
      transform: none;
    }
  }
