/* main.css */
:root {
  --navy: #1C2B4A;
  --accent: #C4714A;
  --teal: #aac3ee;
  --white: #ffffff;
  --grey-bg: #F5F4F1;
  --grey-mid: #E8E6E1;
  --grey-text: #6B6B72;
  --body: #2A2A35;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', -apple-system, sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .price-val {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  color: var(--white);
  margin: 20px 0;
}
h1 span.accent { color: var(--accent); }

h2 {
  font-size: clamp(26px, 3vw, 42px);
  margin-bottom: 24px;
  line-height: 1.25;
}

h3 {
  font-size: clamp(24px, 2.5vw, 30px);
  line-height: 1.3;
}

p {
  font-size: 17px;
  color: var(--body);
}

.section-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.price-val {
  font-size: clamp(32px, 3vw, 40px);
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Scroll Progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  transition: width .1s linear; width: 0%;
}
