*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #ffffff;
  --bg2: #f8f8f8;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-faint: #999999;
  --rule: #e5e5e5;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', sans-serif;
  --nav-h: 66px;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-weight: 400; min-height: 100vh; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-h); background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--rule); display: flex; align-items: center; padding: 0 32px; }
.nav-inner { width: 100%; max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--sans); font-size: 1.4rem; font-weight: 300; letter-spacing: 0.02em; color: var(--ink); cursor: pointer; border: none; background: none; padding: 0; line-height: 1; text-decoration: none; }
.nav-logo span { font-style: italic; color: var(--ink-soft); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links li button, .nav-links li a { font-family: var(--sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); background: none; border: none; cursor: pointer; transition: color 0.2s; padding: 4px 0; position: relative; text-decoration: none; display: inline-block; }
.nav-links li button::after, .nav-links li a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--ink); transform: scaleX(0); transition: transform 0.25s; transform-origin: left; }
.nav-links li button:hover, .nav-links li button.active, .nav-links li a:hover, .nav-links li a.active { color: var(--ink); }
.nav-links li button:hover::after, .nav-links li button.active::after, .nav-links li a:hover::after, .nav-links li a.active::after { transform: scaleX(1); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--ink); transition: all 0.25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 199; background: var(--bg); border-bottom: 1px solid var(--rule); padding: 20px 32px 28px; flex-direction: column; gap: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.mobile-menu.open { display: flex; }
.mobile-menu button, .mobile-menu a { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); background: none; border: none; border-bottom: 1px solid var(--rule); cursor: pointer; text-align: left; padding: 16px 0; font-weight: 500; text-decoration: none; display: block; }

