* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--secondary-color);
}

h1, h2 {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-wine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
}

.section__title {
  font-size: 56px;
}

h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}
