
    :root{
      --bg:#0b0b0c; --fg:#eaeaea; --muted:#a7abb3; --accent:#97b4ff; --line:#1a1b1e;
      --card:#111114; --brand:#e6eefc; --btn:#1a2333; --btnText:#dfe7ff;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{margin:0; background:linear-gradient(180deg,#0b0b0c 0%,#0d0d11 100%); color:var(--fg); font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;}
    a{color:inherit; text-decoration:none}
    .wrap{min-height:100%; display:grid; grid-template-rows:auto 1fr auto}
    header{display:flex; align-items:center; justify-content:space-between; padding:16px 24px; border-bottom:1px solid var(--line); background:rgba(17,17,20,.7); backdrop-filter:saturate(160%) blur(8px); position:sticky; top:0; z-index:10}
    .brand{font-family:"Playfair Display",serif; letter-spacing:.69em; font-weight:950}
    .brand small{display:block; font-size:.72rem; color:var(--muted); letter-spacing:.18em}

    main{max-width:1200px; margin:0 auto; padding:48px 24px; display:grid; gap:32px; grid-template-columns:1.1fr .9fr}
    @media (max-width:980px){ main{grid-template-columns:1fr; padding:28px 18px} }


    .hero{border-radius:24px; overflow:hidden; background:var(--card); box-shadow:0 12px 40px rgba(0,0,0,.5), 0 0 0 1px #141418 inset}
    .hero img{display:block; width:100%; height:auto; 
	/* aspect-ratio: 16/9; */
	
	object-fit:cover; background:#0b0b0c} 

    .panel{align-self:stretch; display:flex; flex-direction:column; gap:18px; padding:24px; background:radial-gradient(80% 120% at 20% 0%,#121420 0%,#0f1016 45%,#0c0d12 100%); border:1px solid #f51720; border-radius:24px}
    h1{font:700 42px "Playfair Display",serif; margin:0 0 4px}
    .tag{color:var(--muted); font-size:.95rem; letter-spacing:.06em}
    .copy{color:#d7d9df; line-height:1.55}

    .row{display:flex; gap:12px; flex-wrap:wrap}
    .btn{display:inline-flex; align-items:center; gap:10px; padding:10px 14px; border-radius:14px; background:var(--btn); color:var(--btnText); border:1px solid #293247; box-shadow:0 1px 0 #2e3a56 inset; font-weight:600; letter-spacing:.02em; transition:.2s ease}
    .btn:hover{transform:translateY(-1px); box-shadow:0 8px 22px rgba(0,0,0,.35)}
    .btn:active{transform:translateY(0)}
    /* Smaller buttons per request */
    .btn-sm{padding:8px 12px; border-radius:12px; font-size:.9rem}

    .meta{display:flex; gap:16px; color:var(--muted); font-size:.9rem}
    .meta span{padding:6px 10px; border:1px solid var(--line); border-radius:999px; background:#0f1117}
	
	:root{
  --header-h: 64px;          /* "levered"adjust if your top header is taller */
  --bar-pad-y: 0.65rem;
  --bar-pad-x: 1rem;
}

/* Anchor jumps land with breathing room below the main header */
section[id]{
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Make per-section H1s *not* sticky now (keep them for in-section structure/SEO) */
.section-banner{
  position: static;           /* was: sticky */
  top: auto;                  /* remove previous top */
  z-index: auto;              /* no stacking needed */
  margin: 0 0 .75rem;
}

/* The single global section bar that updates as you scroll */
#section-bar{
  position: sticky;
  top: var(--header-h);
  z-index: 50;                /* higher than content */
  padding: var(--bar-pad-y) var(--bar-pad-x);
  text-align: center;
  font: 500 clamp(18px, 4vw, 22px) "Playfair Display", serif;
  color: #fff;
  background: linear-gradient(180deg, rgba(10,12,16,.92), rgba(10,12,16,.82));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px) saturate(130%);
}

/* Optional: only show the bar once the user has scrolled a bit */
body:not(.has-scrolled) #section-bar{ opacity: 0; pointer-events: none; }
body.has-scrolled #section-bar{ opacity: 1; transition: opacity .18s ease; }


	
	
	:root{
  /* height of your sticky site header; tweak if needed */
  --header-h: 64px;
}

/* Ensure anchor jumps don’t hide content behind the sticky header */
section[id]{
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Sticky “section banner” look for h1s inside each section */
.section-banner{
  position: sticky;
  top: var(--header-h);
  z-index: 6;
  text-align: center;
  margin: 0 0 .75rem;
  padding: .65rem 1rem;
  font: 600 clamp(20px, 4vw, 28px) "Playfair Display", serif;
  background:
    linear-gradient(180deg, rgba(10,12,16,.92), rgba(10,12,16,.82));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(3px) saturate(130%);
}

	
	
	/* ===== HERO LAYOUT (keeps your current two-column on desktop, stacks on mobile) ===== */
.hero {
  display: grid;
  
  
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 40px);
  max-inline-size: min(1400px, 95vw);
  margin-inline: auto;
  align-items: center;
}

/*
	@media (min-width: 1024px) {
  .hero {
  
    grid-template-columns: 1.2fr 0.8fr;
    <!-- grid-template-columns: minmax(820px, 1.2fr) minmax(360px, 0.8fr); -->
  }
}  
 */



/* Stack the text below the image on narrow screens (as you like) */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

/* ===== HERO IMAGE "CARD" (rounded, no gaps, image fully fills) ===== */
.hero-card {
  /* Preserve your rounded edges */
  border-radius: 20px;           /* adjust to match your current look */
  overflow: clip;     /* hides any overhang while honoring radius */
  /* Control the visible height so the image can fill without letterboxing */
  block-size: clamp(320px, 72svh, 720px);
  /* Remove any accidental spacing below the card */
  margin: 0;
  padding: 0;
  /* Optional subtle shadow (remove if you don't want it) */
  /* box-shadow: 0 10px 30px rgba(0,0,0,.15); */
 aspect-ratio: 4/3;  /*or 3 / 2, 4 / 3 */
  
}

/* Make the image perfectly fill the card while respecting the radius */
.hero-img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;             /* crops gracefully; no letterboxing */
  display: block;                /* kills inline-image baseline gap */
}


/* ===== (Optional) If you have a fixed/sticky header and the hero should be full-viewport minus header ===== */

:root { --header-h: 34px; }   // set to your real header height
.hero-card { block-size: calc(100svh - var(--header-h)); }

/* ===== (Optional) Ensure generic images don’t cause layout gaps elsewhere ===== */
img { max-width: 100%; height: auto; }

	
	
	html { scroll-behavior: smooth; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
	
	
	.collection-grid > .section-title{
  grid-column: 1 / -1;
  text-align: center;
}
	
		.ailevereddesign-grid > .section-title{
  grid-column: 1 / -1;
  text-align: center;
}

    footer{padding:22px; text-align:center; color:var(--muted); border-top:1px solid var(--line)}
    .divider{height:1px; background:linear-gradient(90deg,transparent, #1e2230 30%, #1e2230 70%, transparent); margin:8px 0 16px}
  

 
 
  :root{--paper:#101215; --line:#1b2330; --ink:#dfe6ff; --muted:#9aa3b2}
    html,body{height:100%}
    body{margin:0; color:var(--ink); font-family:Inter,system-ui,sans-serif; background:
      repeating-linear-gradient(
        to bottom,
        var(--paper) 0, var(--paper) 28px,
        var(--line) 28px, var(--line) 29px
      );}
    header{padding:18px 22px; display:flex; align-items:baseline; gap:12px; position:sticky; top:0; background:rgba(16,18,21,.85); backdrop-filter:blur(6px)}
    h1{font:600 28px "Playfair Display",serif; margin:0}
    a{color:var(--ink); text-decoration:none}
    .muted{color:var(--muted)}
    .grid{max-width:1080px; margin:24px auto; padding:0 18px; display:grid; gap:14px}
    .card{background:rgba(8,10,14,.75); border:1px solid #1c2230; border-radius:14px; padding:14px 16px}
    .card h3{margin:2px 0 6px; font-weight:600}
    .crumbs{font-size:.92rem}
	
	
	
	:root{
  --footer-bg: #0a0a0a;
  --footer-fg: #eaeaea;
  --footer-muted: #9aa0a6;
  --footer-border: rgba(255,255,255,0.08);
}

.site-footer{
  margin-top: clamp(48px, 8vw, 96px);
  background: var(--footer-bg);
  color: var(--footer-fg);
  border-top: 1px solid var(--footer-border);
}

.footer-inner{
  max-inline-size: min(1200px, 92vw);
  margin-inline: auto;
  padding-block: clamp(20px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
  flex-wrap: wrap;
}

.footer-brand{
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--footer-muted);
}

.socials{
  display: flex;
  gap: clamp(10px, 1.6vw, 16px);
}

.social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 44px;
  block-size: 44px;                 /* big touch target */
  border-radius: 9999px;
  border: 1px solid var(--footer-border);
  color: var(--footer-fg);
  text-decoration: none;
  outline: none;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.social-link svg{
  inline-size: 22px;
  block-size: 22px;
}

.social-link:hover,
.social-link:focus-visible{
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Brand tints if you want subtle color cues (optional) */
.social-link.x:hover{ color: #fff; }
.social-link.instagram:hover{ color: #ff69b4; }
.social-link.tumblr:hover{ color: #36465d; }
.social-link.facebook:hover{ color: #1877f2; }

/* Visually hidden helper for accessible text */
.sr-only{
  position:absolute !important;
  inline-size:1px;
  block-size:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce){
  .social-link{ transition: none; }
}

	
	
	:root{
  --card-radius: 18px;
  --overlay-w: clamp(240px, 34%, 420px);   /* right-side panel width on desktop */
  --overlay-pad: clamp(14px, 2vw, 24px);
  --overlay-fg: #fff;
  --overlay-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Card container: keep radius + clip so overlay respects rounded edges */
.collection-card{
  position: relative;
  border-radius: var(--card-radius);
  overflow: clip; /* use 'hidden' if clip isn't supported in an older browser */
  background: #000; /* avoids flashes while image loads */
}

/* Media: keep your existing scaling; these ensure no gaps */
.collection-card .card-media{ block-size: auto; }
.collection-card .card-media img{
  display: block;
  inline-size: 100%;
  block-size: auto;         /* preserves your current responsive scaling */
  object-fit: cover;        /* safe if you later set a fixed height/ratio */
}

/* === Right-side overlay panel (desktop/tablet) === */
.collection-card .card-overlay{
  position: absolute;
  inset: 0 0 0 auto;        /* anchor to the right edge */
  inline-size: var(--overlay-w);
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* push content toward bottom for drama */
  gap: .6rem;
  padding: var(--overlay-pad);
  color: var(--overlay-fg);
  z-index: 2;
  /* readable but still shows image */
  background:
    linear-gradient(270deg,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.55) 40%,
      rgba(0,0,0,0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--overlay-shadow);
  box-sizing: border-box;
}

/* Typographic polish inside overlay */
.card-overlay h3{
  margin: 0 0 .25rem;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.2;
}
.card-overlay p{
  margin: 0 0 .6rem;
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.4;
  color: rgba(255,255,255,.9);
}

/* Button style hook (adjust to your site’s button classes) */
.card-overlay .btn{
  align-self: flex-start;
  text-decoration: none;
  padding: .6rem .9rem;
  border-radius: 888px;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  background: rgba(255,255,255,.06);
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.card-overlay .btn:hover,
.card-overlay .btn:focus-visible{
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

/* === Mobile: turn overlay into a bottom band spanning full width === */
@media (max-width: 760px){
  .collection-card .card-overlay{
    inset: auto 0 0 0;      /* bottom, full width */
    inline-size: auto;
    min-block-size: 34%;    /* band height; tweak to taste */
    justify-content: flex-start;
    padding-block: clamp(10px, 2.5vw, 16px);
    background:
      linear-gradient(0deg,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.55) 55%,
        rgba(0,0,0,0) 100%);
  }
}


 :root{
  /* height of your sticky site header; tweak if needed */
  --header-h: 64px;
}

/* Ensure anchor jumps don’t hide content behind the sticky header */
section[id]{
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Sticky “section banner” look for h1s inside each section */
.section-banner{
  position: sticky;
  top: var(--header-h);
  z-index: 6;
  text-align: center;
  margin: 0 0 .75rem;
  padding: .65rem  1rem;
  font: 600 clamp(20px, 4vw, 28px) "Playfair Display", serif;
  background:
    linear-gradient(180deg, rgba(10,12,16,.92), rgba(10,12,16,.82));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(5px) saturate(130%);
}

 
 
 
 
 /* Base gallery tiles */
.image-gallery .gallery-item{
  position: relative;
  overflow: clip;            /* keeps corners clean under radius */
  border-radius: 14px;
  background: #000;
}

/* Make images clickable via the whole tile if you like (optional) */
.image-gallery .gallery-item a.thumb{
  display: block;
}

/* The round overlay “>” button */
.image-gallery .goto{
  position: absolute;
  right: 10px;
  bottom: 10px;
  inline-size: 44px;
  block-size: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(4px);
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.image-gallery .goto:hover,
.image-gallery .goto:focus-visible{
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

/* Optional: reveal-on-hover cue */
.image-gallery .gallery-item:hover .goto{
  transform: translateY(-2px);
}

 
 
 
 
 
 
 
 
 