/* ============================================================
   Avoir — Global Stylesheet
   Vanilla CSS replacing Tailwind classes
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties (Stone Palette) ────────────────── */
:root {
  --stone-50:  #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;

  --transition-base: all 0.3s ease;
  --transition-slow: all 0.7s ease;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background-color: var(--stone-50);
  color: var(--stone-800);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; /* prevent horizontal scroll from 100vw hero */
}

main { flex: 1; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #f5f5f0; }
::-webkit-scrollbar-thumb { background: #c7c3bc; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #9a9590; }

/* ── Selection ────────────────────────────────────────────── */
::selection { background: var(--stone-900); color: var(--stone-100); }

/* ── Select appearance ────────────────────────────────────── */
select { -webkit-appearance: none; -moz-appearance: none; appearance: none; }


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container      { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-md   { max-width: 960px;  margin: 0 auto; padding: 0 1.5rem; }
.container-lg   { max-width: 1152px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm   { max-width: 768px;  margin: 0 auto; padding: 0 1.5rem; }

.flex          { display: flex; }
.flex-col      { flex-direction: column; }
.items-center  { align-items: center; }
.items-start   { align-items: flex-start; }
.justify-center{ justify-content: center; }
.justify-between{ justify-content: space-between; }
.flex-1        { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-2         { gap: 0.5rem; }
.gap-3         { gap: 0.75rem; }
.gap-4         { gap: 1rem; }
.gap-6         { gap: 1.5rem; }
.gap-8         { gap: 2rem; }
.gap-10        { gap: 2.5rem; }
.gap-16        { gap: 4rem; }

.grid          { display: grid; }
.text-center   { text-align: center; }
.text-left     { text-align: left; }
.relative      { position: relative; }
.absolute      { position: absolute; }
.fixed         { position: fixed; }
.inset-0       { top: 0; right: 0; bottom: 0; left: 0; }
.overflow-hidden { overflow: hidden; }
.z-10          { z-index: 10; }
.z-30          { z-index: 30; }
.z-40          { z-index: 40; }
.z-50          { z-index: 50; }
.w-full        { width: 100%; }
.h-full        { height: 100%; }
.hidden        { display: none; }


/* ============================================================
   SCROLL ANIMATION SYSTEM
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-2rem);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(2rem);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 80px;
  transition: background 0.7s ease, box-shadow 0.7s ease, border-color 0.7s ease;
}
.navbar.transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--stone-100);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .navbar-inner { padding: 0 3rem; }
}

/* Logo */
.navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  transition: color 0.5s ease;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transition: color 0.5s ease;
}
.navbar.transparent .logo-main { color: white; }
.navbar.transparent .logo-sub  { color: rgba(255,255,255,0.6); }
.navbar.solid .logo-main { color: var(--stone-800); }
.navbar.solid .logo-sub  { color: var(--stone-400); }

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  height: 1px;
  background: currentColor;
  width: 0;
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.navbar.transparent .nav-link         { color: rgba(255,255,255,0.7); }
.navbar.transparent .nav-link:hover,
.navbar.transparent .nav-link.active  { color: white; }
.navbar.solid .nav-link               { color: var(--stone-500); }
.navbar.solid .nav-link:hover,
.navbar.solid .nav-link.active        { color: var(--stone-900); }

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  transition: color 0.3s;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.navbar.transparent .hamburger { color: white; }
.navbar.solid .hamburger       { color: var(--stone-700); }

.hamburger svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--stone-800);
  font-weight: 300;
  letter-spacing: 0.15em;
  transition: color 0.3s;
}
.mobile-menu-link:hover { color: var(--stone-500); }
.mobile-menu-footer {
  position: absolute;
  bottom: 3rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-300);
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--stone-900);
  color: white;
}
.footer-accent {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--stone-500), transparent);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
@media (min-width: 1024px) { .footer-inner { padding: 5rem 3rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: white;
}
.footer-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-top: 0.25rem;
}
.footer-brand-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-400);
  line-height: 1.75;
  font-weight: 300;
  max-width: 20rem;
  margin-top: 1.5rem;
}
.footer-brand-tagline {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--stone-500);
  font-style: italic;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}
