/* LuxeAfford migrate — Art tokens applied site-wide (VISUAL-MIGRATE-LOCK)
   Source: mood-board-shared-workspace/luxe-afford/migrate/css/tokens.css */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Source+Sans+3:wght@400;500;600&display=swap");
@import url("tokens.css?v=1790054069");

:root {
  /* Legacy aliases → Art --la-* tokens */
  --bg: var(--la-void);
  --ink: var(--la-ink);
  --muted: var(--la-ink-muted);
  --accent: var(--la-blush);
  --accent-dark: var(--la-blush-deep);
  --accent-soft: var(--la-blush-soft);
  --line: var(--la-line);
  --white: var(--la-charcoal);
  --panel: var(--la-elevated);
  --banner: var(--la-banner-bg);
  --on-accent: var(--la-on-blush);
  --max: 1120px;
  --font-serif: var(--la-display);
  --font-sans: var(--la-ui);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 15px;
}
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, .serif { font-family: var(--font-serif); font-weight: 400; }

.coming-soon {
  background: var(--la-banner-bg);
  color: var(--la-banner-ink);
  border-bottom: 1px solid var(--la-blush);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  font-family: var(--la-display);
  letter-spacing: 0.02em;
}

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img { height: 56px; width: auto; /* real logo retained */ }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.4rem 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-sans);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  align-items: center;
}
.nav a {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 500;
}
.nav a[aria-current="page"] { color: var(--accent); }
.nav a:hover { color: var(--accent); text-decoration: none; }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem 1.25rem 1.25rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.65rem, 3.8vw, 2.55rem);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}
.hero .sub {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 38rem;
  margin: 0 auto;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 2.75rem;
}
.section h2 {
  font-size: 1.7rem;
  text-align: center;
  margin: 0 0 1.35rem;
}
.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 40rem;
  margin: -0.5rem auto 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.35rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}
.product-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.45); }
.product-card .thumb {
  aspect-ratio: 3/4;
  background: var(--panel);
  overflow: hidden;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .body {
  padding: 0.9rem 0.95rem 1.05rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  font-size: 1.02rem;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.product-card .price {
  color: var(--accent-dark);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.product-card .meta {
  color: var(--muted);
  font-size: 0.72rem;
  margin-bottom: 0.85rem;
}
.btn, .product-card .cta {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent) !important;
  padding: 0.55rem 0.9rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 2px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  text-decoration: none !important;
}
.btn:hover, .product-card .cta:hover { background: var(--accent-dark); }
.product-card .cta { margin-top: auto; width: 100%; }
.btn-outline {
  background: transparent;
  color: var(--accent-dark) !important;
  border: 1px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--on-accent) !important; }

.hero-split {
  max-width: var(--max);
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-split img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 2px;
}

.prose {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.02rem;
}
.prose p { margin: 0 0 1rem; }
.prose .signoff { font-style: italic; color: var(--muted); margin-top: 1.25rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.25rem 1.2rem;
  border-radius: 2px;
}
.service-card h3 { margin: 0 0 0.55rem; font-size: 1.2rem; }
.service-card ul { margin: 0.4rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.service-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
}
.portfolio-grid a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--panel);
}
.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.portfolio-grid a:hover img { transform: scale(1.04); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-info h2 { text-align: left; margin-bottom: 0.75rem; }
.contact-info p { margin: 0.4rem 0; }
.contact-info a { font-weight: 500; }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem 1.25rem;
  border-radius: 2px;
}
.form h3 { margin: 0 0 1rem; font-size: 1.25rem; }
.form label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0.65rem 0 0.3rem;
  color: var(--muted);
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form .actions { margin-top: 1rem; }
.form .hint { font-size: 0.78rem; color: var(--muted); margin-top: 0.75rem; }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.product-detail .gallery img {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--panel);
}
.product-detail .thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.product-detail .thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
  cursor: pointer;
}
.product-detail .price { font-size: 1.25rem; color: var(--accent-dark); margin: 0.5rem 0; }
.product-detail .meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 1rem; }
.product-detail .desc { color: var(--ink); margin-bottom: 1.25rem; }
.product-detail .options {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.product-detail .options ul { margin: 0.35rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 1.75rem 1.25rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
}
.site-footer .social {
  margin-bottom: 0.65rem;
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.site-footer nav {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.site-footer nav a {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
}

.page-banner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 0.5rem;
  text-align: center;
}
.page-banner h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 0.4rem; }

.note-soft {
  max-width: var(--max);
  margin: 0 auto 1.5rem;
  padding: 0 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 800px) {
  .nav-toggle { display: inline-block; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 0.75rem;
    gap: 0.65rem;
  }
  .nav.is-open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .hero-split, .product-detail, .contact-layout, .form .row {
    grid-template-columns: 1fr;
  }
  .hero-split img { height: 200px; }
}
