/* =============================================
   MARK EDEN DESIGN — Styles
   ============================================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =============================================
   HEADER & LOGO
   ============================================= */

header {
    background: #e8e8e8;
    text-align: center;
    padding: 22px 20px 20px;
    border-bottom: 1px solid #d4d4d4;
}

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

.logo-img {
    max-width: 360px;
    width: 100%;
    height: auto;
    display: block;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13.5px;
    letter-spacing: 0.07em;
    color: #555;
    margin-top: 7px;
    font-weight: 400;
}

/* =============================================
   NAVIGATION
   ============================================= */

nav {
    background: #e0e0e0;
    text-align: center;
    padding: 13px 20px;
    border-bottom: 1px solid #cccccc;
}

nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    font-weight: 400;
    margin: 0 20px;
    transition: color 0.2s;
}

nav a:hover,
nav a.active {
    color: #666;
}

/* =============================================
   MAIN / LAYOUT
   ============================================= */

main {
    flex: 1;
}

/* =============================================
   HOME — Signature Piece
   ============================================= */

.home-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    background: #ffffff;
}

.signature-piece {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Placeholder — remove once you add your image */
.hero-placeholder {
    width: 100%;
    max-width: 680px;
    margin: 30px auto;
    background: #f2f2f2;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #aaa;
}

.hero-placeholder span {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
}

.hero-placeholder small {
    font-size: 11px;
    letter-spacing: 0.08em;
}

/* =============================================
   CONTENT PAGES — About / Contact
   ============================================= */

.content-wrap {
    max-width: 980px;
    margin: 44px auto;
    padding: 36px 60px 48px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.content-wrap h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ddd;
}

.content-wrap p {
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 22px;
    color: #333;
    font-weight: 300;
}

.content-wrap p:last-child {
    margin-bottom: 0;
}

/* =============================================
   GALLERY
   ============================================= */

.gallery-wrap {
    max-width: 1200px;
    margin: 36px auto;
    padding: 0 20px 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    background: #f2f2f2;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Placeholder — remove once you add images */
.gallery-placeholder {
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #bbb;
}

.gallery-placeholder span {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
}

/* =============================================
   CONTACT FORM
   ============================================= */

.contact-info {
    margin-bottom: 32px;
}

.contact-form label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid #ccc;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 300;
    background: #fafafa;
    margin-bottom: 22px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #888;
}

.contact-form textarea {
    height: 130px;
    resize: vertical;
}

.contact-form button {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 11px 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #444;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
    background: #e8e8e8;
    text-align: right;
    padding: 12px 22px;
    border-top: 1px solid #d4d4d4;
    font-family: 'Raleway', sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.13em;
    color: #777;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .logo-img      { max-width: 260px; }
    .tagline       { font-size: 12px; }

    nav a {
        margin: 0 10px;
        font-size: 10.5px;
    }

    .content-wrap {
        margin: 20px 14px;
        padding: 24px 22px 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }
}

@media (max-width: 480px) {
    nav a { margin: 0 7px; font-size: 10px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}