.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 1.5rem;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-nav-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-nav-link:hover { color: white; }
.footer-contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-contact-icon { color: var(--stone-500); width: 14px; height: 14px; flex-shrink: 0; }
.footer-contact-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-400);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
a:hover .footer-contact-text { color: white; }
.footer-bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-copyright {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  color: var(--stone-600);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-craft {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-craft-line { width: 2rem; height: 1px; background: var(--stone-700); }
.footer-craft-text {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  color: var(--stone-600);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}


/* ============================================================
   SECTION DIVIDER / EYEBROW
   ============================================================ */
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.eyebrow-line {
  height: 1px;
  width: 3rem;
  background: var(--stone-300);
}
.eyebrow-line-dark { background: var(--stone-700); }
.eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--stone-400);
}
.eyebrow-text-dark { color: var(--stone-500); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--stone-800);
  letter-spacing: 0.15em;
}


/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero — Full Width Slider, strict 16:9 ratio on all screens */
.hero {
  position: relative;
  /* Full-bleed inside any flex parent */
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  /* 16:9 aspect ratio — height follows width automatically */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
}

/* Each slide — absolute, fills the entire hero section */
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* iOS Safari fix: use 'scroll' not 'fixed' */
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
  z-index: 1;
  will-change: opacity;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Gradient overlays on each slide */
.hero-overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,25,23,0.55) 0%, rgba(28,25,23,0.25) 50%, rgba(28,25,23,0.7) 100%);
  z-index: 3;
}
.hero-overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,25,23,0.35), transparent);
  z-index: 3;
}

/* Slide content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}
.hero-slide.active .hero-content,
.hero-content.loaded { opacity: 1; transform: translateY(0); }

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line { height: 1px; width: 4rem; background: rgba(255,255,255,0.4); }
.hero-eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.75rem, 10vw, 7rem);
  color: white;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
}
.hero-subtitle-tag {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1rem 2rem;
  transition: border-color 0.4s, background 0.4s;
}
.btn-primary:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
}
.btn-primary svg { width: 14px; height: 14px; stroke: currentColor; fill: none; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.btn-ghost:hover { color: white; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.4);
  z-index: 20;
}
.scroll-indicator svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Hero Slider Dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 30;
  align-items: center;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: white;
  transform: scale(1.4);
}

/* Hero Slider Arrow Nav */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.hero-arrow:hover {
  background: rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.6);
  color: white;
}
.hero-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.hero-arrow-prev { left: 1.5rem; }
.hero-arrow-next { right: 1.5rem; }

/* Hero Slide Counter */
.hero-counter {
  position: absolute;
  bottom: 1.75rem;
  right: 2rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  z-index: 30;
}

/* Hero bottom fade */
.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6rem;
  background: linear-gradient(to top, var(--stone-50), transparent);
  z-index: 5;
}

/* ── HERO RESPONSIVE ─────────────────────────────────── */
/* aspect-ratio: 16/9 handles height automatically at every width.
   Only UI element sizes and font scales need breakpoints. */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .hero-arrow { width: 38px; height: 38px; }
  .hero-arrow svg { width: 15px; height: 15px; }
  .hero-arrow-prev { left: 1rem; }
  .hero-arrow-next { right: 1rem; }
  .hero-counter { right: 1rem; }
}

/* Mobile landscape / small tablet (≤ 768px) */
@media (max-width: 768px) {
  .hero-content { padding: 0 1.25rem; }
  .hero-title { font-size: clamp(2rem, 10vw, 4rem); }
  .hero-tagline { font-size: 0.95rem; margin-top: 1rem; }
  .hero-cta { gap: 0.75rem; margin-top: 2rem; }
  .hero-arrow { width: 34px; height: 34px; }
  .hero-arrow svg { width: 13px; height: 13px; }
  .hero-arrow-prev { left: 0.5rem; }
  .hero-arrow-next { right: 0.5rem; }
  .hero-dots { bottom: 1rem; gap: 0.4rem; }
  .hero-counter { display: none; }
  .scroll-indicator { display: none; }
}

/* Mobile portrait (≤ 480px) */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.5rem, 11vw, 2.5rem); letter-spacing: 0.05em; }
  .hero-eyebrow-text { font-size: 0.5rem; letter-spacing: 0.3em; }
  .hero-subtitle-tag { font-size: 0.5rem; letter-spacing: 0.35em; }
  .hero-tagline { font-size: 0.8rem; margin-top: 0.75rem; }
  .hero-cta { margin-top: 1.25rem; flex-wrap: wrap; }
  .btn-primary { font-size: 0.6rem; padding: 0.625rem 1rem; }
  .btn-ghost { font-size: 0.6rem; }
  .hero-arrow { display: none; }    /* swipe on mobile */
  .hero-eyebrow { margin-bottom: 1rem; }
  .hero-dots { gap: 0.3rem; bottom: 0.75rem; }
  .hero-dot { width: 5px; height: 5px; }
}


/* Intro Section */
.intro-section {
  padding: 7rem 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}
