/**
 * BONCEPT Experience - Base & Typography Stylesheet
 */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Accessibility Focus Ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, .serif {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

p {
  color: #334155;
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

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

/* Container & Sections */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section-ivory {
  background-color: var(--ivory);
}

.section-white {
  background-color: var(--white);
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-header {
  margin-bottom: 56px;
  max-width: 680px;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  color: var(--forest);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--moss);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
}

.btn-forest {
  background-color: var(--forest);
  color: var(--white);
}

.btn-forest:hover {
  background-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(18, 55, 42, 0.2);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  transform: translateY(-1px);
}

.btn-outline-ivory {
  border: 1px solid var(--ivory);
  color: var(--ivory);
}

.btn-outline-ivory:hover {
  background-color: var(--ivory);
  color: var(--forest);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
}

/* Body Scroll Lock Utility */
body.scroll-locked {
  overflow: hidden !important;
  touch-action: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
