@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700&display=swap');

:root {
    --wood-dark: #2d1f14;
    --wood-primary: #6f4e2e;
    --wood-secondary: #a7794f;
    --wood-light: #efe4d2;
    --cream: #fbf7ef;
    --leaf: #243f2c;
    --gold: #c39b63;
    --text-dark: #241b13;
    --text-muted: #6f6255;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--cream);
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

.container {
    max-width: 1200px;
}

/* Navigation */
header {
    padding: 12px 30px;
    background: rgba(45, 31, 20, 0.96);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.4px;
}

.logo-mark {
    width: 70px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: rgb(244, 240, 235);
    border-radius: 10px;
    padding: 5px;
}

.logo-mark img {
    width: auto;
    height: 50px;
    transform: translateX(10px);
}

.logo > span:not(.logo-mark) {
    color: #fff;
    font-size: 22px;
    white-space: nowrap;
}

.menu-item ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.menu-item ul li a {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    text-transform: capitalize;
    transition: 0.25s;
    text-align: center;
    border-radius: 30px;
}

.menu-item ul li a:hover,
.cnt_btn {
    color: #fff !important;
    background: linear-gradient(273deg, var(--gold) -21.02%, var(--wood-primary) 63.31%);
}

.menu-bar {
    display: none;
}

.menu-bar a {
    font-size: 26px;
    color: #fff;
}

/* Hero */
.hero-area {
    position: relative;
    background-color: #1d140e;
}

.hero-overlay {
    min-height: 720px;
    background: linear-gradient(90deg, rgba(36, 27, 19, 0.88) 0%, rgba(36, 27, 19, 0.68) 34%, rgba(36, 27, 19, 0.22) 68%, rgba(36, 27, 19, 0.05) 100%);
}

.min-vh-hero {
    min-height: 720px;
}

.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.hero-media img {
    display: block;
    width: 100%;
    max-width: 620px;
    max-height: 620px;
    object-fit: contain;
    filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.28));
}

.hero-title h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title h1 {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(46px, 7vw, 76px);
    line-height: 1.04;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title h1 span {
    color: #f1d1a0;
}

.hero-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 21px;
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-title ul {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-title ul li a {
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-weight: 800;
    padding: 17px 24px;
    transition: 0.3s;
    display: block;
    min-width: 205px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-title ul li:first-of-type a {
    background: linear-gradient(273deg, var(--gold) -21.02%, var(--wood-primary) 63.31%);
    border-color: transparent;
}

.hero-title ul li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

/* Shared sections */
.section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 42px;
}

.section-heading h2 {
    color: var(--wood-dark);
    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 700;
    margin-bottom: 14px;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 19px;
}

/* Feature strip */
.intro-area {
    padding: 70px 0 40px;
    background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.feature-card,
.benefit-box,
.profile-card,
.content-panel,
.spec-box,
.contact-form-left-content,
.contact-form-right-box {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    height: 100%;
    border: 1px solid rgba(111, 78, 46, 0.12);
    box-shadow: 0 20px 55px rgba(45, 31, 20, 0.08);
}

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

.feature-card i {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    line-height: 76px;
    font-size: 30px;
    color: var(--wood-primary);
    background: var(--wood-light);
    margin-bottom: 18px;
}

.feature-card h3,
.benefit-box h3,
.profile-card h3,
.content-panel h3,
.spec-box h3,
.contact-form-right-box h3 {
    color: var(--wood-dark);
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-card p,
.benefit-box p,
.profile-card p,
.content-panel p,
.contact-form-right-box p,
.quality-area p {
    color: var(--text-muted);
}

/* Content sections */
.content-area {
    padding: 90px 0;
    background: var(--cream);
}

.alt-area {
    background: linear-gradient(180deg, #fff 0%, #f3eadb 100%);
}

.tall-panel p + p {
    margin-top: 18px;
}

.stat-card {
    height: 100%;
    border-radius: 30px;
    padding: 42px;
    background: linear-gradient(145deg, var(--wood-dark), var(--leaf));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 55px rgba(36, 27, 19, 0.2);
}

.stat-card span {
    color: #f1d1a0;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card strong {
    font-size: 94px;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    margin: 15px 0;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
}

.benefit-box {
    transition: 0.25s;
}

.benefit-box:hover {
    transform: translateY(-8px);
}

/* Quality */
.quality-area {
    padding: 100px 0;
    background: #fff;
}

.spec-box {
    background: linear-gradient(180deg, #fff 0%, #f5ecdc 100%);
}

.spec-box ul li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 18px;
}

.spec-box ul li i {
    color: var(--wood-primary);
    margin-top: 5px;
}

/* About */
.about_area {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #e8d8c0 100%);
}

/* Contact */
.contact-form-area {
    padding: 100px 0;
    background: var(--wood-dark);
}

.contact-form-area .section-heading h2,
.contact-form-area .section-heading p {
    color: #fff;
}

.contact-form-left-content ul {
    display: flex;
    align-items: flex-start;
    gap: 0 16px;
    margin-bottom: 24px;
}

.contact-form-left-content ul:last-of-type {
    margin-bottom: 0;
}

.contact-form-left-content ul li i {
    width: 54px;
    height: 54px;
    background: linear-gradient(273deg, var(--gold) -21.02%, var(--wood-primary) 63.31%);
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 54px;
    border-radius: 14px;
}

.contact-form-left-content h3 {
    color: var(--wood-dark);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.contact-form-left-content a,
.contact-form-left-content small {
    color: var(--text-muted);
    font-size: 17px;
    display: block;
}

.mail-cta {
    display: inline-block;
    margin-top: 24px;
    color: #fff;
    background: linear-gradient(273deg, var(--gold) -21.02%, var(--wood-primary) 63.31%);
    padding: 17px 28px;
    border-radius: 999px;
    font-weight: 800;
}

.mail-cta:hover {
    color: #fff;
    transform: translateY(-3px);
}

.mail-cta i {
    margin-right: 8px;
}

/* Footer */
footer {
    background: var(--wood-dark);
}

.copyright {
    background-color: #1d150f;
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
}
