/* ============================================================
   BASE.CSS
   Reset · CSS Variables · Section Commons
   Brooklyn Beauty Lens
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── CSS VARIABLES ── */
:root {
  --rust:         #C4541A;
  --deep-rust:    #8B3410;
  --amber:        #E8883A;
  --cream:        #FAF5EE;
  --warm-off:     #F2E8D8;
  --charcoal:     #2D2420;   /* softened warm dark brown — replaces near-black */
  --section-dark: #3A2E28;   /* lighter warm dark for Services / Booking sections */
  --footer-dark:  #241C18;   /* footer — slightly deeper but still warm, not pitch black */
  --mid-gray:     #6B5F56;
  --light-gray:   #D9CFC5;
}

/* ── SECTION COMMONS ── */
section {
  padding: 6rem 6rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid-gray);
  max-width: 520px;
}