/* Reset & Base */
*,
*::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-text-main);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
}

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

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

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

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

.text-white {
    color: var(--color-white);
}

.text-gold {
    color: var(--color-gold);
}

.text-gold-dark {
    color: var(--color-gold-text);
}

.bg-petrol {
    background-color: var(--color-petrol);
    color: var(--color-white);
}

.bg-beige {
    background-color: var(--color-beige);
}

.bg-graphite {
    background-color: var(--color-black-graphite);
    color: var(--color-white);
}

/* Gold Line Separator */
.separator-gold {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    background-image: var(--bg-gold-texture);
    background-size: cover;
    margin: var(--spacing-sm) auto;
}