/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── Base ── */
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: #F5F4F0;
    color: #0A0A0A;
    line-height: 1.6;
}

/* ── NAV ── */
.sf-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 26px 48px;
    transition: background 0.35s, border-color 0.35s;
}
.sf-nav.sf-nav--light { background: transparent; border-bottom: none; }
.sf-nav.sf-nav--dark  { background: rgba(245,244,240,0.96); border-bottom: 0.5px solid rgba(10,10,10,0.1); }

.sf-logo {
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.14em; text-transform: uppercase;
    transition: color 0.3s;
}
.sf-nav--light .sf-logo { color: #F5F4F0; }
.sf-nav--dark  .sf-logo { color: #0A0A0A; }

.sf-links { display: flex; gap: 36px; list-style: none; }
.sf-links a {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    transition: color 0.2s;
}
.sf-nav--light .sf-links a { color: rgba(245,244,240,0.65); }
.sf-nav--light .sf-links a:hover { color: #F5F4F0; }
.sf-nav--dark  .sf-links a { color: rgba(10,10,10,0.45); }
.sf-nav--dark  .sf-links a:hover { color: #0A0A0A; }

/* Burger (mobile) */
.sf-burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 4px;
}
.sf-burger span {
    display: block; width: 22px; height: 0.5px;
    transition: background 0.3s;
}
.sf-nav--light .sf-burger span { background: #F5F4F0; }
.sf-nav--dark  .sf-burger span { background: #0A0A0A; }

.sf-menu-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(10,10,10,0.95); z-index: 90;
    flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.sf-menu-overlay.open { display: flex; }
.sf-menu-overlay a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300;
    color: #F5F4F0; letter-spacing: -0.01em;
}

/* ── HOME ── */
.sf-home {
    min-height: 100vh; height: 100vh;
    background: #1a1814;
    display: flex; align-items: flex-end;
    padding: 0 48px 52px; position: relative; overflow: hidden;
}
.sf-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg,#2a2520 0%,#0e0d0b 60%,#1a1510 100%);
}
.sf-hero-grain {
    position: absolute; inset: 0; opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}
.sf-hero-content { position: relative; z-index: 2; width: 100%; display: flex; justify-content: space-between; align-items: flex-end; }
.sf-hero-series { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(212,184,150,0.7); margin-bottom: 12px; }
.sf-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; font-weight: 300; line-height: 0.95;
    color: #F5F4F0; letter-spacing: -0.02em;
}
.sf-hero-caption { font-size: 11px; letter-spacing: 0.06em; color: rgba(245,244,240,0.4); line-height: 1.9; text-align: right; }
.sf-explore-btn {
    display: inline-block; margin-top: 22px;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: #F5F4F0; border-bottom: 0.5px solid rgba(245,244,240,0.35);
    padding-bottom: 3px; transition: border-color 0.2s;
}
.sf-explore-btn:hover { border-bottom-color: rgba(245,244,240,0.85); }
.sf-scroll-line-wrap { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2; }
.sf-scroll-line { width: 0.5px; height: 38px; background: rgba(245,244,240,0.2); animation: sfPulse 2s ease-in-out infinite; }
@keyframes sfPulse { 0%,100%{opacity:.2} 50%{opacity:.55} }

/* ── WORK ── */
.sf-work { padding: 120px 48px 80px; }
.sf-work-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 36px; padding-bottom: 14px; border-bottom: 0.5px solid rgba(10,10,10,0.12); }
.sf-work-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; letter-spacing: -0.01em; }
.sf-work-sub { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(10,10,10,0.35); }

