/* ========================
   HUESPACE — Custom Theme
   ======================== */

:root {
  --bg: #faf8f5;
  --fg: #1a1814;
  --fg-muted: #6b6560;
  --accent: #c8860a;
  --accent-light: #f5e8cc;
  --border: #e8e3db;
  --card-bg: #ffffff;
  --section-pad: 100px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 28px;
  left: 28px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  background: rgba(250,248,245,0.88);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 100px;
}

.hero-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Product callout dots */
.callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: fadein 0.6s ease-out both;
}

.callout-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  flex-shrink: 0;
}

.callout-label {
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.callout-1 { top: 42%; left: 18%; animation-delay: 0.3s; }
.callout-2 { top: 15%; left: 55%; animation-delay: 0.6s; }
.callout-3 { top: 62%; left: 38%; animation-delay: 0.9s; }
.callout-4 { top: 58%; left: 78%; animation-delay: 1.2s; }

@keyframes fadein {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CTA button */
.hero-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  width: fit-content;
}

.hero-cta:hover {
  background: #b07508;
  transform: translateY(-1px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 64px 80px 64px;
  background: var(--bg);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 400px;
  line-height: 1.7;
}

/* SECTION TAG */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* CONCEPT */
.concept {
  background: var(--card-bg);
  padding: var(--section-pad) 0;
}

.concept-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-image-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.concept-img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.concept-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 24px;
  color: var(--fg);
}

.concept-text p {
  color: var(--fg-muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.75;
}

/* FEATURES */
.features {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.features-title {
  font-size: clamp(26px, 3vw, 42px);
  margin-bottom: 56px;
  color: var(--fg);
  max-width: 520px;
}

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

.feature-card {
  padding: 40px 36px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,24,20,0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--fg);
}

.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* HOW */
.how {
  background: var(--card-bg);
  padding: var(--section-pad) 0;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 20px;
  color: var(--fg);
}

.how-text p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.how-text em {
  font-style: italic;
  color: var(--fg);
}

.how-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
}

.how-list svg {
  color: var(--accent);
  flex-shrink: 0;
}

.how-image-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.how-img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* CLOSING */
.closing {
  padding: 140px 0;
  background: var(--fg);
  color: #faf8f5;
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.closing-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: #c8860a;
  margin-bottom: 36px;
  line-height: 1.4;
}

.closing-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  color: #faf8f5;
  margin-bottom: 28px;
  line-height: 1.2;
}

.closing-body {
  font-size: 17px;
  color: rgba(250,248,245,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 48px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 260px;
}

.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
  padding-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-wrap {
    height: 55vw;
    min-height: 300px;
  }

  .hero-content {
    padding: 48px 32px 56px;
  }

  .concept-inner,
  .how-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  :root { --section-pad: 72px; }

  .hero-content { padding: 40px 24px 48px; }
  .concept-inner,
  .features-inner,
  .how-inner,
  .closing-inner,
  .footer-inner { padding: 0 24px; }

  .feature-card { padding: 28px 24px; }
}