.intro-title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--stone-800);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.intro-title em { color: var(--stone-500); }
.intro-body {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--stone-500);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-top: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Bar */
.stats-bar {
  background: var(--stone-900);
  padding: 4rem 1.5rem;
}
.stats-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--stone-700);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid var(--stone-700);
}
.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 300;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-top: 0.5rem;
}

/* Product Categories */
.categories-section {
  padding: 7rem 1.5rem;
  max-width: 90rem;
  margin: 0 auto;
}
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

.category-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--stone-100);
  transition: box-shadow 0.7s ease, transform 0.7s ease;
  text-decoration: none;
  color: inherit;
}
.category-card:hover {
  box-shadow: 0 25px 50px rgba(214,211,209,0.6);
  transform: translateY(-3px);
}
.category-card-img {
  height: 22rem;
  overflow: hidden;
  position: relative;
}
.category-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.category-card:hover .category-card-img img { transform: scale(1.05); }
.category-card-img-fade {
  display: none;
}
.category-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.9);
  color: var(--stone-700);
  padding: 0.375rem 0.75rem;
}
.category-card-body { padding: 2rem; }
.category-card-tag {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 0.5rem;
}
.category-card-name {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--stone-800);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.category-card-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-500);
  line-height: 1.75;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category-card-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone-700);
  transition: color 0.3s;
}
.category-card:hover .category-card-cta { color: var(--stone-900); }
.category-card-cta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; transition: transform 0.3s; }
.category-card:hover .category-card-cta svg { transform: translateX(3px); }
.category-card-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--stone-800);
  transition: width 0.5s ease;
}
.category-card:hover .category-card-line { width: 100%; }

/* Features Section */
.features-section {
  padding: 6rem 1.5rem;
  background: var(--stone-100);
}
.features-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-item { text-align: center; }
.feature-icon { font-size: 1.875rem; color: var(--stone-400); margin-bottom: 1.25rem; }
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--stone-800);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.feature-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-500);
  line-height: 1.75;
  font-weight: 300;
}

/* Lifestyle Banner */
.lifestyle-banner {
  position: relative;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lifestyle-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.lifestyle-overlay { position: absolute; inset: 0; background: rgba(28,25,23,0.5); }
.lifestyle-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 48rem;
}
.lifestyle-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: white;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.lifestyle-author {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3rem;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 1rem 2rem;
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}
.btn-outline-white svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative;
  min-height: 70vh;
  background: var(--stone-900);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,25,23,0.2), rgba(28,25,23,0.9));
}
.about-deco-lines {
  position: absolute;
  top: 8rem; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  opacity: 0.08;
}
.about-deco-line { width: 1px; height: 8rem; background: white; }
.about-hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 6rem;
  width: 100%;
}
.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: white;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.about-hero-title em { color: var(--stone-400); font-style: italic; }

.manifesto-section { padding: 7rem 1.5rem; max-width: 56rem; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--stone-700);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-style: italic;
  margin-bottom: 2.5rem;
}
.manifesto-divider { height: 1px; background: var(--stone-200); margin-bottom: 2.5rem; }
.manifesto-cols {
  columns: 1;
  gap: 3rem;
}
@media (min-width: 768px) { .manifesto-cols { columns: 2; } }
.manifesto-p {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-500);
  line-height: 2;
  font-weight: 300;
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.image-break { position: relative; height: 18rem; overflow: hidden; }
.image-break img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.image-break-overlay-top {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--stone-50), transparent, var(--stone-50));
}
.image-break-overlay-dark { position: absolute; inset: 0; background: rgba(28,25,23,0.2); }

.pillars-section { padding: 7rem 1.5rem; background: white; }
.pillars-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
.pillar-item { display: flex; gap: 2rem; }
.pillar-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--stone-100);
  font-weight: 300;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}
.pillar-body { padding-top: 0.5rem; }
.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--stone-800);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.pillar-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-500);
  line-height: 2;
  font-weight: 300;
}

.apps-section { padding: 6rem 1.5rem; background: var(--stone-50); }
.apps-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .apps-grid { grid-template-columns: repeat(3, 1fr); } }
.app-card {
  background: white;
  border: 1px solid var(--stone-100);
  padding: 2rem;
  transition: border-color 0.5s, box-shadow 0.5s;
}
.app-card:hover {
  border-color: var(--stone-300);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.app-icon { font-size: 1.5rem; color: var(--stone-300); margin-bottom: 1rem; transition: color 0.3s; }
.app-card:hover .app-icon { color: var(--stone-500); }
.app-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--stone-800);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.app-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-500);
  line-height: 1.625;
  font-weight: 300;
}

