/* Ensure [hidden] attribute always hides elements regardless of CSS display rules */
[hidden] { display: none !important; }

/* ===== Variables — Warm Theme ===== */
:root {
  --cream:       #F7F2EA;
  --warm-white:  #FDFAF5;
  --beige:       #EAE0D0;
  --terracotta:  #B5541E;
  --terra-hover: #963F13;
  --terra-light: #F0D5C5;
  --brown-dark:  #2A1805;
  --brown-mid:   #5C3D1E;
  --warm-gray:   #8C7B70;
  --sand:        #CDB99A;
  --border:      #DDD3C4;
  --radius-sm:   4px;
  --radius:      10px;
  --max-w:       1280px;
  --font-serif:  'Cormorant Garant', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== Layout ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--brown-dark);
  margin-bottom: 2.5rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn--primary {
  background: var(--terracotta);
  color: #fff;
}
.btn--primary:hover { background: var(--terra-hover); }
.btn--outline {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.btn--outline:hover { background: var(--terra-light); }
.btn--hero {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 1rem 2.5rem;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn--hero:hover { background: var(--brown-mid); }
.btn--full { width: 100%; }