.sf-series-item {
    display: grid; grid-template-columns: 48px 1fr 120px; gap: 32px;
    align-items: start; padding: 28px 0; border-bottom: 0.5px solid rgba(10,10,10,0.08);
    transition: opacity 0.2s; color: inherit;
}
.sf-series-item:hover { opacity: 0.65; }
.sf-series-item:hover .sf-series-arrow { transform: translateX(5px); }
.sf-series-num { font-size: 11px; letter-spacing: 0.1em; color: rgba(10,10,10,0.28); padding-top: 4px; }
.sf-series-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; letter-spacing: -0.01em; line-height: 1; margin-bottom: 9px; }
.sf-series-stmt { font-size: 13px; line-height: 1.75; color: rgba(10,10,10,0.52); }
.sf-series-tech { font-size: 11px; letter-spacing: 0.05em; color: rgba(10,10,10,0.38); line-height: 1.85; text-align: right; }
.sf-series-arrow { display: inline-block; font-size: 16px; color: rgba(10,10,10,0.28); margin-top: 10px; transition: transform 0.25s; }

/* ── GALLERY ── */
.sf-gallery { padding: 120px 48px 80px; }
.sf-gal-back { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(10,10,10,0.38); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 5px; background: none; border: none; padding: 0; transition: color 0.2s; }
.sf-gal-back:hover { color: #0A0A0A; }
.sf-gal-name { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; letter-spacing: -0.02em; line-height: 1; margin-bottom: 11px; }
.sf-gal-stmt { font-size: 13px; line-height: 1.8; color: rgba(10,10,10,0.52); max-width: 560px; margin-bottom: 5px; }
.sf-gal-count { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(10,10,10,0.28); }

.sf-grid { display: grid; gap: 3px; margin-top: 30px; }
.sf-row { display: grid; gap: 3px; }
.sf-row.ra { grid-template-columns: 2fr 1fr; }
.sf-row.rb { grid-template-columns: 1fr 1fr 1fr; }
.sf-row.rc { grid-template-columns: 1fr 2fr; }

.sf-ph { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/5; }
.sf-ph-in { position: absolute; inset: 0; background: #1a1814; background-size: cover; background-position: center; transition: transform 0.55s cubic-bezier(.25,.46,.45,.94); }
.sf-ph:hover .sf-ph-in { transform: scale(1.04); }
.sf-ph-ov { position: absolute; inset: 0; background: rgba(10,10,10,0); transition: background 0.35s; display: flex; align-items: flex-end; padding: 16px; z-index: 2; }
.sf-ph:hover .sf-ph-ov { background: rgba(10,10,10,0.48); }
.sf-ph-cap { opacity: 0; transition: opacity 0.3s; font-size: 11px; color: rgba(245,244,240,0.9); letter-spacing: 0.04em; line-height: 1.6; }
.sf-ph:hover .sf-ph-cap { opacity: 1; }
.fig { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 55%; height: 85%; background: rgba(255,255,255,0.04); border-radius: 50% 50% 0 0; }
.b1{background:linear-gradient(160deg,#2a2520,#0e0d0b)}
.b2{background:linear-gradient(160deg,#1e1c18,#2e2820)}
.b3{background:linear-gradient(160deg,#252018,#1a1510)}
.b4{background:linear-gradient(160deg,#201e1a,#302a22)}
.b5{background:linear-gradient(160deg,#18181a,#28242c)}

/* ── LIGHTBOX ── */
.sf-lb { display: none; position: fixed; inset: 0; background: rgba(10,10,10,0.97); z-index: 200; align-items: center; justify-content: center; padding: 48px; }
.sf-lb.open { display: flex; }
.sf-lb-inner { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: center; width: 100%; max-width: 860px; }
.sf-lb-img { aspect-ratio: 4/5; background: #1a1814; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.sf-lb-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: rgba(245,244,240,0.45); font-size: 22px; padding: 4px; transition: color 0.2s; }
.sf-lb-close:hover { color: #F5F4F0; }
.sf-lb-series { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(212,184,150,0.6); margin-bottom: 14px; }
.sf-lb-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: #F5F4F0; line-height: 1.1; margin-bottom: 20px; }
.sf-lb-tech { font-size: 11px; letter-spacing: 0.06em; color: rgba(245,244,240,0.38); line-height: 2.1; margin-bottom: 24px; }
.sf-lb-tech span { display: block; }
.sf-lb-q { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-style: italic; color: rgba(245,244,240,0.48); line-height: 1.7; border-left: 1px solid rgba(212,184,150,0.28); padding-left: 14px; margin-bottom: 28px; }
.sf-lb-cta { display: block; text-align: center; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #F5F4F0; border: 0.5px solid rgba(245,244,240,0.28); padding: 12px 20px; background: none; transition: border-color 0.2s; }
.sf-lb-cta:hover { border-color: rgba(245,244,240,0.65); color: #F5F4F0; }

/* ── ABOUT ── */
.sf-about { padding: 120px 48px 80px; }
.sf-about-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 64px; align-items: start; }
.sf-about-sticky { position: sticky; top: 100px; }
.sf-aph { aspect-ratio: 3/4; background: linear-gradient(160deg,#2a2520,#1a1510); position: relative; overflow: hidden; }
.sf-aph-fig { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 60%; height: 88%; background: rgba(255,255,255,0.05); border-radius: 50% 50% 0 0; }
.sf-about-img { width: 100%; height: 100%; object-fit: cover; }
.sf-aph-cap { margin-top: 10px; font-size: 11px; letter-spacing: 0.06em; color: rgba(10,10,10,0.32); line-height: 1.6; }
.sf-about-content .sf-a-eyebrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(10,10,10,0.32); margin-bottom: 6px; }
.sf-a-name { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; letter-spacing: -0.02em; line-height: 1; margin-bottom: 30px; }
.sf-about-content p { font-size: 14px; line-height: 1.85; color: rgba(10,10,10,0.68); margin-bottom: 20px; }
.sf-a-div { width: 32px; height: 0.5px; background: rgba(10,10,10,0.18); margin: 28px 0; }
.sf-cv-sec { margin-bottom: 26px; }
.sf-cv-lbl { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(10,10,10,0.28); margin-bottom: 11px; }
.sf-cv-row { display: flex; gap: 20px; margin-bottom: 6px; align-items: baseline; }
.sf-cv-yr { font-size: 12px; color: rgba(10,10,10,0.28); min-width: 40px; flex-shrink: 0; }
.sf-cv-it { font-size: 13px; color: rgba(10,10,10,0.62); line-height: 1.5; }
.sf-press-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #0A0A0A; border: 0.5px solid rgba(10,10,10,0.28); padding: 10px 20px; background: none; transition: background 0.2s; }
.sf-press-btn:hover { background: rgba(10,10,10,0.04); }

/* ── COLLECT ── */
.sf-collect { padding: 120px 48px 80px; }
.sf-col-hdr { margin-bottom: 44px; padding-bottom: 18px; border-bottom: 0.5px solid rgba(10,10,10,0.12); }
.sf-col-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; letter-spacing: -0.01em; margin-bottom: 12px; }
.sf-col-intro { font-size: 13px; line-height: 1.8; color: rgba(10,10,10,0.52); max-width: 500px; }
.sf-col-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 52px; }
.sf-col-card { cursor: pointer; }
.sf-col-img { aspect-ratio: 3/4; margin-bottom: 13px; position: relative; overflow: hidden; background: #1a1814; }
.sf-col-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.sf-col-card:hover .sf-col-photo { transform: scale(1.04); }
.sf-col-fig { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 55%; height: 85%; background: rgba(255,255,255,0.04); border-radius: 50% 50% 0 0; transition: background 0.3s; }
.sf-col-card:hover .sf-col-fig { background: rgba(255,255,255,0.08); }
.sf-col-name { font-size: 13px; font-weight: 500; margin-bottom: 3px; }
.sf-col-tech { font-size: 11px; letter-spacing: 0.05em; color: rgba(10,10,10,0.38); margin-bottom: 7px; }
.sf-col-price { font-size: 12px; color: rgba(10,10,10,0.45); border-top: 0.5px solid rgba(10,10,10,0.1); padding-top: 7px; }
.sf-cat-cta { background: #0A0A0A; padding: 36px 48px; display: flex; justify-content: space-between; align-items: center; }
.sf-cat-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: #F5F4F0; margin-bottom: 5px; }
.sf-cat-sub { font-size: 11px; letter-spacing: 0.06em; color: rgba(245,244,240,0.38); }
.sf-cat-btn { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #0A0A0A; background: #F5F4F0; border: none; padding: 13px 26px; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: opacity 0.2s; }
.sf-cat-btn:hover { opacity: 0.82; }

/* ── CONTACT ── */
.sf-contact { padding: 120px 48px 80px; max-width: 600px; }
.sf-con-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; margin-bottom: 10px; }
.sf-con-sub { font-size: 13px; color: rgba(10,10,10,0.5); line-height: 1.8; margin-bottom: 40px; }
.sf-con-direct { margin-top: 40px; padding-top: 28px; border-top: 0.5px solid rgba(10,10,10,0.1); }
.sf-con-direct-lbl { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(10,10,10,0.3); margin-bottom: 10px; }
.sf-con-direct a { font-size: 13px; color: rgba(10,10,10,0.6); display: block; margin-bottom: 4px; transition: color 0.2s; }
.sf-con-direct a:hover { color: #0A0A0A; }

/* WPForms styling override */
.wpforms-form .wpforms-field-label { font-size: 10px !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; color: rgba(10,10,10,0.38) !important; margin-bottom: 7px !important; }
.wpforms-form input[type=text], .wpforms-form input[type=email], .wpforms-form textarea, .wpforms-form select { width: 100% !important; font-family: 'DM Sans', sans-serif !important; font-size: 14px !important; background: transparent !important; border: none !important; border-bottom: 0.5px solid rgba(10,10,10,0.2) !important; border-radius: 0 !important; padding: 8px 0 !important; color: #0A0A0A !important; outline: none !important; box-shadow: none !important; }
.wpforms-form input:focus, .wpforms-form textarea:focus { border-bottom-color: #0A0A0A !important; }
.wpforms-form .wpforms-submit { font-family: 'DM Sans', sans-serif !important; font-size: 11px !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; color: #F5F4F0 !important; background: #0A0A0A !important; border: none !important; padding: 14px 32px !important; border-radius: 0 !important; cursor: pointer !important; transition: opacity 0.2s !important; }
.wpforms-form .wpforms-submit:hover { opacity: 0.8 !important; }

/* ── FOOTER ── */
.sf-footer { border-top: 0.5px solid rgba(10,10,10,0.1); padding: 32px 48px; }
.sf-footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.sf-footer-left { display: flex; flex-direction: column; gap: 3px; }
.sf-footer-name { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.sf-footer-role { font-size: 11px; color: rgba(10,10,10,0.38); }
.sf-footer-center { display: flex; gap: 28px; }
.sf-footer-center a { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(10,10,10,0.38); transition: color 0.2s; }
.sf-footer-center a:hover { color: #0A0A0A; }
.sf-footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.sf-footer-right a, .sf-footer-right span { font-size: 11px; color: rgba(10,10,10,0.38); }
.sf-footer-right a:hover { color: #0A0A0A; }

/* ── MOBILE ── */
@media (max-width: 768px) {
    .sf-nav { padding: 20px 24px; }
    .sf-links { display: none; }
    .sf-burger { display: flex; }

    .sf-home { padding: 0 24px 40px; }
    .sf-hero-title { font-size: 52px; }
    .sf-hero-caption { display: none; }

    .sf-work, .sf-gallery, .sf-about, .sf-collect, .sf-contact { padding: 100px 24px 60px; }

    .sf-series-item { grid-template-columns: 36px 1fr; gap: 16px; }
    .sf-series-meta { display: none; }

    .sf-row.ra, .sf-row.rb, .sf-row.rc { grid-template-columns: 1fr; }

    .sf-about-grid { grid-template-columns: 1fr; }
    .sf-about-sticky { position: static; }

    .sf-col-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .sf-cat-cta { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }

    .sf-lb-inner { grid-template-columns: 1fr; }
    .sf-lb-img { max-height: 50vh; }
    .sf-lb { padding: 24px; align-items: flex-start; overflow-y: auto; }

    .sf-footer-inner { flex-direction: column; gap: 20px; text-align: center; }
    .sf-footer-center { flex-wrap: wrap; justify-content: center; }
    .sf-footer-right { align-items: center; }
}
