@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --ink: #1d2420;
  --muted: #6f766f;
  --paper: #f5f3ee;
  --paper-deep: #e9e7df;
  --line: #d4d4cb;
  --lime: #cce85d;
  --orange: #ef7554;
  --white: #fffef9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Noto Sans SC", sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header { align-items: center; display: flex; justify-content: space-between; padding: 24px 5vw; }
.brand { align-items: center; display: flex; gap: 11px; }
.brand-mark { align-items: center; background: var(--ink); color: var(--lime); display: flex; font-size: 22px; font-weight: 900; height: 38px; justify-content: center; width: 38px; }
.brand strong { display: block; font-size: 16px; line-height: 1; }
.brand small { color: var(--muted); display: block; font-family: "Space Grotesk", sans-serif; font-size: 8px; letter-spacing: .12em; margin-top: 5px; }
.site-nav { align-items: center; display: flex; font-size: 13px; gap: 28px; }
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--ink); }
.hero { display: grid; grid-template-columns: .96fr 1.04fr; min-height: 625px; padding: 30px 5vw 70px; }
.hero-copy { align-self: center; padding: 30px 8vw 40px 0; }
.eyebrow { color: var(--muted); font-family: "Space Grotesk", sans-serif; font-size: 11px; letter-spacing: .14em; margin: 0 0 18px; }
.hero h1 { font-size: clamp(46px, 6vw, 82px); letter-spacing: -.04em; line-height: 1.08; margin: 0; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-description { color: var(--muted); font-size: 15px; line-height: 1.9; margin: 26px 0 34px; max-width: 360px; }
.button { align-items: center; border: 0; display: inline-flex; font-size: 13px; gap: 42px; justify-content: space-between; padding: 15px 18px; }
.button-dark { background: var(--ink); color: var(--white); min-width: 164px; }
.button-dark span { color: var(--lime); font-size: 19px; line-height: 10px; }
.hero-visual { position: relative; }
.hero-photo { background-image: url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1600&q=90"); background-position: center; background-size: cover; height: 100%; min-height: 520px; }
.hero-note { bottom: 18px; color: var(--white); display: flex; font-family: "Space Grotesk", sans-serif; font-size: 10px; justify-content: space-between; left: 20px; letter-spacing: .12em; position: absolute; right: 20px; }

.intro-band, .closing-band { align-items: end; background: var(--ink); color: var(--white); display: grid; gap: 8vw; grid-template-columns: 1fr 1fr; padding: 82px 12vw; }
.intro-band h2, .closing-band h2 { font-size: clamp(30px, 4vw, 56px); letter-spacing: -.04em; line-height: 1.1; margin: 8px 0 0; }
.section-number { color: var(--lime); font-family: "Space Grotesk", sans-serif; font-size: 12px; }
.intro-band > p, .closing-band > p { color: #b5b9af; font-size: 14px; line-height: 2; max-width: 290px; }

.content-section, .equipment-section { padding: 100px 5vw; }
.section-heading { align-items: end; display: flex; justify-content: space-between; margin-bottom: 36px; }
.section-heading h2 { font-size: clamp(34px, 4vw, 54px); letter-spacing: -.05em; margin: 0; }
.filter-row { display: flex; gap: 8px; }
.filter { background: transparent; border: 1px solid var(--line); color: var(--muted); font-size: 12px; padding: 9px 13px; }
.filter.active, .filter:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.photographer-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.photographer-card { background: var(--white); min-width: 0; }
.card-image { aspect-ratio: 1 / 1.08; background: var(--paper-deep); overflow: hidden; position: relative; }
.card-image img { height: 100%; object-fit: cover; transition: opacity .16s ease, transform .4s ease; width: 100%; }
.card-image .carousel-image.is-switching { opacity: .15; }
.photographer-card:hover .card-image img { transform: scale(1.04); }
.identity-tag { background: var(--lime); font-size: 11px; left: 14px; padding: 7px 9px; position: absolute; top: 14px; }
.carousel-dots { bottom: 14px; display: flex; gap: 5px; left: 14px; position: absolute; }
.carousel-dot { background: rgba(255,255,255,.55); display: block; height: 4px; width: 18px; }
.carousel-dot.active { background: var(--lime); }
.card-body { padding: 19px 20px 22px; }
.card-top { align-items: start; display: flex; justify-content: space-between; }
.card-body h3 { font-size: 22px; letter-spacing: -.04em; margin: 0; }
.card-region { color: var(--muted); font-size: 12px; margin: 5px 0 19px; }
.card-meta { border-top: 1px solid var(--line); display: grid; gap: 12px; grid-template-columns: 1fr 1fr; padding-top: 14px; }
.meta-label { color: var(--muted); display: block; font-size: 10px; margin-bottom: 3px; }
.meta-value { font-size: 12px; }
.empty-state { color: var(--muted); padding: 36px 0; }
.hidden { display: none !important; }

.equipment-section { background: var(--paper-deep); }
.section-aside { color: var(--muted); font-size: 12px; line-height: 1.8; margin: 0; text-align: right; }
.equipment-list { border-top: 1px solid var(--line); }
.equipment-item { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 28px; grid-template-columns: 140px 1fr auto; padding: 20px 0; }
.equipment-thumb { aspect-ratio: 1.15; background: #d7d5cc; overflow: hidden; }
.equipment-thumb img { height: 100%; object-fit: cover; width: 100%; }
.equipment-item h3 { font-size: 18px; margin: 0 0 9px; }
.equipment-item p { color: var(--muted); font-size: 12px; line-height: 1.7; margin: 0; max-width: 550px; }
.equipment-price { font-family: "Space Grotesk", sans-serif; font-size: 20px; text-align: right; }
.equipment-info { color: var(--muted); font-size: 11px; margin-top: 10px; }
.community-band { align-items:center; background:var(--lime); display:grid; gap:8vw; grid-template-columns:1fr 1fr; padding:72px 12vw; }
.community-band h2 { font-size:clamp(34px, 4vw, 54px); letter-spacing:-.05em; margin:0; }
.community-band .eyebrow { color:#58621e; }
.community-details { display:grid; gap:18px; grid-template-columns:1fr 1fr; }
.community-details div { border-left:1px solid rgba(29,36,32,.28); padding-left:18px; }
.community-details span { color:#58621e; display:block; font-size:11px; margin-bottom:8px; }
.community-details strong { display:block; font-family:"Space Grotesk","Noto Sans SC",sans-serif; font-size:20px; overflow-wrap:anywhere; }
.closing-band { background: var(--orange); }
.closing-band .eyebrow { color: #ffe4db; }
.closing-band > p { color: #ffe4db; }
.site-footer { background: var(--ink); border-top: 1px solid #39403a; color: #8e968b; display: flex; font-family: "Space Grotesk", sans-serif; font-size: 10px; justify-content: space-between; letter-spacing: .08em; padding: 22px 5vw; }
.lightbox-trigger { cursor: zoom-in; }
body.lightbox-open { overflow: hidden; }
.lightbox { align-items: center; background: #f2f3f5; display: flex; inset: 0; justify-content: center; overflow: hidden; position: fixed; z-index: 1000; }
.lightbox > img { display: block; height: 100%; object-fit: contain; object-position: center; width: 100%; }
.lightbox-close { background: rgba(255,255,255,.88); border: 0; border-radius: 50%; color: #30353a; font-size: 30px; height: 42px; line-height: 1; padding: 0 0 3px; position: absolute; right: 18px; top: 14px; width: 42px; z-index: 1; }
.lightbox-close:hover { background: #fff; }

@media (max-width: 760px) {
  .site-header { padding: 18px 20px; }
  .site-nav { gap: 12px; }
  .site-nav a { display: none; }
  .hero { display: flex; flex-direction: column; padding: 10px 20px 50px; }
  .hero-copy { padding: 55px 0 35px; }
  .hero-photo { min-height: 380px; }
  .intro-band, .closing-band, .community-band { display: block; padding: 58px 20px; }
  .intro-band > p, .closing-band > p { margin-top: 28px; }
  .community-details { margin-top:30px; }
  .content-section, .equipment-section { padding: 65px 20px; }
  .section-heading { align-items: start; display: block; }
  .filter-row { flex-wrap: wrap; margin-top: 22px; }
  .photographer-grid { grid-template-columns: 1fr; }
  .equipment-item { align-items: start; grid-template-columns: 90px 1fr; }
  .equipment-price { grid-column: 2; text-align: left; }
  .lightbox-close { font-size: 26px; height: 36px; right: 10px; top: 10px; width: 36px; }
  .site-footer { display: block; line-height: 2; }
}
