/* Minimal reset to provide a clean base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Ibarra Real Nova", serif;
  text-transform: uppercase;
}

.sec-title h3 {
  font-size: 16px;
}

.sec-title h1 {
  font-size: 50px;
}

.sec-title h1 span {
  font-style: italic;
  text-transform: capitalize;
}

section {
  padding: 60px 0;
}

.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #d5a642, #c4942a);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(213, 166, 66, 0.35);
}