/* Land of Stone Flowers — Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

:root {
  --parchment:     #F7F0E3;
  --parchment-alt: #EFE6D0;
  --stone:         #2C2822;
  --stone-mid:     #5A5248;
  --stone-light:   #9B9188;
  --gold:          #A0813A;
  --gold-light:    #C9A96E;
  --forest:        #3A5045;
  --rose:          #B8705A;
  --ink:           #1A1614;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1120px;
  --section-py: clamp(4rem, 8vw, 8rem);
}

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

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

body {
  background: var(--parchment);
  color: var(--stone);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout ─────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Ornament divider ───────────────────────── */

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  opacity: 0.6;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ── Buttons ────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}

.btn-primary {
  background: var(--stone);
  color: var(--parchment);
  border-color: var(--stone);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--stone);
  border-color: var(--stone);
}
.btn-outline:hover {
  background: var(--stone);
  color: var(--parchment);
}