.brand-statement { padding: 6rem 1.5rem; background: var(--stone-900); }
.brand-statement-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.brand-title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: white;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}
.brand-title em { color: var(--stone-400); font-style: italic; }
.brand-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-400);
  line-height: 2;
  font-weight: 300;
}

.specs-section { padding: 6rem 1.5rem; background: white; }
.specs-grid {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .specs-grid { grid-template-columns: repeat(3, 1fr); } }
.spec-card {
  text-align: center;
  padding: 2rem;
  background: var(--stone-50);
  border: 1px solid var(--stone-100);
}
.spec-label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 0.75rem;
}
.spec-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--stone-800);
  margin-bottom: 0.5rem;
}
.spec-sub {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  color: var(--stone-400);
  letter-spacing: 0.05em;
}


/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-hero {
  position: relative;
  padding: 8rem 1.5rem 5rem;
  background: var(--stone-900);
  overflow: hidden;
  text-align: center;
}
.products-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.5) 39px, rgba(255,255,255,0.5) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.5) 39px, rgba(255,255,255,0.5) 40px);
}
.products-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: white;
  font-weight: 300;
  letter-spacing: 0.15em;
}
.products-hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--stone-400);
  font-style: italic;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* Filter Bar */
.filter-bar {
  position: sticky;
  top: 80px;
  z-index: 30;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-100);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.filter-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.filter-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--stone-100);
  overflow-x: auto;
}
.filter-tab {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1.25rem 2rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s, border-color 0.3s;
  color: var(--stone-400);
  background: none;
}
.filter-tab:hover  { color: var(--stone-700); }
.filter-tab.active { color: var(--stone-800); border-bottom-color: var(--stone-800); }

.sub-filter-tabs {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
}
.sub-filter-tab {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone-400);
  background: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sub-filter-tab:hover  { color: var(--stone-600); }
.sub-filter-tab.active { color: var(--stone-800); }
.sub-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--stone-800);
  border-radius: 50%;
}

/* Products Grid */
.products-section { max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem; }
.products-range-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-500);
  line-height: 2;
  font-weight: 300;
  max-width: 42rem;
  margin-bottom: 3.5rem;
}
.products-count {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  color: var(--stone-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: white;
  border: 1px solid var(--stone-100);
  cursor: pointer;
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.3s;
  display: none; /* JS will show filtered ones */
}
.product-card.visible { display: block; }
.product-card:hover {
  border-color: var(--stone-300);
  box-shadow: 0 20px 40px rgba(214,211,209,0.4);
}
.product-visual {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  background: var(--stone-50);
}
.product-visual-inner { width: 100%; height: 100%; }
.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--stone-800);
  color: white;
  padding: 0.25rem 0.625rem;
}
.product-info { padding: 1.5rem; }
.product-info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.product-code {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 0.25rem;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--stone-800);
  letter-spacing: 0.05em;
}
.product-arrow {
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-400);
  font-size: 0.75rem;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  flex-shrink: 0;
  margin-top: 4px;
}
.product-card:hover .product-arrow {
  background: var(--stone-800);
  border-color: var(--stone-800);
  color: white;
}
.product-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-500);
  line-height: 1.625;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-tags {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stone-50);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.product-tag {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-400);
  background: var(--stone-50);
  padding: 0.25rem 0.625rem;
}

.products-empty {
  text-align: center;
  padding: 8rem 0;
  display: none;
}
.products-empty.visible { display: block; }
.products-empty p {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--stone-400);
  font-weight: 300;
}

