@font-face {
    font-family: 'Didot';
    src: url('fonts/Didot-01.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'Didot';
    src: url('fonts/Didot-Italic-02.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: block;
}
@font-face {
    font-family: 'Didot';
    src: url('fonts/Didot-Bold-03.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}

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

html { font-size: 90%; }

body {
    font-family: 'Didot', Didot, Georgia, serif;
    color: #222222;
    background-color: #fcfcfc;
    line-height: 1.75;
    padding: 0 20px;
}

.container { max-width: 800px; margin: 0 auto; padding: 60px 0; }

/* Navigation */
nav { text-align: center; margin-bottom: 40px; font-size: 1.1rem; letter-spacing: 0px; }
nav a { color: #555555; text-decoration: none; margin: 0 25px; font-style: italic; transition: color 0.2s ease; }
nav a:hover { color: #111111; text-decoration: underline; }

header { margin-bottom: 10px; text-align: center; }

/* Logo */
.company-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 5px auto;
}

h1, h2, h3 { font-weight: 500; color: #111111; letter-spacing: -0.5px; }
h1 { font-size: 3.0rem; margin-bottom: 20px; }
h2 { font-size: 1.7rem; margin-bottom: 20px; border-bottom: 1px solid #e5e5e5; padding-bottom: 10px; }
p { font-size: 1.15rem; margin-bottom: 25px; color: #333333; }

section { margin-bottom: 40px; }

/* Directors grid */
.founder-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 30px; }
.founder-card { background: #ffffff; padding: 30px; border: 1px solid #eeeeee; border-radius: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.founder-card h3 { font-size: 1.4rem; margin-bottom: 5px; }
.title { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #777777; margin-bottom: 15px; font-weight: 600; }
.founder-bio { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 0.95rem; margin: 0; color: #555555; line-height: 1.6; }

/* Contact link */
.contact-link { text-align: center; color: #111111; text-decoration: none; border-bottom: 1px solid #111111; padding-bottom: 1px; font-size: 1.15rem; font-family: 'Didot', Didot, Georgia, serif; }
.contact-link:hover { opacity: 0.7; }

footer { text-align: center; color: #999999; margin-top: 70px; }
footer p { font-size: 0.95rem; margin-bottom: 5px; }

/* News / article links */
.news-container a,
article h3 a,
.article-link { color: #111111; text-decoration: none; transition: color 0.2s ease; }
.news-container a:hover,
article h3 a:hover,
.article-link:hover { color: #555555; text-decoration: underline; }

/* Contact form */
.contact-form { max-width: 500px; margin: 40px auto 0 auto; text-align: left; }
.form-group { margin-bottom: 25px; }
.form-control {
    width: 100%;
    padding: 12px 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    color: #333333;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: border-color 0.2s ease;
}
.form-control:focus { outline: none; border-color: #111111; }
.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #111111;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Didot', Didot, Georgia, serif;
    font-size: 1.15rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.btn-submit:hover { opacity: 0.85; }

/* Master link reset */
a, a:visited, a:link, a:active { color: inherit !important; text-decoration: none !important; }
nav a:hover { color: #111111 !important; text-decoration: underline !important; }
.contact-link:hover { opacity: 0.7 !important; }

/* Mobile responsive */
@media (max-width: 600px) {
    nav { font-size: 0.95rem; }
    nav a { margin: 0 10px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.4rem; }
    p { font-size: 1.05rem; }
    .founder-grid { grid-template-columns: 1fr; gap: 20px; }
}
