*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --white: #ffffff;
  --off-white: #fbf8f2;
  --light-gray: #f1eee8;
  --border: #e2e0dc;
  --text: #1a1a1a;
  --muted: #888884;
  --gold: #a67c52;
}
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: 'Manrope', sans-serif; font-weight: 400; overflow-x: hidden; }

.top-banner { background: var(--text); color: var(--white); text-align: center; padding: 10px 24px; font-size: 12px; letter-spacing: 0.05em; }
.top-banner a { color: var(--white); text-decoration: underline; margin-left: 6px; }
.top-banner a:hover { opacity: 0.7; }

.clawlis-banner { background: #1a0a00; color: var(--white); text-align: center; padding: 14px 24px; font-size: 13px; letter-spacing: 0.04em; border-bottom: 2px solid #b5541a; }
.clawlis-banner strong { color: #f4a460; }
.clawlis-banner a { display: inline-block; margin-left: 16px; padding: 6px 18px; border: 1px solid #f4a460; color: #f4a460; text-decoration: none; font-size: 11px; letter-spacing: 0.1em; transition: all 0.2s; }
.clawlis-banner a:hover { background: #f4a460; color: #1a0a00; }

nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; padding: 0 48px; height: 64px; }
.logo { font-family: 'Manrope', sans-serif; font-size: 25px; font-weight: 800; letter-spacing: -0.045em; color: var(--text); text-decoration: none; display: flex; align-items: center; }
.logo-a { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border: 2px solid var(--text); border-radius: 8px; font-size: 20px; font-weight: 800; margin: 0 2px; position: relative; top: -1px; }
nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
nav ul a { color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 400; letter-spacing: 0.04em; transition: color 0.2s; }
nav ul a:hover { color: var(--text); }
.nav-cta { background: var(--text) !important; color: var(--white) !important; padding: 10px 20px !important; font-size: 12px !important; }
.nav-cta:hover { opacity: 0.75; }

.gallery-section { padding: 64px 48px 48px; }
.section-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.section-title { font-family: 'Manrope', sans-serif; font-size: 25px; font-weight: 800; letter-spacing: -0.045em; font-weight: 400; }
.section-meta { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }
.section-divider { height: 1px; background: var(--border); margin: 0 48px; }


.site-intro { padding: 72px 48px 48px; max-width: 980px; }
.site-intro .eyebrow { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 800; margin-bottom: 14px; }
.site-intro h1 { font-size: clamp(38px, 7vw, 76px); line-height: 0.98; letter-spacing: -0.065em; font-weight: 800; max-width: 900px; margin-bottom: 20px; }
.site-intro p:not(.eyebrow) { font-size: 17px; line-height: 1.7; color: #555; max-width: 620px; margin-bottom: 28px; }
.site-intro a { display: inline-block; background: var(--text); color: var(--white); text-decoration: none; padding: 13px 24px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.site-intro a:hover { opacity: 0.75; }

/* CLAWLIS - full natural portrait */
.clawlis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.clawlis-card { cursor: pointer; overflow: hidden; background: var(--light-gray); }
.clawlis-card img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.clawlis-card:hover img { transform: scale(1.02); }

/* PRICE + BUY always visible */
.price-tag { 
  padding: 10px 0 4px; 
  font-size: 13px; 
  color: var(--gold); 
  letter-spacing: 0.04em;
  font-weight: 400;
}
.buy-btn { 
  display: block; 
  width: 100%; 
  padding: 12px; 
  background: var(--text); 
  color: var(--white); 
  text-align: center; 
  text-decoration: none; 
  font-size: 11px; 
  letter-spacing: 0.12em; 
  font-weight: 500; 
  margin-top: 6px; 
  transition: opacity 0.2s; 
}
.buy-btn:hover { opacity: 0.7; }

/* DIGITAL ART - natural ratios, 4 col */
.digital-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.digital-grid-extra { display: none; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.digital-grid-extra.open { display: grid; }
.digital-card { cursor: pointer; }
.digital-card img { width: 100%; height: auto; display: block; background: var(--light-gray); transition: transform 0.4s ease; }
.digital-card:hover img { transform: scale(1.02); }

/* PHOTO GRID - square, 5 col */
.photo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.photo-grid-extra { display: none; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 12px; }
.photo-grid-extra.open { display: grid; }
.photo-card { cursor: pointer; background: var(--light-gray); }
.photo-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform 0.4s ease; }
.photo-card:hover img { transform: scale(1.03); }

/* VIEW MORE - compact inline */
.see-more-card { 
  background: var(--off-white); 
  border: 1px solid var(--border); 
  display: flex; flex-direction: column; 
  justify-content: center; align-items: center; 
  text-align: center; cursor: pointer; 
  padding: 16px 8px;
  aspect-ratio: 1/1;
  transition: background 0.2s; 
}
.see-more-card:hover { background: var(--light-gray); }
.see-more-icon { font-size: 20px; color: var(--muted); margin-bottom: 4px; }
.see-more-label { font-size: 10px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

.see-more-link { margin-top: 16px; text-align: center; }
.see-more-link span { font-size: 12px; color: var(--muted); cursor: pointer; text-decoration: underline; }
.see-more-link span:hover { color: var(--text); }

.filler-card { background: var(--off-white); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 24px; border: 1px solid var(--border); aspect-ratio: 1/1; }

/* ABOUT */
.about-strip { background: var(--off-white); padding: 80px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-family: 'Manrope', sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.2; margin-bottom: 20px; }
.about-text p { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 16px; }
.cta-btn { display: inline-block; margin-top: 8px; padding: 12px 28px; background: var(--text); color: var(--white); text-decoration: none; font-size: 12px; letter-spacing: 0.08em; }
.cta-btn:hover { opacity: 0.7; }
.about-img { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.about-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }

#contact { padding: 100px 48px; text-align: center; border-top: 1px solid var(--border); }
#contact h2 { font-family: 'Manrope', sans-serif; font-size: 42px; font-weight: 800; letter-spacing: -0.045em; margin-bottom: 16px; }
#contact p { font-size: 15px; color: var(--muted); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.contact-email { display: inline-block; font-size: 18px; color: var(--text); text-decoration: none; border-bottom: 1.5px solid var(--text); padding-bottom: 3px; margin-bottom: 48px; }
.contact-email:hover { opacity: 0.5; }
.contact-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.tag { padding: 8px 16px; border: 1px solid var(--border); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

footer { padding: 36px 48px; border-top: 1px solid var(--border); background: var(--off-white); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-logo { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.04em; color: var(--text); margin-bottom: 12px; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-links { text-align: right; }
.footer-links a { display: block; font-size: 13px; color: var(--text); text-decoration: none; margin-bottom: 8px; }
.footer-links a:hover { opacity: 0.6; }
.footer-sub { font-size: 11px; color: var(--muted); margin-top: 12px; line-height: 1.6; }
.footer-sub a { display: inline !important; font-size: 11px !important; color: var(--gold) !important; text-decoration: underline; }

.lightbox { display: none; position: fixed; inset: 0; background: rgba(255,255,255,0.97); z-index: 200; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; box-shadow: 0 8px 48px rgba(0,0,0,0.1); }
.lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 32px; color: var(--text); cursor: pointer; background: none; border: none; font-weight: 300; }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  nav ul { display: none; }
  .site-intro { padding: 52px 20px 36px; }
  .gallery-section { padding: 48px 20px 36px; }
  .clawlis-grid { grid-template-columns: 1fr; }
  .digital-grid, .digital-grid-extra { grid-template-columns: repeat(2, 1fr); }
  .photo-grid, .photo-grid-extra { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  #contact { padding: 72px 20px; }
  footer { padding: 28px 20px; }
  .footer-inner { flex-direction: column; }
  .footer-links { text-align: left; }
  .section-divider { margin: 0 20px; }
}

/* --- HOLLIS CLEANUP OVERRIDES --- */
.intro, .hero, .site-intro {
  padding: 34px 48px 26px !important;
  min-height: auto !important;
}
.intro .eyebrow, .hero .eyebrow, .site-intro .eyebrow,
.eyebrow {
  font-size: 12px !important;
  letter-spacing: 0.16em !important;
  color: var(--gold) !important;
  margin-bottom: 14px !important;
}
.intro h1, .hero h1, .site-intro h1,
.hero-title {
  font-size: clamp(38px, 6vw, 76px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
  max-width: 1120px !important;
  margin: 0 0 16px !important;
}
.intro p, .hero p, .site-intro p,
.hero-subtitle {
  font-size: clamp(17px, 2vw, 24px) !important;
  line-height: 1.35 !important;
  max-width: 760px !important;
  margin-bottom: 0 !important;
}
.hero-rule, .intro-rule {
  margin-top: 26px !important;
  width: 300px !important;
}
.gallery-section {
  padding-top: 38px !important;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 1 !important;
}
@media (max-width: 900px) {
  .intro, .hero, .site-intro {
    padding: 28px 20px 20px !important;
  }
  .intro h1, .hero h1, .site-intro h1,
  .hero-title {
    font-size: clamp(34px, 12vw, 54px) !important;
    line-height: 0.98 !important;
  }
  .intro p, .hero p, .site-intro p,
  .hero-subtitle {
    font-size: 17px !important;
  }
  .gallery-section {
    padding-top: 28px !important;
  }
}


/* --- V4 FINAL OVERRIDES --- */
.intro, .hero, .site-intro {
  padding: 22px 48px 16px !important;
}
.intro h1, .hero h1, .site-intro h1,
.hero-title {
  font-size: clamp(30px, 4.3vw, 54px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.04em !important;
  max-width: 940px !important;
}
.intro p, .hero p, .site-intro p,
.hero-subtitle {
  font-size: clamp(15px, 1.5vw, 19px) !important;
  line-height: 1.35 !important;
  max-width: 650px !important;
}
.gallery-section {
  padding-top: 24px !important;
}
@media (max-width: 900px) {
  .intro, .hero, .site-intro {
    padding: 18px 20px 12px !important;
  }
  .intro h1, .hero h1, .site-intro h1,
  .hero-title {
    font-size: clamp(28px, 9vw, 42px) !important;
  }
}


/* --- V6 RESTORED BIOPHILIC PHOTO SECTION --- */
#biophilic .photo-grid,
#biophilic .photo-grid-extra {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
}
#biophilic .photo-card img {
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
}
#biophilic .see-more-card {
  aspect-ratio: 4 / 3 !important;
  min-height: auto !important;
  background: var(--off-white) !important;
}
#biophilic .buy-btn {
  padding: 10px 12px !important;
  font-size: 10px !important;
}
@media (max-width: 900px) {
  #biophilic .photo-grid,
  #biophilic .photo-grid-extra {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


/* --- V7 VISBY-LIKE TYPE + NATURAL BIOPHILIC IMAGES --- */
:root {
  --text: #1d1d1f;
  --muted: #77716a;
  --gold: #a77c55;
}
body,
nav ul a,
.top-banner,
.clawlis-banner,
.section-meta,
.price-tag,
.buy-btn,
.cta-btn,
.tag,
.footer-copy,
.footer-links a {
  font-family: 'Manrope', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif !important;
}
.logo,
.footer-logo,
.section-title,
.about-text h2,
#contact h2,
.hero-title,
.intro h1,
.hero h1,
.site-intro h1 {
  font-family: 'Manrope', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.055em !important;
}
.logo {
  font-weight: 800 !important;
  font-size: 28px !important;
  letter-spacing: -0.06em !important;
}
.logo-a {
  font-family: 'Manrope', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
}
.section-title {
  font-size: clamp(30px, 4vw, 54px) !important;
  line-height: 0.95 !important;
}
.intro, .hero, .site-intro {
  padding: 22px 48px 16px !important;
}
.intro h1, .hero h1, .site-intro h1,
.hero-title {
  font-size: clamp(30px, 4.3vw, 54px) !important;
  line-height: 1.03 !important;
  max-width: 940px !important;
}
.intro p, .hero p, .site-intro p,
.hero-subtitle {
  font-size: clamp(15px, 1.5vw, 19px) !important;
  line-height: 1.35 !important;
  max-width: 650px !important;
}
#biophilic .natural-photo-grid,
#biophilic .photo-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: start !important;
}
#biophilic .photo-card {
  background: transparent !important;
  cursor: pointer !important;
  break-inside: avoid !important;
}
#biophilic .photo-card img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  display: block !important;
  background: var(--off-white) !important;
}
#biophilic .price-tag {
  padding: 10px 0 6px !important;
  font-size: 14px !important;
}
#biophilic .buy-btn {
  padding: 10px 12px !important;
  font-size: 10px !important;
  letter-spacing: 0.12em !important;
}
@media (max-width: 1100px) {
  #biophilic .natural-photo-grid,
  #biophilic .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 650px) {
  #biophilic .natural-photo-grid,
  #biophilic .photo-grid {
    grid-template-columns: 1fr !important;
  }
  .intro, .hero, .site-intro {
    padding: 18px 20px 12px !important;
  }
}


/* --- V8 ADDED DIGITAL ART ASSETS --- */
#digital .digital-card img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
}
#digital .price-tag {
  padding: 10px 0 6px !important;
}
#digital .buy-btn {
  padding: 10px 12px !important;
  font-size: 10px !important;
}


