/* Olive & James Salon
   Palette: sage · champagne · warm ivory · charcoal
   Fonts: Cormorant Garamond (display) · Montserrat (body)

   Sections: Variables | Reset & Base | Preloader | Grain | Reveal | Header |
   Hero | CTA Buttons | Dividers | Sections | About | Brands | Kirsten |
   CTA Banner | Contact | Footer | Utilities */

:root {
  --sage: #7d8b73;
  --sage-dark: #5a6652;
  --sage-muted: #a3b096;
  --sage-pale: #e8ece5;
  --champagne: #c9a96e;
  --champagne-light: #ddc48f;
  --champagne-pale: #f5eddb;
  --charcoal: #2a2a2a;
  --charcoal-light: #4a4a4a;
  --warm-gray: #6b6560;
  --cream: #faf7f2;
  --ivory: #fdfcf9;
  --blush: #f3ece4;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;
  --space-3xl: 11rem;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset & Base ---- */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--charcoal-light);
  background: var(--ivory);
  letter-spacing: 0.015em;
  overflow-x: hidden;
}

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

address {
  font-style: normal;
}

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover {
  color: var(--champagne);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 640px;
}

/* ---- Preloader ---- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--champagne);
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(12px);
  animation: preloader-reveal 0.9s 0.2s var(--ease-out-expo) forwards;
}

@media (max-width: 768px) {
  .preloader-logo {
    font-size: clamp(3.25rem, 14vw, 4.5rem);
  }
}

.preloader-logo em {
  font-style: italic;
  font-weight: 300;
}

@keyframes preloader-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Film Grain Texture ---- */

.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ---- Scroll Reveal ---- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

/* ---- Header ---- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 252, 249, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  background: rgba(253, 252, 249, 0.97);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

.logo-amp {
  font-style: italic;
  font-weight: 300;
}

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

.nav a {
  color: var(--charcoal-light);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.4s var(--ease-out-expo);
}

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

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

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 0.6rem 1.6rem;
  border-radius: 0;
  letter-spacing: 0.12em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--champagne) !important;
  color: var(--white) !important;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    z-index: 99;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(4rem + env(safe-area-inset-top)) var(--space-lg) calc(var(--space-lg) + env(safe-area-inset-bottom));
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    box-shadow: -8px 0 50px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .menu-toggle {
    position: relative;
    z-index: 100;
  }

  .nav a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    display: block;
    margin-top: var(--space-lg);
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -60px;
  will-change: transform;
  transition: transform 0.1s linear;
  background:
    radial-gradient(ellipse 120% 80% at 75% 20%, rgba(201, 169, 110, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 90% 60% at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(125, 139, 115, 0.25) 0%, transparent 60%),
    linear-gradient(
      160deg,
      #1e2a1b 0%,
      #253022 25%,
      #2a3327 50%,
      #232b20 75%,
      #1a2118 100%
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(18, 18, 18, 0.35) 0%,
      rgba(30, 35, 28, 0.2) 50%,
      rgba(38, 44, 36, 0.3) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--champagne-light);
  margin: 0 0 var(--space-lg);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 var(--space-md);
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35), 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-local {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 var(--space-md);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-line {
  width: 50px;
  height: 1px;
  background: var(--champagne);
  margin: 0 auto var(--space-lg);
  position: relative;
}

.hero-line::before,
.hero-line::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--champagne);
}

.hero-line::before { left: -3px; }
.hero-line::after { right: -3px; }

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 var(--space-xl);
  line-height: 1.65;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.5));
  animation: scroll-hint 2.5s var(--ease) infinite;
}

@keyframes scroll-hint {
  0% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ---- CTA Buttons ---- */

.cta-button {
  display: inline-block;
  background: var(--champagne);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border-radius: 0;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.2);
}

.cta-button:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cta-button.cta-sm {
  padding: 0.85rem 2rem;
  font-size: 0.6875rem;
}

.cta-button.cta-light {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.cta-button.cta-light:hover {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: 0;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.cta-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.cta-outline-sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.6875rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.cta-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.cta-call .icon-phone {
  flex-shrink: 0;
}

/* ---- Section Dividers ---- */

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne-light), transparent);
  position: relative;
}

.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--champagne);
  transform: rotate(45deg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ---- Section shared ---- */

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 var(--space-md);
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.section-local {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--champagne);
  margin: 0 0 var(--space-sm);
  line-height: 1.5;
}

.section-lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--warm-gray);
  margin: 0 0 var(--space-md);
  line-height: 1.65;
}

/* ---- Ornament ---- */

.ornament {
  text-align: center;
  color: var(--champagne);
  margin-bottom: var(--space-lg);
}

