:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #8c7355; /* Slightly deeper muted gold for contrast on white */
    --secondary-text: rgba(26, 26, 26, 0.7);
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Cormorant Upright', serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.4;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    width: 100vw;
}

/* Main Container Layout */
.container {
    min-height: 100vh;
    width: 100vw;
    padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 8vw, 6rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Header & Logo */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    height: 60px;
    width: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.logo-img.active {
    opacity: 1;
}

/* Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-wrapper {
    flex: 0 0 40%;
}

h1.hero-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: uppercase;
}

.script-font {
    font-family: var(--font-script);
    text-transform: none;
    font-style: italic;
    font-weight: 300;
    display: block;
    margin-top: -0.5rem;
    color: var(--accent-color);
    letter-spacing: 0;
}

.hero-line {
    width: 80px;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 2rem;
}

.description-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
}

.description {
    color: var(--secondary-text);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.03rem;
    line-height: 1.6;
}

.description.highlight {
    color: var(--accent-color);
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Slider System */
.slider-container {
    flex: 1;
    height: 70vh;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.control-dot {
    width: 30px;
    height: 2px;
    background: rgba(26, 26, 26, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-dot.active {
    background: var(--accent-color);
    width: 50px;
}

/* Footer bottom */
.footer-actions {
    margin-top: 4rem;
}

.input-line-group {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    max-width: 450px;
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 0;
    color: white;
    outline: none;
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus {
    border-color: var(--accent-color);
}

.btn-minimal {
    background: transparent;
    color: var(--accent-color);
    border: none;
    padding: 0.8rem 0;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.2rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.btn-minimal:hover {
    color: white;
    border-bottom: 1px solid white;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.8rem;
    min-height: 1.2rem;
    letter-spacing: 0.05rem;
}

/* Footer bottom */
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.social-links {
    display: flex;
    gap: 3rem;
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2rem;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.social-link:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.copyright {
    color: var(--text-color);
    opacity: 0.3;
    font-size: 0.6rem;
    letter-spacing: 0.1rem;
    margin: 0;
}

.powered-by {
    color: var(--text-color);
    opacity: 0.3;
    font-size: 0.5rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.powered-by a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.powered-by a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* Animations */
@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in { animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.fade-in-delay-1 { animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards; opacity: 0; }
.fade-in-delay-2 { animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards; opacity: 0; }
.fade-in-delay-3 { animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s forwards; opacity: 0; }
.fade-in-delay-4 { animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 1.2s forwards; opacity: 0; }

/* Responsive */
@media (max-width: 1100px) {
    .container { padding: 3rem; }
    .content { gap: 2rem; }
    .hero-wrapper { flex: 0 0 45%; }
}

@media (max-width: 850px) {
    body { overflow-y: auto; height: auto; }
    .container { height: auto; min-height: 100vh; padding: 2.5rem; }
    .content { flex-direction: column; text-align: left; align-items: flex-start; gap: 3rem; margin: 4rem 0; }
    .hero-wrapper { flex: none; width: 100%; }
    .slider-container { width: 100%; height: 75vh; margin: 0; }
    .hero-text { font-size: clamp(3rem, 12vw, 4.5rem); }
}

@media (max-width: 600px) {
    .container { padding: 2rem 1.5rem; }
    header { flex-direction: row; justify-content: space-between; align-items: center; }
    .logo-container, .logo-img { height: 45px; }
    .content { gap: 2.5rem; margin: 3rem 0; }
    .hero-text { font-size: 2.8rem; margin-bottom: 1.5rem; }
    .hero-line { margin-bottom: 1.5rem; }
    .description-container { gap: 1rem; }
    .slider-container { height: 80vh; }
    footer { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .footer-info { text-align: left; }
    .social-links { gap: 2rem; }
}