/* --- V9 DETROIT COLLECTION SECTION --- */
#detroit .natural-photo-grid,
#detroit .photo-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: start !important;
}
#detroit .photo-card {
  background: transparent !important;
  cursor: pointer !important;
}
#detroit .photo-card img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  display: block !important;
  background: var(--off-white) !important;
}
#detroit .price-tag {
  padding: 10px 0 6px !important;
  font-size: 14px !important;
}
#detroit .buy-btn {
  padding: 10px 12px !important;
  font-size: 10px !important;
  letter-spacing: 0.12em !important;
}
@media (max-width: 1100px) {
  #detroit .natural-photo-grid,
  #detroit .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 650px) {
  #detroit .natural-photo-grid,
  #detroit .photo-grid {
    grid-template-columns: 1fr !important;
  }
}


/* --- V10 STRUCTURED SITE MOBILE POLISH --- */
img {
  max-width: 100%;
}

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .top-banner,
  .clawlis-banner {
    padding-left: 16px !important;
    padding-right: 16px !important;
    line-height: 1.45 !important;
  }

  .clawlis-banner a {
    margin: 10px auto 0 !important;
    display: block !important;
    width: fit-content !important;
  }

  nav {
    height: auto !important;
    min-height: 58px !important;
    padding: 12px 20px !important;
    align-items: center !important;
  }

  .logo {
    font-size: 24px !important;
    white-space: nowrap !important;
  }

  .logo-a {
    width: 28px !important;
    height: 28px !important;
    font-size: 20px !important;
  }

  .intro,
  .hero,
  .site-intro {
    padding: 22px 20px 14px !important;
  }

  .intro h1,
  .hero h1,
  .site-intro h1,
  .hero-title {
    font-size: clamp(34px, 11vw, 48px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em !important;
  }

  .intro p,
  .hero p,
  .site-intro p,
  .hero-subtitle {
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  .gallery-section {
    padding: 38px 20px 32px !important;
  }

  .section-header {
    display: block !important;
    margin-bottom: 18px !important;
  }

  .section-title {
    font-size: clamp(34px, 12vw, 48px) !important;
    line-height: 0.98 !important;
    margin-bottom: 8px !important;
  }

  .section-meta {
    display: block !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .clawlis-grid,
  .digital-grid,
  .digital-grid-extra,
  .photo-grid,
  .photo-grid-extra,
  #biophilic .photo-grid,
  #detroit .photo-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .digital-card,
  .photo-card,
  .clawlis-card {
    margin-bottom: 4px !important;
  }

  .buy-btn {
    padding: 13px 12px !important;
    font-size: 11px !important;
  }

  .about-strip {
    padding: 54px 20px !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .about-text h2 {
    font-size: clamp(32px, 10vw, 44px) !important;
  }

  #contact {
    padding: 64px 20px !important;
  }

  #contact h2 {
    font-size: clamp(32px, 10vw, 44px) !important;
  }

  .footer-inner {
    gap: 24px !important;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .digital-grid,
  .digital-grid-extra {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .photo-grid,
  .photo-grid-extra,
  #biophilic .photo-grid,
  #detroit .photo-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
