/* ─── GiGi Beauty — Global Styles ─────────────────────────────────────────── */

:root {
  /* Brand colours */
  --gold:        #e2bd73;
  --gold-light:  #fff0d4;
  --gold-dark:   #c69b45;
  --red:         #b80c28;
  --black:       #2f251c;
  --black-soft:  #302216;
  --white:       #ffffff;
  --text-muted:  rgba(255, 240, 216, 0.76);

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-body:   'Cormorant Garamond', 'Times New Roman', serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;
}

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

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

body {
  background-color: var(--black);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

@media (max-width: 720px) {
  :root {
    --nav-height: 64px;
    --space-md: 1.15rem;
    --space-lg: 2.75rem;
    --space-xl: 4.5rem;
  }

  html {
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--nav-height);
  }

  body { min-width: 320px; }

  button,
  input,
  select,
  textarea,
  a { touch-action: manipulation; }

  input,
  select,
  textarea { font-size: 16px; }

  .container { padding-inline: 1.15rem; }
  .section { padding-block: var(--space-lg); }
  .btn { width: min(100%, 330px); padding-inline: 1.25rem; text-align: center; }
}

/* ── Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--gold-light); }

/* ── Utility classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.gold-text {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212, 175, 106, 0.35);
}

.italic { font-style: italic; }

.text-center { text-align: center; }

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #c8a06a 0%, #d4af6a 50%, #b8903a 100%);
  color: #1a0a0a;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 44px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(212, 175, 106, 0.25);
}
.btn:hover {
  background: linear-gradient(135deg, #d4af6a 0%, #e8c87a 50%, #c8a04a 100%);
  box-shadow: 0 8px 40px rgba(212, 175, 106, 0.45);
  transform: translateY(-2px);
  color: #1a0a0a;
  letter-spacing: 0.35em;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(212, 175, 106, 0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 24px rgba(212, 175, 106, 0.15);
}

/* ── Gold divider line */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: var(--space-md) auto;
}

/* ── Image helpers */
img {
  display: block;
  max-width: 100%;
  height: auto;
}
