/* ===========================
   MINNIS & COMPANY — SHARED STYLES
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@400;500;600&display=swap');

:root {
    --bg: #ffffff;
    --bg-alt: #f7f5f2;
    --bg-dark: #1a1a1a;
    --text: #1a1a1a;
    --text-muted: #6b6560;
    --accent: #1a1a1a;
    --accent-hover: #333;
    --border: #e5e0db;
    --border-dark: #2a2a2a;
    --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.25rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem; font-weight: 400;
    text-decoration: none; color: var(--text);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.9rem; font-weight: 500; letter-spacing: 0.2px;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; border-radius: 100px;
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: all 0.25s ease; border: none; cursor: pointer;
}
.btn-dark { background: var(--accent); color: #fff; }
.btn-dark:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--text); background: var(--bg-alt); }
.btn-light { background: #fff; color: var(--text); }
.btn-light:hover { background: var(--bg-alt); transform: translateY(-1px); }

/* SECTIONS */
section { padding: 6rem 3rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 3px; color: var(--text-muted);
    font-weight: 600; margin-bottom: 0.75rem;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; }
h1 { font-size: clamp(2.4rem, 4.5vw, 3.5rem); line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.2; }
h3 { font-size: 1.15rem; }

/* HERO */
.hero {
    min-height: 90vh; display: flex; align-items: center;
    padding-top: 8rem; position: relative;
}
.hero-inner {
    max-width: 1100px; margin: 0 auto; width: 100%;
    text-align: center;
}
.hero h1 { margin-bottom: 1.25rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-desc {
    font-size: 1.05rem; color: var(--text-muted);
    max-width: 520px; margin: 0 auto 1rem; line-height: 1.7;
}
.hero-sub {
    font-size: 0.95rem; font-weight: 500;
    max-width: 520px; margin: 0 auto 2.5rem;
}
.hero-image {
    margin-top: 4rem; border-radius: 16px; overflow: hidden;
    max-width: 900px; margin-left: auto; margin-right: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.hero-image img { width: 100%; height: auto; display: block; }

/* WELCOME / INTRO BLOCK */
.intro-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center;
}
.intro-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.intro-images img { border-radius: 12px; width: 100%; height: 250px; object-fit: cover; }
.intro-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }

/* THREE COLUMN LISTS */
.three-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem; }
.col-group h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 2px; font-weight: 600;
    margin-bottom: 1.5rem; color: var(--text);
}
.col-group ul { list-style: none; }
.col-group li {
    padding: 0.85rem 0;
    border-top: 1px solid var(--border);
    font-size: 0.95rem; color: var(--text-muted);
}
.col-group li:last-child { border-bottom: 1px solid var(--border); }

/* DARK CTA SECTION */
.cta-dark {
    background: var(--bg-dark); color: #fff;
    text-align: center; border-radius: 0;
}
.cta-dark h2 { color: #fff; margin-bottom: 1rem; }
.cta-dark p { color: #a3a09c; max-width: 480px; margin: 0 auto 2rem; font-size: 1rem; line-height: 1.7; }
.cta-dark .email-line { color: #a3a09c; font-size: 0.9rem; margin-top: 1rem; }
.cta-dark .email-line a { color: #fff; text-decoration: underline; }

/* ABOUT PAGE — BIO */
.about-hero { text-align: center; padding-top: 10rem; padding-bottom: 4rem; }
.about-hero h1 { margin-bottom: 0.5rem; }
.about-hero .subtitle { color: var(--text-muted); font-size: 1.1rem; font-style: italic; }

.about-content { max-width: 700px; margin: 0 auto; }
.about-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.5rem; }

.meet-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 4rem; }
.meet-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; color: var(--text-muted); font-weight: 600; margin-bottom: 1rem; }
.meet-name { font-family: 'DM Serif Display', serif; font-size: 1.8rem; margin-bottom: 0.25rem; }
.meet-role { color: var(--text-muted); font-size: 0.95rem; font-style: italic; margin-bottom: 1.5rem; }
.meet-bio p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }
.meet-image img { border-radius: 12px; width: 100%; object-fit: cover; }

/* CONTACT FORM */
.contact-section { max-width: 640px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block; font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 0.5rem; color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 0.85rem 1rem;
    border: 1px solid var(--border); border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    background: var(--bg); color: var(--text);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--text);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

.checkbox-group { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.checkbox-group input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--text); }
.checkbox-group label { font-size: 0.9rem; text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--text-muted); }

.form-submit { width: 100%; }

/* FOOTER */
footer {
    background: var(--bg-dark); color: #fff;
    padding: 4rem 3rem 3rem;
}
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 1rem; }
.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 2px; font-weight: 600;
    margin-bottom: 1rem; color: #999;
}
.footer-col a {
    display: block; color: #ccc; text-decoration: none;
    font-size: 0.9rem; padding: 0.3rem 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-subscribe { display: flex; gap: 0.5rem; margin-top: 1rem; }
.footer-subscribe input {
    flex: 1; padding: 0.7rem 1rem; border: 1px solid var(--border-dark);
    border-radius: var(--radius); background: #222; color: #fff;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
}
.footer-subscribe input::placeholder { color: #666; }
.footer-subscribe button {
    padding: 0.7rem 1.5rem; background: #fff; color: var(--text);
    border: none; border-radius: var(--radius); font-weight: 600;
    font-size: 0.85rem; cursor: pointer; transition: background 0.2s;
}
.footer-subscribe button:hover { background: #eee; }

.footer-bottom {
    max-width: 1100px; margin: 2rem auto 0; padding-top: 2rem;
    border-top: 1px solid #2a2a2a; text-align: center;
    font-size: 0.8rem; color: #666;
}

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.8s ease both; }
.fade-in-d1 { animation-delay: 0.1s; }
.fade-in-d2 { animation-delay: 0.2s; }
.fade-in-d3 { animation-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-inner { text-align: left; }
    .hero-desc, .hero-sub { margin-left: 0; }
    .intro-block, .meet-section { grid-template-columns: 1fr; gap: 2rem; }
    .three-cols { grid-template-columns: 1fr; gap: 2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem; gap: 1rem;
    }
    .nav-toggle { display: block; }
    section { padding: 4rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .intro-images { grid-template-columns: 1fr; }
    footer { padding: 3rem 1.5rem 2rem; }
}
