/* Sunlit Studio — Warm Natural Photography Template */
/* Design: Warm, approachable, golden tones, editorial-meets-lifestyle */

:root {
    --bg: #fffcf8;
    --bg-warm: #f7f1ea;
    --bg-cream: #faf5ef;
    --text: #2d2520;
    --text-muted: #7a6e64;
    --text-light: #a69a90;
    --accent: #c4854c;
    --accent-soft: #e8d5c0;
    --border: #ebe5dd;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-display: 'Libre Baskerville', serif;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 100px;
    --space-xxl: 140px;
    --max-width: 1140px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.75; font-weight: 400; font-size: 15px; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 40px;
    background: rgba(255,252,248,.9);
    backdrop-filter: blur(8px);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 1px 12px rgba(45,37,32,.06); }
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--accent);
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
    font-size: .82rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.nav a:hover { color: var(--text); }
.nav-cta {
    padding: 8px 20px !important;
    background: var(--accent);
    color: #fff !important;
    border-radius: 4px;
    font-weight: 500 !important;
    transition: background var(--transition) !important;
}
.nav-cta:hover { background: #b5763f !important; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 26px;
    height: 18px;
    position: relative;
}
.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: var(--transition);
}
.nav-toggle span:first-child { top: 0; }
.nav-toggle span:last-child { bottom: 0; }

/* --- Hero: Asymmetric with large image --- */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 85vh;
    padding-top: 80px;
}
.hero-image {
    overflow: hidden;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl) var(--space-lg);
    max-width: 520px;
}
.hero-tag {
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
    color: var(--text-muted);
    font-size: .92rem;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.btn {
    display: inline-block;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .5px;
    transition: all var(--transition);
}
.btn-primary {
    padding: 14px 28px;
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
    margin-right: 12px;
    margin-bottom: 12px;
}
.btn-primary:hover { background: #b5763f; }
.btn-ghost {
    padding: 14px 28px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 4px;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* --- Trust Strip --- */
.trust-strip {
    background: var(--bg-warm);
    padding: 18px 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-inner span {
    font-size: .78rem;
    color: var(--text-muted);
    letter-spacing: .3px;
}
.trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-soft);
}

/* --- Gallery --- */
.gallery {
    padding: var(--space-xl) 40px;
}
.gallery-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.gallery-header {
    margin-bottom: var(--space-lg);
}
.gallery-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.gallery-header p {
    color: var(--text-muted);
    font-size: .9rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 12px;
}
.gal-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.gal-item--portrait { grid-row: span 2; }
.gal-item--landscape { grid-column: span 2; }
.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gal-item:hover img { transform: scale(1.04); }
.gal-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 16px 12px;
    background: linear-gradient(to top, rgba(45,37,32,.5), transparent);
    font-size: .75rem;
    color: #fff;
    opacity: 0;
    transition: opacity .3s;
}
.gal-item:hover figcaption { opacity: 1; }

/* --- Experience --- */
.experience {
    padding: var(--space-xl) 40px;
    background: var(--bg-warm);
}
.experience-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.experience-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}
.experience-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.experience-header p {
    color: var(--text-muted);
}
.experience-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.step {
    padding: var(--space-md) 0;
}
.step-num {
    display: block;
    font-size: .7rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}
.step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 12px;
}
.step p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.8;
}

/* --- Testimonial --- */
.testimonial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
}
.testimonial-image {
    overflow: hidden;
}
.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-content {
    display: flex;
    align-items: center;
    padding: var(--space-lg);
    background: var(--bg-cream);
}
.testimonial blockquote {
    max-width: 400px;
}
.testimonial blockquote p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    color: var(--text);
}
.testimonial cite {
    font-style: normal;
    font-size: .82rem;
    color: var(--text-muted);
}

/* --- About --- */
.about {
    padding: var(--space-xl) 40px;
}
.about-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 4px;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.about-text h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}
.about-lead {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}
.about-text p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

/* --- Pricing --- */
.pricing {
    padding: var(--space-xl) 40px;
    background: var(--bg-warm);
}
.pricing-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.pricing-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}
.pricing-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.pricing-header p {
    color: var(--text-muted);
    font-size: .9rem;
    max-width: 500px;
    margin: 0 auto;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.price-card {
    background: var(--bg);
    padding: var(--space-md) var(--space-md) var(--space-md);
    border-radius: 6px;
    border: 1px solid var(--border);
    position: relative;
}
.price-card--featured {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(196,133,76,.1);
}
.price-badge {
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--accent);
    color: #fff;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 3px;
}
.price-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.price {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: var(--space-md);
}
.price-card ul {
    margin-bottom: var(--space-md);
}
.price-card li {
    padding: 6px 0;
    font-size: .85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.price-card li:last-child { border-bottom: none; }
.price-note {
    font-size: .78rem;
    color: var(--text-light);
    font-style: italic;
}

/* --- Book CTA --- */
.book {
    padding: var(--space-xxl) 40px;
    text-align: center;
}
.book-inner {
    max-width: 520px;
    margin: 0 auto;
}
.book h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: var(--space-sm);
}
.book-inner > p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}
.book-actions { margin-top: var(--space-md); }
.book-note {
    margin-top: var(--space-sm);
    font-size: .85rem;
    color: var(--text-muted);
}
.book-note a { color: var(--accent); text-decoration: underline; }

/* --- Footer --- */
.footer {
    padding: var(--space-md) 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-warm);
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer p { font-size: .75rem; color: var(--text-light); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: .8rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 900px) {
    :root { --space-xl: 72px; --space-xxl: 100px; }
    .header { padding: 14px 24px; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-image img { min-height: 300px; max-height: 400px; }
    .hero-content { padding: var(--space-lg) 24px; max-width: 100%; }
    .gallery, .experience, .about, .pricing, .book { padding-left: 24px; padding-right: 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gal-item--landscape { grid-column: span 1; }
    .experience-steps { grid-template-columns: 1fr; gap: var(--space-md); }
    .testimonial { grid-template-columns: 1fr; }
    .testimonial-image { max-height: 300px; }
    .about-inner { grid-template-columns: 1fr; gap: var(--space-md); }
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .nav { display: none; position: fixed; inset: 0; background: rgba(255,252,248,.98); flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 999; }
    .nav.open { display: flex; }
    .nav.open a { font-size: 1.1rem; }
    .nav-toggle { display: block; z-index: 1001; }
    .hero h1 { font-size: 1.8rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gal-item--portrait { grid-row: span 1; }
    .gal-item figcaption { opacity: 1; }
    .trust-inner { flex-direction: column; gap: 8px; }
    .trust-dot { display: none; }
}
