:root {
    --primary-color: #C8A86B;
    --bg-color: #fef9f5;
    --text-color: #1A1A1A;
    --white: #FFFFFF;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --section-padding: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h1, h2, h3 {
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-color);
    hyphens: none;
    -webkit-hyphens: none;
}

p {
    font-size: 16px;
    margin-bottom: 1.8rem;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    color: rgba(26, 26, 26, 0.9);
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary-color);
    margin: 2.5rem 0;
    hyphens: none;
    -webkit-hyphens: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Layout */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header */
header {
    padding: 5px 0;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--bg-color);
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 168, 107, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 50px;
}

nav ul li a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    opacity: 0.7;
}

nav ul li a:hover, nav ul li a.active {
    opacity: 1;
    color: var(--primary-color);
}

/* Mobile Menu States */
.menu-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 95px;
    background-color: var(--bg-color);
}

.hero .container {
    display: flex;
    align-items: stretch;
    padding: 0;
    max-width: 100%;
}

.hero-image {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fade effect for hero image */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(254, 249, 245, 0), var(--bg-color));
    pointer-events: none;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 60px;
    text-align: center;
    background-color: var(--bg-color);
}

.hero-logo,
.intro-logo {
    max-width: 380px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.intro-logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.hero .divider {
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 30px auto;
}

.subtitle {
    font-size: 14px;
    letter-spacing: 0.4em;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    hyphens: none;
    -webkit-hyphens: none;
}

.hero-text {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    hyphens: none;
    -webkit-hyphens: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    transition: all 0.4s ease;
    background: transparent;
}

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

/* Content Sections */
section {
    padding: var(--section-padding) 0;
}

.text-block {
    max-width: 750px;
    margin: 0 auto;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 60px 0;
}

.grid-3 h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-box {
    max-width: 870px;
    margin: 80px auto 0;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(200, 168, 107, 0.1); /* Subtle block border */
}

.intro-section {
    padding-top: 115px;
    padding-bottom: 40px;
    text-align: center;
}

.intro-section h1 {
    margin: 30px auto;
    text-align: center;
}

.section-heading {
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.subheading {
    color: var(--primary-color);
}

.tagline {
    text-align: center;
    hyphens: none;
    -webkit-hyphens: none;
}

.section-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 30px auto 0;
}

/* Footer */
footer {
    padding: 80px 0 60px;
    background-color: var(--bg-color);
    text-align: center;
    border-top: 1px solid rgba(200, 168, 107, 0.05);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    font-weight: 400;
}

.footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.footer-social a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    border: 1px solid rgba(200, 168, 107, 0.2);
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    opacity: 0.5;
}

.footer-legal a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-nav a:hover,
.footer-legal a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.copyright {
    font-size: 11px;
    letter-spacing: 0.1em;
    opacity: 0.4;
    text-transform: uppercase;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .hero-content {
        padding: 60px 40px;
    }
    
    .hero-text {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    header {
        padding: 4px 0;
    }

    h1 {
        font-size: 26px;
        letter-spacing: 0.1em;
        line-height: 1.2;
    }

    h2 {
        font-size: 22px;
        letter-spacing: 0.1em;
    }

    .container {
        padding: 0 30px;
    }

    .logo img {
        height: 50px;
        width: auto;
    }

    .hero {
        min-height: auto;
        padding-top: 68px;
        padding-bottom: 0;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-image {
        min-height: auto;
        height: 70vh;
        width: 100%;
    }

    .hero-image img {
        object-position: center 10%;
    }

    .hero-image::after {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(254, 249, 245, 0), var(--bg-color));
    }

    .hero-content {
        padding: 40px 20px 80px;
        margin-top: -60px;
        text-align: center;
        background-color: var(--bg-color);
        position: relative;
        z-index: 10;
    }
    
    .hero-logo {
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }

    .hero-text {
        font-size: 22px;
        line-height: 1.5;
        margin-top: 40px;
    }

    .menu-toggle {
        display: flex;
        align-self: center;
        transform: translateY(2px);
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 100px;
        text-align: center;
    }

    .grid-3 h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .grid-3 p strong {
        display: block;
        margin-bottom: 15px;
        font-size: 18px;
        letter-spacing: 0.05em;
    }

    .grid-3 > div:not(:last-child)::after {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background-color: var(--primary-color);
        margin: 60px auto 0;
        opacity: 0.3;
    }

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

    .about-content {
        padding-top: 20px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .contact-box {
        margin-top: 60px;
        padding: 60px 0;
        border: none;
    }

    section {
        padding: 100px 0;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1050;
    }

    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 25px 0;
    }

    nav ul li a {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }

    .container {
        padding: 0 20px;
    }

    .intro-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-logo,
    .intro-logo {
        max-width: 220px;
    }

    .hero-text {
        font-size: 20px;
    }

    .logo img {
        height: 55px;
        width: auto;
    }

    .grid-3 {
        gap: 60px;
    }

    footer {
        padding: 60px 0 40px;
    }
}