/* PAGE */
.page { display: none; padding-top: var(--nav-h); min-height: 100vh; }
.page.active { display: block; animation: fadeUp 0.45s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* HOME */
.gallery-hero { padding: 52px 36px 28px; max-width: 1440px; margin: 0 auto; }
.gallery-hero h1 { font-family: var(--sans); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; line-height: 1.1; margin-bottom: 10px; }
.gallery-hero h1 em { font-style: italic; color: var(--ink-soft); }
.gallery-hero p { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.gallery-filters { max-width: 1440px; margin: 28px auto 32px; padding: 0 36px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-btn { font-family: var(--sans); font-size: 0.67rem; letter-spacing: 0.13em; text-transform: uppercase; padding: 7px 16px; border: 1px solid var(--rule); background: none; cursor: pointer; color: var(--ink-soft); transition: all 0.2s; font-weight: 500; }
.filter-btn:hover, .filter-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filter-count { font-size: 0.67rem; letter-spacing: 0.1em; color: var(--ink-faint); margin-left: auto; }

/* MASONRY */
.masonry { max-width: 1440px; margin: 0 auto; padding: 0 30px 80px; columns: 4; column-gap: 14px; }
@media (max-width: 1200px) { .masonry { columns: 3; } }
@media (max-width: 760px) { .masonry { columns: 2; column-gap: 10px; padding: 0 18px 60px; } }
@media (max-width: 460px) { .masonry { columns: 1; } }
.art-card { break-inside: avoid; margin-bottom: 14px; cursor: pointer; display: block; position: relative; overflow: hidden; background: var(--bg2); }
@media (max-width: 760px) { .art-card { margin-bottom: 10px; } }
.art-card img { width: 100%; display: block; transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94); }
.art-card:hover img { transform: scale(1.035); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,12,8,0.78) 0%, transparent 52%); opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.art-card:hover .card-overlay { opacity: 1; }
.card-overlay h3 { font-family: var(--sans); font-size: 1rem; font-weight: 300; color: #fff; margin-bottom: 3px; }
.card-overlay .card-meta { font-size: 0.63rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.sold-badge { position: absolute; top: 12px; right: 12px; background: rgba(15,12,8,0.75); color: #fff; font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; }

/* DETAIL */
#page-detail { }
.detail-wrap { max-width: 1380px; margin: 0 auto; padding: 0 36px 80px; }
.detail-back { font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-soft); background: none; border: none; cursor: pointer; margin: 28px 0 40px; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; font-weight: 500; text-decoration: none; }
.detail-back:hover { color: var(--ink); }
.detail-back svg { width: 14px; height: 14px; }
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 70px; align-items: start; }
@media (max-width: 960px) { .detail-layout { grid-template-columns: 1fr; gap: 40px; } }
.detail-media { min-width: 0; }
.detail-img-frame { background: var(--bg2); display: flex; align-items: center; justify-content: center; min-height: 360px; position: relative; }
.detail-img-frame img { width: 100%; height: auto; display: block; max-height: 78vh; object-fit: contain; }
.detail-sidebar { }
.detail-tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; display: block; font-weight: 500; }
.detail-title { font-family: var(--sans); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 300; line-height: 1.1; margin-bottom: 6px; }
.detail-year-line { font-size: 0.7rem; letter-spacing: 0.12em; color: var(--ink-soft); margin-bottom: 30px; display: block; }
.detail-rule { height: 1px; background: var(--rule); margin: 22px 0; }
.detail-specs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 10px; }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.spec-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-faint); flex-shrink: 0; font-weight: 500; }
.spec-value { font-size: 0.85rem; color: var(--ink); text-align: right; }
.spec-value.price { font-family: var(--sans); font-size: 1.2rem; font-weight: 300; }
.spec-value.sold { color: var(--ink-faint); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
@media (max-width: 560px) { .spec-row { flex-direction: column; align-items: flex-start; gap: 4px; } .spec-value { text-align: left; } }
.detail-desc { font-family: var(--sans); font-size: 1.05rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 32px; }
.detail-cta { display: flex; flex-direction: column; gap: 10px; }
.btn-primary { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 15px 32px; background: var(--ink); color: var(--bg); border: none; cursor: pointer; transition: background 0.2s; text-align: center; font-weight: 600; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--ink-soft); }
.btn-secondary { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 14px 32px; background: none; color: var(--ink-soft); border: 1px solid var(--rule); cursor: pointer; transition: all 0.2s; text-align: center; font-weight: 500; text-decoration: none; display: inline-block; }
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }
@media (max-width: 560px) { .btn-primary, .btn-secondary { width: 100%; padding-left: 18px; padding-right: 18px; white-space: normal; } }
.detail-image-strip { width: 100%; margin-top: 14px; display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.detail-image-strip[hidden] { display: none; }
.detail-image-thumb { width: 86px; height: 86px; padding: 0; border: 1px solid transparent; border-radius: 0; background: var(--bg2); cursor: pointer; flex: 0 0 auto; opacity: 0.55; overflow: hidden; transition: opacity 0.2s, border-color 0.2s; }
.detail-image-thumb:hover, .detail-image-thumb.active { opacity: 1; border-color: var(--ink); }
.detail-image-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
@media (max-width: 960px) { .detail-image-strip { margin-top: 12px; } }
@media (max-width: 560px) { .detail-image-thumb { width: 72px; height: 72px; } }
.detail-more { margin-top: 60px; padding-top: 36px; border-top: 1px solid var(--rule); }
.detail-more h4 { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; }
.thumb-strip { display: flex; gap: 10px; flex-wrap: wrap; }
.thumb-item { width: 84px; height: 84px; overflow: hidden; cursor: pointer; background: var(--bg2); flex-shrink: 0; opacity: 0.65; transition: opacity 0.2s; }
.thumb-item:hover { opacity: 1; }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }

