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

:root {
    --text: #1d1d1d;
    --muted: #666;
    --x-accent: #b08a00;
    --accent: #a78617;
    --light: #f7f5ef;
    --border: #e7e2d7;
    --max-width: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
}

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

a {
    text-decoration: none;
}

.container {
    width: 92%;
    max-width: var(--max-width);
    margin: auto;
}

/* -------------------- */
/* NAVIGATION           */
/* -------------------- */

header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
}

nav {
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    align: left;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    font-size: 0.96rem;
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-button {
    padding: 12px 20px;
    background: var(--accent);
    color: white !important;
    border-radius: 999px;
}

.button,
.nav-links a {
    transition: all 0.2s ease;
}

/* -------------------- */
/* HERO                 */
/* -------------------- */

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 1.02;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero p {
    font-size: 1.16rem;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.button {
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 500;
    transition: 0.2s;
}

.button-primary {
    background: var(--accent);
    color: white;
}

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

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

.button-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
	0 30px 60px rgba(0,0,0,0.10);
}

.floating-card {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: white;
    padding: 22px 24px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    width: 240px;
}

.floating-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.floating-card p {
    font-size: 0.92rem;
    margin: 0;
    color: var(--muted);
}

/* -------------------- */
/* TRUST STRIP          */
/* -------------------- */

.trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 26px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: center;
}

.trust-items div {
    font-size: 0.95rem;
    color: var(--muted);
}

/* -------------------- */
/* FEATURE SECTION      */
/* -------------------- */

.feature-section {
    padding: 140px 0;
}

.feature-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1.05;
    margin-bottom: 30px;
}

.feature-section p {
    color: var(--muted);
    margin: auto;
    font-size: 1.1rem;
    max-width: 720px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.feature-image {
    border-radius: 24px;
    overflow: hidden;
}

.feature-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.08;
    margin-bottom: 28px;
}

.feature-content p {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: 1.05rem;
}

/* -------------------- */
/* SERVICES PREVIEW     */
/* -------------------- */

.services-preview {
    padding: 120px 0;
    background: var(--light);
}

.section-heading {
    max-width: 700px;
    margin-bottom: 70px;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}

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

.service-item h3 {
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.service-item p {
    color: var(--muted);
    font-size: 0.98rem;
}

/* -------------------- */
/* CTA                  */
/* -------------------- */

.cta {
    padding: 130px 0;
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 28px;
}

.cta p {
    max-width: 640px;
    margin: auto;
    color: var(--muted);
    margin-bottom: 40px;
    font-size: 1.08rem;
}

/* -------------------- */
/* FOOTER               */
/* -------------------- */

footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-content p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* -------------------- */
/* CONTACT FORM         */
/* -------------------- */

.contact-box {
    width: 100%;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 20px 22px;
    margin-bottom: 22px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #faf9f6;

    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.contact-box textarea {
    min-height: 190px;
    resize: vertical;
}

.contact-box input::placeholder,
.contact-box textarea::placeholder {
    color: #8b8b8b;
}

.contact-box input:focus,
.contact-box textarea:focus {
    outline: none;

    border-color: var(--accent);

    background: white;

    box-shadow:
        0 0 0 4px rgba(167, 134, 23, 0.10);
}

/* Button spacing */
.contact-box button {
    margin-top: 10px;
}

/* -------------------- */
/* MOBILE               */
/* -------------------- */

@media (max-width: 900px) {

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

    .hero {
	padding: 80px 0;
    }

    .feature-section,
    .services-preview,
    .cta {
	padding: 90px 0;
    }

    .floating-card {
	position: relative;
	left: 0;
	bottom: 0;
	width: 100%;
	margin-top: 20px;
    }

    .nav-links {
	gap: 18px;
	font-size: 0.9rem;
    }

}

@media (max-width: 640px) {

    nav {
	height: auto;
	padding: 20px 0;
	flex-direction: column;
	gap: 20px;
    }

    .nav-links {
	flex-wrap: wrap;
	justify-content: center;
    }

    .hero h1 {
	font-size: 3rem;
    }

    .logo img {
	height: 100px;
    }

}


