:root {
    --bg: #f5f2eb;
    --surface: #ffffff;
    --text: #1f2326;
    --muted: #6b7075;
    --silver: #d6d8da;
    --walnut: #8b5e3c;
    --amber: #d9a441;
    --max-width: 1200px;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,0.06);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Inter, sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

.container {
    width: min(90%, var(--max-width));
    margin: 0 auto;
}

section {
    padding: 6rem 0;
}

/* Header */

header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(245,242,235,0.9);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: var(--amber);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text);
    transition: .2s;
}

nav a:hover {
    color: var(--amber);
}

/* Buttons */

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    transition: .25s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--text);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--text);
    color: white;
}

/* Hero */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
}

.trust-list span {
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Section Headings */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--muted);
}

/* Cards */

.grid {
    display: grid;
    gap: 2rem;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--silver);
    box-shadow: var(--shadow);
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    color: var(--muted);
}

/* Vintage Accent */

.card::before {
    content: "";
    display: block;
    height: 4px;
    width: 60px;
    background: var(--amber);
    margin-bottom: 1rem;
    border-radius: 999px;
}

/* Brands */

.brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.brand {
    background: white;
    border: 1px solid var(--silver);
    border-radius: var(--radius);
    text-align: center;
    padding: 1.5rem;
    font-weight: 600;
}

/* Process */

.process {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--text);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
}

/* Testimonials */

.testimonials {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

blockquote {
    color: var(--muted);
    font-style: italic;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

form {
    display: grid;
    gap: 1rem;
}

input,
textarea {
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--silver);
    font: inherit;
    background: white;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

/* Footer */

footer {
    background: var(--text);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive */

@media (max-width: 900px) {

    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .hero {
        padding-top: 4rem;
    }
}
