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

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none !important;
}

:root {
  --bg: #FDF6F0;
  --text: #2C2420;
  --accent: #C9956A;
  --accent-light: #E8C4A8;
  --accent-dark: #B07D52;
  --accent-border: rgba(201,149,106,0.2);
  --text-muted: rgba(232,196,168,0.5);
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --font-head: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.35s ease;
  --max-width: 1200px;
  --color-warning: #8A2D24;
}

html { scroll-behavior: smooth; cursor: none !important; /* custom cursor added via main.js */ }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none !important;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.5rem); }

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

img { width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem 0;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: background var(--transition), transform var(--transition);
}

.btn:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover { background: var(--accent); color: var(--white); }

.img-placeholder {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  border-radius: var(--radius-md);
}

footer {
  background: var(--text);
  color: var(--accent-light);
  padding: 4rem 0 2rem;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

footer h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

footer p, footer a, footer li {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--accent-light);
  list-style: none;
}

footer a { transition: color var(--transition); }

footer a:hover { color: var(--white); }

footer .footer-bottom {
  border-top: 1px solid var(--accent-border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reveal { /* initial state set via JS in main.js to prevent blank render on CDN failure */ }

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
}
