:root {
  --primary: #da6318; /* Burnt Orange */
  --accent: #fec091; /* Peach */
  --light: #fdf2e3; /* Cream */
  --secondary: #fdf4e8;
  --dark: #0b020a;
  --text: #0d0c0c;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  --radius: 8px;
}

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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light);
  overflow-x: hidden;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  font-feature-settings:
    "kern" 1,
    "liga" 1,
    "calt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Playfair Display",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  /* font-style: italic; */
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 3.2rem;
  font-weight: 400;
}

h2 {
  font-size: 2.4rem;
  font-weight: 400;
}

h3 {
  font-size: 1.6rem;
  font-weight: 400;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.3rem;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 88%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
}

section {
  padding: 7rem 0;
}

.logo-svg {
  height: 40px;
  width: auto;
  transition: var(--transition);
  color: var(--primary);
}

.logo:hover .logo-svg {
  transform: scale(1.05);
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
