﻿/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #fdf9f2 100%);
    color: #3e3326;
    height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    width: 100%;
}

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

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

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 500;
}

.privacy-page {
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    display: block;
    height: auto;
    min-height: 100vh;
}

.privacy-page nav {
    padding: 20px 6%;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-page .page {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 96px;
}

.privacy-page h1,
.privacy-page h2,
.privacy-page h3 {
    font-family: 'Playfair Display', serif;
    color: #2b241a;
    margin: 24px 0 12px;
}

.privacy-page h1 { font-size: 2.2rem; margin-top: 0; }
.privacy-page h2 { font-size: 1.35rem; }
.privacy-page h3 { font-size: 1.05rem; }

.privacy-page p { margin: 0 0 12px; }
.privacy-page ul { margin: 0 0 12px 18px; padding: 0; }
.privacy-page a { color: #b48938; text-decoration: none; }
.privacy-page a:hover { text-decoration: underline; }
.privacy-page .muted { color: #4a4a4a; }
.privacy-page .notice { background: #f7f1e6; border-left: 4px solid #b48938; padding: 12px 16px; margin: 16px 0; }
.privacy-page .top-meta { color: #555; font-size: 0.95rem; margin-bottom: 8px; }

/* --- MAIN LAYOUT --- */
.container {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* --- LEFT COLUMN (TEXT) --- */
.content-left {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.badge {
    display: inline-block;
    background: #c9a76a; /* Flat fallback */
    background: linear-gradient(90deg, #cfae77 0%, #b9924f 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(212, 176, 108, 0.2);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: #2b241a;
    margin-bottom: 1.5rem;
}

/* Styling for the dot to match brand */
h1 span {
    color: #bfa05f;
}

.hero-highlight {
    color: #b48938;
}

p.subtext {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

/* --- FORM STYLING --- */
.input-group {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin-bottom: 1rem;
    background: #ffffff;
    padding: 6px;
    border-radius: 8px; /* Smooth corners */
    box-shadow: 0 10px 25px rgba(0,0,0,0.03); /* Soft lift */
}

input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #e4d6bf;
    outline: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #3f3528;
    background: transparent;
}

input[type="email"]::placeholder {
    color: #b4a189;
}

button.cta-btn {
    background: linear-gradient(135deg, #c7a25c 0%, #b48938 100%);
    color: #3b2e1c;
    border: none;
    padding: 0 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

button.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(180, 138, 56, 0.28);
}

.waitlist-count {
    font-size: 0.85rem;
    color: #000000;
    margin-top: 10px;
}

.form-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.form-status {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #3e3326;
    min-height: 1.2em;
}

.form-status.error {
    color: #b00020;
}

.form-status.success {
    color: #1b8a3d;
}

/* --- RIGHT COLUMN (IMAGE) --- */
.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-placeholder {
    width: 90%;
    max-width: 420px;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 1728 / 2464;
    border-radius: 20px;
    /* Fade edges into the background without adding shadow */
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 82%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.75rem;
    color: #000000;
}

.privacy-page footer {
    padding: 32px 12px 48px;
    font-size: 0.85rem;
    border-top: 1px solid #f0f0f0;
    margin-top: 40px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    .container { flex-direction: column-reverse; padding-top: 2rem; }
    .content-left { text-align: center; padding-right: 0; margin-top: 3rem;}
    .content-right { justify-content: center; width: 100%; }
    .input-group { margin: 0 auto 1rem auto; }
    p.subtext { margin: 0 auto 2.5rem auto; }
    .phone-placeholder { max-width: 360px; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.8rem; }
    .input-group { flex-direction: column; background: transparent; box-shadow: none; }
    input[type="email"] { background: white; border-radius: 8px; margin-bottom: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
    button.cta-btn { padding: 16px; width: 100%; }
    .phone-placeholder { width: 100%; max-width: 320px; }
}