/* ABOUT */
#page-about { max-width: 1160px; margin: 0 auto; padding: calc(var(--nav-h) + 56px) 36px 80px; }
.about-grid { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-img-col { order: -1; } }
.about-eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; display: block; font-weight: 500; }
.about-h { font-family: var(--sans); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.1; margin-bottom: 32px; }
.about-h em { font-style: italic; }
.about-body { font-family: var(--sans); font-size: 1.06rem; line-height: 1.85; color: var(--ink-soft); }
.about-body p { margin-bottom: 1.4em; }
.about-stats { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--rule); display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 480px) { .about-stats { grid-template-columns: 1fr 1fr; } }
.stat-n { font-family: var(--sans); font-size: 2.4rem; font-weight: 300; display: block; margin-bottom: 4px; }
.stat-l { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.about-img-col { position: sticky; top: calc(var(--nav-h) + 24px); }
@media (max-width: 900px) { .about-img-col { position: static; } }
.about-photo { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--bg2); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-caption { margin-top: 12px; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--ink-faint); }

/* CONTACT */
#page-contact { max-width: 820px; margin: 0 auto; padding: calc(var(--nav-h) + 56px) 36px 80px; }
.contact-eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 18px; font-weight: 500; }
.contact-h { font-family: var(--sans); font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 300; line-height: 1.1; margin-bottom: 12px; }
.contact-h em { font-style: italic; }
.contact-intro { font-family: var(--sans); font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 44px; }
.contact-intro p + p { margin-top: 1em; }
.contact-intro a { color: var(--ink); text-decoration: none; border-bottom: 1px solid currentColor; }
.cf { display: flex; flex-direction: column; gap: 26px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .cf-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.6rem; letter-spacing: 0.17em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; }
.field input, .field textarea, .field select { font-family: var(--sans); font-size: 0.88rem; font-weight: 400; color: var(--ink); background: transparent; border: none; border-bottom: 1px solid var(--rule); padding: 10px 0; outline: none; transition: border-color 0.2s; width: 100%; appearance: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 110px; }
.cf-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.form-note { font-size: 0.68rem; color: var(--ink-faint); letter-spacing: 0.06em; }
.form-success { display: none; text-align: center; padding: 52px 24px; border: 1px solid var(--rule); margin-top: 8px; }
.form-success.show { display: block; }
.form-success h3 { font-family: var(--sans); font-size: 2rem; font-weight: 300; margin-bottom: 10px; }
.form-success h3 em { font-style: italic; }
.form-success p { font-size: 0.85rem; color: var(--ink-soft); }
.contact-details { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--rule); display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 560px) { .contact-details { grid-template-columns: 1fr; } }
.cd-block .cd-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 8px; font-weight: 500; }
.cd-block .cd-val { font-family: var(--sans); font-size: 1rem; line-height: 1.65; color: var(--ink-soft); }
.cd-block a { color: var(--ink-soft); text-decoration: none; }
.cd-block a:hover { color: var(--ink); }