/* ---- About ---- */

.section-about {
  background: var(--white);
  text-align: center;
  padding: var(--space-3xl) 0;
}

.section-about p {
  margin: 0 0 var(--space-sm);
  color: var(--charcoal-light);
}

.cta-wrap {
  margin-top: var(--space-xl);
}

/* ---- Brands ---- */

.section-brands {
  background: var(--sage-pale);
  padding: var(--space-xl) 0;
  position: relative;
}

.section-brands::before,
.section-brands::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--sage-muted);
}

.section-brands::before { top: 0; }
.section-brands::after { bottom: 0; }

.brands-intro {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--sage-dark);
  margin: 0 0 var(--space-lg);
}

.brands-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm) var(--space-lg);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--sage-dark);
  letter-spacing: 0.03em;
}

.brand-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage-muted);
  vertical-align: middle;
}

/* ---- Kirsten ---- */

.section-kirsten {
  background: var(--cream);
  padding: var(--space-3xl) 0;
}

.layout-split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--space-xl);
  align-items: center;
}

.kirsten-image-wrap {
  position: relative;
}

.kirsten-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
}

.kirsten-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}

.kirsten-image:hover img {
  transform: scale(1.04);
}

.kirsten-frame {
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  border: 1px solid var(--champagne);
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
}

.kirsten-role {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--champagne);
  margin: 0 0 var(--space-xs);
}

.kirsten-content p {
  margin: 0 0 var(--space-sm);
  color: var(--charcoal-light);
}

.kirsten-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  border-left: 1px solid var(--champagne);
  background: transparent;
  border-radius: 0;
  line-height: 1.65;
  position: relative;
}

.kirsten-quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--champagne-light);
  position: absolute;
  top: -0.25rem;
  left: var(--space-lg);
  line-height: 1;
  opacity: 0.4;
}

.kirsten-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.link-arrow {
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--charcoal);
  transition: gap 0.3s var(--ease-out-expo), color 0.3s var(--ease);
}

.link-arrow::after {
  content: "→";
  transition: transform 0.3s var(--ease-out-expo);
}

.link-arrow:hover {
  color: var(--champagne);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .layout-split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .kirsten-image-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ---- CTA Banner ---- */

.section-cta-banner {
  background: var(--charcoal);
  text-align: center;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(125, 139, 115, 0.05) 0%, transparent 60%);
}

.banner-ornament {
  color: var(--champagne);
  opacity: 0.4;
  margin-bottom: var(--space-lg);
}

.section-cta-banner .banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 var(--space-sm);
  letter-spacing: 0.04em;
}

.section-cta-banner p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 var(--space-xl);
}

/* ---- Contact ---- */

.section-contact {
  background: var(--white);
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.section-contact .section-title {
  color: var(--charcoal);
}

.contact-detail {
  font-size: 1rem;
  color: var(--charcoal-light);
  margin: 0 0 var(--space-sm);
  line-height: 1.7;
}

.contact-detail a {
  color: var(--charcoal-light);
  border-bottom: 1px solid var(--sage-pale);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.contact-detail a:hover {
  color: var(--champagne);
  border-color: var(--champagne);
}

.contact-detail a.cta-outline {
  border-bottom: none;
}

.contact-phone-actions {
  margin-left: 0.35em;
}

.contact-phone-actions span {
  color: var(--sage-muted);
  font-weight: 400;
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: var(--space-md);
  transition: color 0.3s var(--ease);
}

.review-link:hover {
  color: var(--charcoal);
}

.social-label {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--champagne);
  margin: 0 0 var(--space-md);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--charcoal-light);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease-out-expo);
}

.social-links a svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}

.social-links a:hover {
  color: var(--charcoal);
  transform: translateX(3px);
}

.social-links a:hover svg {
  opacity: 1;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ---- Footer ---- */

.site-footer {
  background: var(--charcoal);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.footer-rule {
  width: 30px;
  height: 1px;
  background: var(--champagne);
  opacity: 0.4;
  margin-top: var(--space-xs);
}

.footer-logo {
  color: var(--white) !important;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.footer-legal {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-credit {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.2);
  margin: 0;
  letter-spacing: 0.04em;
}

.site-footer .footer-credit a {
  color: rgba(255, 255, 255, 0.4);
  border-bottom: none;
  transition: color 0.3s var(--ease);
}

.site-footer .footer-credit a:hover {
  color: var(--champagne);
}

/* ---- Fine details ---- */

::selection {
  background: var(--champagne-pale);
  color: var(--charcoal);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll-hint span {
    animation: none;
  }

  .preloader {
    display: none;
  }
}