/* Size Table */
.size-table-section { background: var(--stone-900); padding: 5rem 1.5rem; }
.size-table-inner { max-width: 64rem; margin: 0 auto; }
.size-table { width: 100%; border-collapse: collapse; }
.size-table-note {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  color: var(--stone-600);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1.5rem;
}
.size-table th {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-500);
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid var(--stone-700);
}
.size-table td { padding: 1rem; border-bottom: 1px solid var(--stone-800); }
.size-table tr:hover td { background: rgba(255,255,255,0.03); }
.size-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.td-cat {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-400);
  letter-spacing: 0.05em;
}
.td-size {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: white;
  font-weight: 300;
}
.td-spec {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-300);
  font-weight: 300;
  letter-spacing: 0.03em;
}
.td-plain {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-400);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* Product Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(28,25,23,0.8);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white;
  max-width: 42rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  padding: 2rem;
  border-bottom: 1px solid var(--stone-100);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.modal-code {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 0.25rem;
}
.modal-name {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--stone-800);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.modal-close {
  color: var(--stone-400);
  transition: color 0.3s;
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 4px;
}
.modal-close:hover { color: var(--stone-800); }
.modal-visual { height: 11rem; background: var(--stone-50); overflow: hidden; }
.modal-body { padding: 2rem; }
/* Available Sizes section — always full-width block, clear of features grid */
#modal-sizes-section {
  display: block;
  width: 100%;
  clear: both;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stone-200);
  box-sizing: border-box;
}
.modal-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-600);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 2rem;
}
.modal-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.modal-detail-label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 0.5rem;
}
.modal-detail-value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--stone-800);
}
.modal-features-label {
  display: block;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 1rem;
  clear: both;
}
.modal-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  overflow: hidden;
}
.modal-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.modal-feature-dot {
  width: 4px; height: 4px;
  background: var(--stone-400);
  border-radius: 50%;
  flex-shrink: 0;
}
.modal-feature-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-600);
  font-weight: 300;
}
.modal-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone-100);
  margin-top: 2rem;
  text-align: center;
}
.modal-footer p {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-400);
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  position: relative;
  background: var(--stone-900);
  padding: 10rem 1.5rem 6rem;
  overflow: hidden;
  text-align: center;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,25,23,0.7), rgba(28,25,23,0.95));
}
.contact-hero-rule {
  position: absolute;
  left: 50%; top: 0;
  width: 1px; height: 5rem;
  background: linear-gradient(to bottom, transparent, var(--stone-600));
  transform: translateX(-50%);
}
.contact-hero-title {
  position: relative;
  z-index: 10;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: white;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.contact-hero-desc {
  position: relative;
  z-index: 10;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-400);
  line-height: 2;
  max-width: 32rem;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.contact-section { padding: 6rem 1.5rem; max-width: 72rem; margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}

/* Contact Info */
.contact-brand-name {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--stone-800);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}
.contact-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone-400);
}
.contact-info-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-info-item:hover .contact-icon-box {
  background: var(--stone-900);
}
.contact-info-item:hover .contact-icon-box svg { stroke: white; }
.contact-icon-box {
  width: 2.5rem; height: 2.5rem;
  background: var(--stone-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.contact-icon-box svg { width: 14px; height: 14px; stroke: var(--stone-500); fill: none; transition: stroke 0.3s; }
.contact-info-label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--stone-700);
  transition: color 0.3s;
  letter-spacing: 0.03em;
}
a:hover .contact-info-value { color: var(--stone-900); }
.contact-divider { height: 1px; background: var(--stone-200); margin: 2rem 0; }
.contact-works-label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 1.25rem;
}
.contact-works-list { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-works-item { display: flex; align-items: center; gap: 0.75rem; }
.contact-works-item svg { width: 12px; height: 12px; stroke: var(--stone-300); fill: none; }
.contact-works-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-500);
  font-weight: 300;
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone-400);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--stone-200);
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-700);
  outline: none;
  transition: border-color 0.3s;
  font-weight: 300;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--stone-300); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--stone-500); }
.form-textarea { resize: none; }
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  background: var(--stone-900);
  color: white;
  padding: 1.25rem 3.5rem;
  transition: background 0.3s;
  width: 100%;
  border: none;
  cursor: pointer;
}
@media (min-width: 640px) { .form-submit-btn { width: auto; } }
.form-submit-btn:hover { background: var(--stone-700); }
.form-submit-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; transition: transform 0.3s; }
.form-submit-btn:hover svg { transform: translateX(3px); }
.form-note {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  color: var(--stone-400);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* Success State */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}
.success-icon {
  width: 4rem; height: 4rem;
  border: 1px solid var(--stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--stone-400);
  margin-bottom: 2rem;
}
.success-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--stone-800);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.success-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone-500);
  line-height: 1.75;
  max-width: 24rem;
  font-weight: 300;
}

/* Closing Banner */
.closing-banner {
  padding: 5rem 1.5rem;
  background: var(--stone-100);
  border-top: 1px solid var(--stone-200);
  text-align: center;
}
.closing-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: var(--stone-600);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

/* Page Hero (generic for inner pages) */
.page-hero-eyebrow { margin-bottom: 2rem; }
.page-hero-eyebrow { display: flex; align-items: center; gap: 1rem; }
.page-hero-eyebrow-line { height: 1px; width: 3rem; background: var(--stone-600); }
.page-hero-eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--stone-400);
}

/* Responsive overflow fixes */
@media (max-width: 640px) {
  .modal-details-grid { grid-template-columns: 1fr; }
  .modal-features-grid { grid-template-columns: 1fr; }
  .filter-tabs { flex-wrap: nowrap; overflow-x: auto; }
}