/* STRIPE MODAL */
.modal-backdrop { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(15,12,8,0.55); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; animation: backdropIn 0.25s ease; }
@keyframes backdropIn { from { opacity: 0; } to { opacity: 1; } }
.stripe-modal { background: #fff; width: 100%; max-width: 480px; border-radius: 8px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.28); animation: modalUp 0.3s cubic-bezier(0.34,1.4,0.64,1); position: relative; }
@keyframes modalUp { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: none; } }
.stripe-header { background: #0a2540; padding: 28px 28px 24px; color: #fff; }
.stripe-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.stripe-brand-logo { width: 28px; height: 28px; background: #635bff; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.stripe-brand-logo svg { width: 16px; height: 16px; fill: #fff; }
.stripe-brand-name { font-family: var(--sans); font-size: 1rem; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; }
.stripe-art-title { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.stripe-price-display { font-size: 2.2rem; font-weight: 600; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; letter-spacing: -0.02em; }
.stripe-price-display small { font-size: 1rem; font-weight: 400; margin-right: 4px; opacity: 0.7; }
.stripe-body { padding: 28px; }
.stripe-field-group { display: flex; flex-direction: column; gap: 0; margin-bottom: 18px; border: 1.5px solid #e0e6ef; border-radius: 6px; overflow: hidden; }
.stripe-field { position: relative; }
.stripe-field + .stripe-field { border-top: 1px solid #e0e6ef; }
.stripe-field label { position: absolute; top: 9px; left: 14px; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8898aa; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; pointer-events: none; }
.stripe-field input { width: 100%; border: none; outline: none; padding: 26px 14px 10px; font-size: 0.95rem; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1a1f36; background: #fff; }
.stripe-field input::placeholder { color: #c4cdd6; }
.stripe-card-row { display: grid; grid-template-columns: 1fr 1fr; }
.stripe-card-row .stripe-field + .stripe-field { border-top: none; border-left: 1px solid #e0e6ef; }
.stripe-field .card-icons { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: flex; gap: 4px; }
.card-icon { width: 28px; height: 18px; border-radius: 3px; background: #e0e6ef; display: flex; align-items: center; justify-content: center; font-size: 0.45rem; font-weight: 700; letter-spacing: 0.05em; color: #6b7a99; font-family: sans-serif; }
.card-icon.visa { background: #1a1f71; color: #fff; }
.card-icon.mc { background: linear-gradient(90deg,#eb001b 0%,#f79e1b 100%); color: transparent; position: relative; overflow: hidden; }
.stripe-pay-btn { width: 100%; background: #635bff; color: #fff; border: none; border-radius: 6px; padding: 15px; font-size: 1rem; font-weight: 600; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; cursor: pointer; transition: background 0.2s, transform 0.1s; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.stripe-pay-btn:hover { background: #4f46e5; }
.stripe-pay-btn:active { transform: scale(0.99); }
.stripe-pay-btn svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.85); }
.stripe-secure { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 0.68rem; color: #8898aa; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.stripe-secure svg { width: 11px; height: 11px; fill: #8898aa; }
.stripe-powered { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 10px; font-size: 0.62rem; color: #c4cdd6; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.stripe-powered svg { width: 30px; height: 13px; }

/* IMAGE MODAL */
#imageModal.open { display: flex; animation: backdropIn 0.25s ease; }
.image-modal-content { position: relative; max-width: 90vw; max-height: 90vh; animation: modalZoomIn 0.25s ease; }
@keyframes modalZoomIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.image-modal-content img { width: 100%; height: 100%; max-width: 90vw; max-height: 90vh; object-fit: contain; }
.image-modal-close { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.12); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: background 0.2s; z-index: 10; }
.image-modal-close:hover { background: rgba(255,255,255,0.22); }
.modal-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.12); border: none; border-radius: 50%; width: 28px; height: 28px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: background 0.2s; }
.modal-close:hover { background: rgba(255,255,255,0.22); }
.stripe-success { display: none; text-align: center; padding: 48px 28px; }
.stripe-success.show { display: block; }
.stripe-success-icon { width: 56px; height: 56px; background: #00d97e; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.stripe-success-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2.5; }
.stripe-success h3 { font-size: 1.3rem; font-weight: 600; color: #1a1f36; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; margin-bottom: 8px; }
.stripe-success p { font-size: 0.85rem; color: #8898aa; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; }

/* DETAIL IMAGE GALLERY */


/* IMAGE GALLERY MODAL */
#imageModal { display: none; }
#imageModal.open { display: flex; animation: backdropIn 0.25s ease; }
.image-modal-content { position: relative; max-width: 90vw; max-height: 90vh; animation: modalZoomIn 0.3s ease; }
@keyframes modalZoomIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.image-modal-content img { width: 100%; height: auto; max-width: 90vw; max-height: 90vh; object-fit: contain; }
.image-modal-close { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.12); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: background 0.2s; z-index: 10; }
.image-modal-close:hover { background: rgba(255,255,255,0.22); }



/* FOOTER */
footer { background: var(--ink); padding: 36px 32px; }
.footer-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-family: var(--sans); font-size: 1.1rem; color: rgba(255,255,255,0.9); }
.footer-logo span { font-style: italic; color: rgba(255,255,255,0.5); }
.footer-copy { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

@media (max-width: 720px) { nav { padding: 0 20px; } .nav-links { display: none; } .nav-burger { display: flex; } }
@media (max-width: 720px) { .gallery-hero, .gallery-filters { padding-left: 18px; padding-right: 18px; } }
