:root {
  --bg: #fafaf8;
  --ink: #111;
  --muted: #6b6b6b;
  --line: #e4e2dd;
  --accent: #b08d57;
  --dark: #111;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body { font-family: 'Inter', sans-serif; font-weight: 300; background: var(--bg); color: var(--ink); line-height: 1.6; }
h1, h2, h3, .logo { font-family: 'Cormorant Garamond', serif; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
.eyebrow { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-weight: 400; }
.muted { color: var(--muted); }
.small { font-size: .8rem; color: var(--muted); margin-top: 12px; }

/* ----- Nav ----- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 20; display: flex; justify-content: space-between; align-items: center; padding: 22px 40px; transition: .3s; }
.nav.scrolled, .nav.open { background: rgba(250,250,248,.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); padding: 14px 40px; }
.logo { font-size: 1.5rem; letter-spacing: .15em; white-space: nowrap; }
.logo span { color: var(--accent); }
.nav nav a { margin-left: 28px; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; transition: color .2s; }
.nav nav a:hover { color: var(--accent); }
.menu-btn { display: none; background: none; border: 0; width: 32px; height: 24px; position: relative; cursor: pointer; }
.menu-btn span { position: absolute; left: 4px; right: 4px; height: 1.5px; background: var(--ink); transition: .3s; }
.menu-btn span:first-child { top: 8px; }
.menu-btn span:last-child { top: 15px; }
.nav.open .menu-btn span:first-child { top: 12px; transform: rotate(45deg); }
.nav.open .menu-btn span:last-child { top: 12px; transform: rotate(-45deg); }

/* ----- Hero ----- */
.hero { min-height: min(100vh, 820px); display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: 60px; padding: 120px 40px 60px; max-width: 1400px; margin: 0 auto; }
.hero h1 { font-size: clamp(3rem, 6.5vw, 5.8rem); line-height: 1; margin-bottom: 24px; }
.hero h1 em { font-weight: 400; color: var(--accent); }
.lead { font-size: 1.1rem; color: var(--muted); margin-bottom: 36px; max-width: 460px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-mosaic { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; align-items: start; }
.hero-mosaic img { width: 100%; aspect-ratio: 3/4.4; object-fit: cover; object-position: top; animation: rise 1s ease both; }
.hero-mosaic img:nth-child(2) { margin-top: 60px; animation-delay: .15s; }
.hero-mosaic img:nth-child(3) { margin-top: 20px; animation-delay: .3s; }
.hero-text { animation: rise .9s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ----- Buttons ----- */
.btn { display: inline-block; padding: 14px 32px; background: var(--ink); color: #fff; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; border: 1px solid var(--ink); cursor: pointer; transition: .2s; }
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ----- Sections ----- */
.section { padding: 110px 40px; max-width: 1300px; margin: 0 auto; }
.section h2, .apply h2 { font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 24px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.section-head h2 { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ----- Model grid ----- */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter { background: none; border: 1px solid var(--line); padding: 8px 18px; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; transition: .2s; }
.filter.active, .filter:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 36px 24px; }
.card { display: flex; flex-direction: column; justify-content: flex-start; align-self: start; padding: 0; background: none; border: 0; text-align: left; cursor: pointer; animation: rise .6s ease both; }
.card-img { position: relative; overflow: hidden; }
.card img, .placeholder { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; transition: transform .6s ease, filter .6s ease; filter: grayscale(100%); }
.card:hover img, .card:focus-visible img { transform: scale(1.04); filter: grayscale(0); }
.placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #e9e5de, #cfc8bc); font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: #fff; }
.tag { position: absolute; top: 12px; left: 12px; background: var(--bg); padding: 4px 10px; font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; }
.info { padding: 14px 0 0; display: flex; justify-content: space-between; align-items: baseline; }
.info h3 { font-size: 1.5rem; letter-spacing: .03em; }
.info p { font-size: .8rem; color: var(--muted); }

/* ----- Clients ----- */
.clients { border-top: 1px solid var(--line); }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin: 20px 0 44px; }
.step span { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--accent); }
.step h3 { font-size: 1.5rem; margin: 6px 0 8px; }
.step p { color: var(--muted); }

/* ----- About ----- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; border-top: 1px solid var(--line); }
.about-text p { margin-bottom: 16px; color: #333; }
.services { list-style: none; align-self: center; }
.services li { padding: 20px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.services li:first-child { border-top: 1px solid var(--line); }
.services strong { display: block; color: var(--ink); font-weight: 500; }

/* ----- Apply ----- */
.apply { background: var(--dark); color: #fff; padding: 110px 40px; }
.apply-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.apply-info > p { color: #bbb; }
.photo-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.photo-list li { border: 1px solid #333; padding: 12px 14px; font-size: .85rem; color: #ddd; }
.photo-list li::before { content: '—  '; color: var(--accent); }
.apply .small { color: #888; }
.form { display: flex; flex-direction: column; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: #999; }
.form input, .form textarea { background: transparent; border: 0; border-bottom: 1px solid #444; padding: 8px 0; color: #fff; font: inherit; font-size: 1rem; letter-spacing: 0; text-transform: none; resize: vertical; transition: border-color .2s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
.form .btn { background: var(--accent); border-color: var(--accent); align-self: flex-start; margin-top: 8px; }
.form .btn:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ----- Contact ----- */
.contact { text-align: center; }
.contact .muted { margin-bottom: 24px; }
.contact-list { display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; }
.contact-list a:hover { color: var(--accent); }

footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 30px 40px; font-size: .78rem; color: var(--muted); border-top: 1px solid var(--line); }
footer .logo { font-size: 1.1rem; color: var(--ink); }

/* ----- Modal ----- */
.modal { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,.75); display: flex; align-items: center; justify-content: center; padding: 20px; animation: fade .25s ease; }
.modal[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } }
.modal-box { position: relative; background: var(--bg); width: min(960px, 100%); max-height: 92vh; overflow: auto; display: grid; grid-template-columns: 1fr 1fr; }
#modal-img { width: 100%; height: 100%; max-height: 92vh; object-fit: cover; object-position: top; }
.modal-info { padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; }
.modal-info h2 { font-size: 3rem; margin-bottom: 20px; }
.modal-info dl { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-bottom: 32px; }
.modal-info dt { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.modal-info dd { font-size: 1rem; }
.modal-info .btn { align-self: flex-start; }
.modal-ig { margin-top: 16px; font-size: .85rem; color: var(--muted); }
.modal-ig:hover { color: var(--accent); }
.modal-close { position: absolute; top: 10px; right: 14px; z-index: 1; background: var(--bg); border: 0; width: 38px; height: 38px; font-size: 1.8rem; line-height: 1; cursor: pointer; }

/* ----- Mobile ----- */
@media (max-width: 1024px) {
  .menu-btn { display: block; }
  .nav nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 10px 16px 20px; flex-direction: column; }
  .nav.open nav { display: flex; }
  .nav nav a { margin: 0; padding: 12px 0; font-size: .8rem; border-bottom: 1px solid var(--line); }
  .nav nav { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 110px; min-height: auto; }
  .about, .apply-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-row { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .nav, .nav.scrolled, .nav.open { padding: 14px 16px; }
  .nav { background: rgba(250,250,248,.95); border-bottom: 1px solid var(--line); }
  .hero, .section, .apply { padding-left: 16px; padding-right: 16px; }
  .section, .apply { padding-top: 80px; padding-bottom: 80px; }
  .hero-mosaic { gap: 8px; }
  .hero-mosaic img:nth-child(2) { margin-top: 30px; }
  .hero-mosaic img:nth-child(3) { margin-top: 10px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .info h3 { font-size: 1.25rem; }
  .form .row { grid-template-columns: 1fr; }
  .modal { padding: 0; }
  .modal-box { grid-template-columns: 1fr; max-height: 100vh; height: 100%; }
  #modal-img { max-height: 55vh; }
  .modal-info { padding: 28px 20px 40px; }
  .contact-list { font-size: 1.3rem; word-break: break-all; }
  footer { padding: 24px 16px; justify-content: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ----- FAQ ----- */
.faq { border-top: 1px solid var(--line); max-width: 900px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; position: relative; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: 'Inter', sans-serif; font-weight: 300; font-size: 1.4rem; color: var(--accent); transition: transform .3s; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 40px 24px 0; color: var(--muted); }

/* ----- Misc ----- */
.u { text-decoration: underline; text-underline-offset: 3px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--accent); }
.modal-share { margin-top: 12px; background: none; border: 0; padding: 0; font-size: .8rem; color: var(--muted); text-align: left; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.modal-share:hover { color: var(--accent); }
.form-status { font-size: .9rem; color: var(--accent); }

/* ----- Simple content pages (privacy, 404) ----- */
.page { max-width: 760px; margin: 0 auto; padding: 140px 24px 100px; }
.page h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1.1; margin-bottom: 12px; }
.page h2 { font-size: 1.6rem; margin: 36px 0 10px; }
.page p, .page li { color: #333; margin-bottom: 12px; }
.page ul { padding-left: 20px; }
.page .btn { margin-top: 24px; }
@media (max-width: 720px) { .nav .page-nav { display: flex; position: static; padding: 0; border: 0; background: none; } .nav .page-nav a { border: 0; padding: 0; } }

/* ----- Phone in header ----- */
.nav-phone { margin-left: auto; margin-right: 32px; font-size: .8rem; letter-spacing: .08em; font-weight: 400; white-space: nowrap; font-variant-numeric: tabular-nums; }
.nav-phone:hover { color: var(--accent); }
.nav-phone::before { content: 'Call '; color: var(--accent); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; margin-right: 4px; }
@media (max-width: 1100px) { .nav-phone::before { content: none; } .nav nav a { margin-left: 20px; } }
@media (max-width: 1024px) { .nav-phone::before { content: 'Call '; } .nav nav a { margin-left: 0; } }
@media (max-width: 720px) { .nav-phone { margin-right: 14px; font-size: .76rem; letter-spacing: .04em; } .nav-phone::before { content: none; } .logo { font-size: 1.15rem; letter-spacing: .12em; } .nav nav { padding-left: 16px; padding-right: 16px; } }
@media (max-width: 380px) { .logo { font-size: 1rem; letter-spacing: .1em; } .nav-phone { margin-right: 10px; } }

/* ----- Portfolio gallery in popup ----- */
.modal-media { display: flex; flex-direction: column; min-height: 0; background: #000; }
.modal-media > img { flex: 1; min-height: 0; }
.thumbs[hidden] { display: none; }
.thumbs { display: flex; gap: 6px; padding: 8px; overflow-x: auto; background: var(--dark); }
.thumb { flex: 0 0 auto; width: 56px; padding: 0; border: 2px solid transparent; background: none; cursor: pointer; opacity: .6; transition: .2s; }
.thumb img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.thumb:hover, .thumb.active { opacity: 1; border-color: var(--accent); }
.count { position: absolute; bottom: 12px; right: 12px; background: rgba(17,17,17,.75); color: #fff; padding: 4px 10px; font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; }
@media (max-width: 720px) { .thumb { width: 48px; } }
