Absolutely—here’s a fully rewritten `frontend/assets/styles.css` with the fixes and upgrades applied (consistent tokens, stronger accessibility/focus states, responsive tweaks, dark/compact modes refined, safer defaults, and a few missing states like disabled/active/hover). You can drop this in as a full replacement.

```css
/* ========================================================================
   Global Design Tokens
   ===================================================================== */

///new styles///

@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@200&family=Cormorant+Garamond:wght@300;400&display=swap');

///header///
header {
  border-bottom: 1px solid var(--line, #e5e7eb);
  background: white;
  width: 100%;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
}

.nav-left {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.header-inner nav a,
.header-inner a.login-btn {
  font-family: 'Sarabun', sans-serif;
  font-weight: 200;
  font-size: 16px;
  color: #1a2230;
  text-decoration: none;
}

.header-actions .login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(26, 34, 48, 0.25);
  font-size: 12px;
}

.header-actions .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(26, 34, 48, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-family: 'Sarabun', sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a2230;
  text-decoration: none;
  background: transparent;
}

.header-actions .login-btn.primary {
  background: #1a2230;
  color: #fff;
  border-color: #1a2230;
}

.header-actions .login-btn.secondary {
  background: transparent;
  color: #1a2230;
}

.header-logo {
  font-family: 'Cormorant Garamond', serif;
  text-decoration: none;
  color: #1a2230;
  font-size: 20px;
  letter-spacing: 1px;
  justify-self: center;
}

.login-btn {
  justify-self: end;
}

.gold {
  color: #b6a47a;
}
@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .nav-left {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* Smooth spacing for large viewports */
.header-inner {
  gap: 40px;
  transition: gap 0.4s ease;
}

/* === Smooth fade + scale for responsive header === */
.site-header nav,
.header-actions {
  transition: opacity 0.35s ease, transform 0.4s ease;
  will-change: opacity, transform;
}

/* Tablet & mobile: Hide nav links, keep Sign In visible */
@media (max-width: 800px) {
  .site-header nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .header-actions {
    transform: scale(0.96);
    opacity: 1;
  }
}
    /* Apple-style minimalist footer */
.footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 24px 0;
  font-size: 14px;
  color: #9ca3af;
}

.footer-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* creates perfect left, center, right zones */
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer p {
  justify-self: start;
  margin: 0;
  color: #9ca3af;
  font-family: 'Sarabun', sans-serif;
  font-weight: 200;
}

.footer nav {
  justify-self: center; /* keeps it centered regardless of link width */
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-family: 'Sarabun', sans-serif;
  font-weight: 200;
}

.footer nav a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer nav a:hover {
  color: #ffffff;
}

.footer nav span {
  color: #5f6771;
}

.footer .region {
  justify-self: end;
  color: #9ca3af;
  font-family: 'Sarabun', sans-serif;
  font-weight: 200;
}

html {
  scroll-behavior: smooth;
}

/* GPU Layer Promotion for Smooth Scrolling */
.hero-section,
.hero-slide,
.section,
.hiw-card,
.fade-in,
.fade-element,
.w-slider,
.w-slide,
.parallax-layer,
.observed-element,
.animated-block {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

body {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
}

/* Mobile adjustment */
@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer p,
  .footer nav,
  .footer .region {
    justify-self: center;
  }
}

main h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  margin-top: 80px;
  text-align: left;
}

main .muted {
  font-size: 16px;
  color: #5c6b7a;
  margin-bottom: 40px;
}
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: smooth;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Home: Who We Are section */
.who-wrapper {
  width: 100%;
  max-width: 100%;
  padding: 80px 40px;
  position: relative;
  z-index: 1000;
  background: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.who-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: #1a2230;
  margin: 0;
}

.who-text {
  width: 100%;
  max-width: 100%;
  margin: 20px auto 0 auto;
  line-height: 1.6;
  font-size: 1rem;
  color: #303030;
  text-align: center;
  font-family: 'Sarabun', sans-serif;
  font-weight: 200;
}

@media (max-width: 600px) {
  .who-wrapper {
    padding: 60px 20px;
  }

  .who-text {
    font-size: 0.95rem;
  }
}

.browse-intro {
  max-width: 720px;
  margin: 80px auto 40px;
  text-align: center;
}

.browse-intro h2 {
  letter-spacing: 0.18em;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.browse-intro p {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5f6572;
}
