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

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

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background-color: var(--color-cream);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(201,161,90,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(46,61,47,0.06) 0%, transparent 50%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.8;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

/* Placeholder badge */
.placeholder-badge {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  vertical-align: middle;
  font-family: var(--font-body);
}

/* Price placeholder cells */
.price-placeholder {
  background: rgba(201, 161, 90, 0.12);
  color: var(--color-gold);
  font-weight: 600;
}

/* Section label */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

/* Divider */
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-soft));
  border-radius: 2px;
  margin: var(--space-2) 0 var(--space-4);
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* Scroll to top */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: rgba(46, 61, 47, 0.65);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

#scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#scroll-top:hover {
  background: rgba(201,161,90,0.75);
  border-color: rgba(201,161,90,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,161,90,0.35);
}
