


/* ===== Minimal dark theme: charcoal / cream / gray ===== */

/* Reset & base */
*,*::before,*::after{ box-sizing:border-box; }
html:focus-within{ scroll-behavior:smooth; }
img,svg,video{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
a:visited{ color:inherit; } /* kill purple visited */
a:focus-visible,button:focus-visible{ outline:2px solid #f2ede3; outline-offset:2px; }
@media (prefers-reduced-motion:reduce){
  *{ animation:none!important; transition:none!important; scroll-behavior:auto!important; }
}

/* Theme tokens */
:root{
  --bg:#1a1a1a;            /* charcoal */
  --text:#f2ede3;          /* cream */
  --muted:#b9b4a9;         /* muted cream/gray */
  --line:rgba(255,255,255,.16);
  --btn-bg:#f2ede3;        /* cream button */
  --btn-text:#1a1a1a;      /* charcoal text on button */
  --btn-hover:#e8e1d3;
  --radius:12px;

  --space-1:.25rem; --space-2:.5rem; --space-3:.75rem; --space-4:1rem;
  --space-6:1.5rem; --space-8:2rem; --space-10:2.75rem; --space-12:3.5rem;
}


/* Typography */
body{
  margin:0;
  background:var(--bg);
  color:var(--text);

font-family: 'Poppins', system-ui, sans-serif;

  line-height:1.5;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1,h2,h3{ margin:0 0 .6em; font-weight:800; letter-spacing:-.02em; }
.site-title{ font-size: clamp(2.2rem, 4vw + 1.2rem, 4rem); line-height:1.05; }
p{ margin:0 0 1.25em; color:var(--muted); }

/* Layout (no rectangles/panels) */
.wrap{ padding: clamp(1.25rem, 4vw, 4rem); }
.hero{
  max-width: 980px;
  margin: clamp(3rem, 8vw, 8rem) auto clamp(3rem, 8vw, 8rem);
  text-align:left;
}

/* Header / Nav */
.site-header{
  position:sticky; top:0; z-index:10;
  background: linear-gradient(to bottom, rgba(26,26,26,0.9), rgba(26,26,26,0));
  backdrop-filter: saturate(120%) blur(4px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding:.9rem clamp(1rem, 4vw, 2rem);
}
.brand{ font-weight:900; }
.nav-toggle{
  display:none; background:transparent; color:var(--text);
  border:1px solid var(--line); padding:.5rem .75rem; border-radius:10px;
}
.nav-links{ display:flex; gap:1rem; }
.nav-links a{ color:var(--muted); }
.nav-links a:hover{ color:var(--text); }

@media (max-width: 720px){
  .nav-toggle{ display:inline-flex; }
  .nav-links{ display:none; position:absolute; right:1rem; top:3.25rem; background:#141414; border:1px solid var(--line); border-radius:10px; padding:.5rem; flex-direction:column; min-width: 12rem; }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:.5rem .75rem; border-radius:8px; }
  .nav-links a:hover{ background:rgba(255,255,255,.06); color:var(--text); }
}

/* Lead paragraph */
.lead{ max-width: 70ch; font-size: clamp(1.05rem, .6vw + 1rem, 1.25rem); }

/* Buttons */
.button-row{ display:flex; flex-wrap:wrap; gap: var(--space-3); margin: var(--space-6) 0 var(--space-3); }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height: 2.8rem; padding: 0 1.2rem;
  border-radius: 999px; border:1px solid transparent;
  font-weight: 800; letter-spacing:.2px; font-size: .98rem;
  transition: transform .12s ease, background .15s ease, opacity .15s ease;
}
.btn--primary{ background: var(--btn-bg); color: var(--btn-text); }
.btn--primary:hover{ background: var(--btn-hover); transform: translateY(-1px); }
.btn--ghost{ background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover{ background: rgba(255,255,255,.06); }

/* Quiet links under buttons */
.meta-links{ color: var(--muted); font-size: .95rem; }
.meta-links .link{ border-bottom:1px solid transparent; }
.meta-links .link:hover{ border-bottom-color: var(--muted); }

/* Social (quiet pills) */
.social{ display:flex; gap: .9rem; margin-top: var(--space-6); flex-wrap: wrap; }
.social .social-btn{
  color: var(--muted);
  border:1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .75rem;
  font-size: .92rem;
}
.social .social-btn:hover{ color: var(--text); background: rgba(255,255,255,.06); }

/* Footer */
.foot{
  border-top:1px solid var(--line);
  text-align:center;
  padding: var(--space-8) 1rem;
  color: var(--muted);
  font-size:.9rem;
}
/* Put hero at the TOP and centered */
.wrap--center{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start; /* push upward */
  min-height:100vh;
  padding-top:6rem;          /* breathing room from the very top */
}
/* Center the hero and actions */
.hero--minimal{
  text-align:center;
  margin: clamp(4rem, 8vw, 8rem) auto;
  width:min(860px,92%);
}
.actions{
  display:flex; gap:1.25rem; flex-wrap:wrap; justify-content:center;
  margin-top:1rem;
}

/* Text-link CTAs (replacing buttons) */
.action-link{
  font-weight:800;
  font-size:1rem;
  color:var(--text);
  border-bottom:2px solid var(--text);
  padding-bottom:2px;
}
.action-link:hover{ opacity:.85; }
/* --- Stack the artist line under the name --- */
.site-title {
  display: block;
  font-size: clamp(2.2rem, 4vw + 1rem, 4rem);
  font-weight: 900;
  margin-bottom: 0.1em;
}

.artist-sub {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 1.2em;
}
/* --- Stack "The Artist" under "Summer Murray" --- */
.hero--minimal {
  text-align: center;
}

.site-title {
  display: block;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  margin-bottom: 0.2em;
  line-height: 1.05;
}

.artist-sub {
  display: block;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 2rem);
  font-weight: 400;
  color: var(--muted);
  margin-top: -0.3em;
  margin-bottom: 1.2em;
}
/* --- Keep natural capitalization for titles --- */
.site-title,
.artist-sub {
  text-transform: none;   /* keeps capitalization exactly as typed */
  letter-spacing: normal; /* resets any wide spacing */
}
/* --- Contact section --- */
.contact {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1rem;
}

.contact a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.contact a:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}
.site-logo {
  display: block;
  max-width: 300px; /* adjust this number if you want it smaller/larger */
  margin: 2rem auto; /* centers it horizontally */
  height: auto;
}
/* Hide the blurb on the homepage */
.hero--minimal .lead{
  display:none;
}

/* Center and style the action links as clean buttons (no underline) */
.actions{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:.75rem; margin-top:1.25rem;
}
.action-link{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:9.5rem; height:2.8rem; padding:0 1.1rem;
  border:1px solid var(--line); border-radius:14px;
  background:transparent; color:var(--text);
  font-weight:700; font-size:1rem; text-decoration:none;
  position:relative; overflow:hidden; transition:background .15s, border-color .15s, transform .12s;
}
/* kill any old underline rules */
.action-link{ border-bottom:none !important; }

.action-link:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.25);
  transform:translateY(-1px);
}

/* subtle halftone hover, very light */
.action-link::before{
  content:""; position:absolute; inset:0; opacity:0; pointer-events:none;
  background-image: radial-gradient(currentColor 20%, transparent 21%);
  background-size:6px 6px;
}
.action-link:hover::before{ opacity:.12; }
.sizes{list-style:none;margin:.5rem 0 0;padding:0;color:var(--muted);font-size:.95rem}
.sizes li{display:inline}
.sizes li+li::before{content:" Â· "}
/* simple 2-col grid */
.grid{display:grid;gap:1rem;grid-template-columns:repeat(auto-fill,minmax(240px,1fr))}
.card img{width:100%;height:auto;display:block;border-radius:.25rem}
.card-body{margin:.5rem 0 0;font-weight:600}
.muted{color:#9aa0a6;font-size:.9rem}
.site-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  border-top: 1px solid #333;
  padding: 1.5rem 1rem;
  margin-top: 3rem;
}
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  text-align: center;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  padding: 1rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.card img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.card img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.card-body {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #eee;
}
.fab-back{
  position:fixed; right:16px; bottom:16px;
  background:#111; color:#eee; text-decoration:none;
  border:1px solid #333; border-radius:999px;
  padding:10px 14px; font-weight:600; letter-spacing:.2px;
  box-shadow:0 4px 14px rgba(0,0,0,.35);
  opacity:.9; transition:transform .2s ease, opacity .2s ease;
  z-index:1000;
}

.fab-back:hover{ transform:translateY(-2px); opacity:1; }
@media (prefers-reduced-motion: reduce){ .fab-back{ transition:none; } }
/* light tile for transparent logos */
.card--logo {
  background: #fff;              /* simple white tile */
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 16px;
}

/* (optional) subtle checker instead of solid white) */
.card--logo.is-checker {
  background:
    linear-gradient(45deg, #f2f2f2 25%, transparent 25%) 0 0/16px 16px,
    linear-gradient(45deg, transparent 75%, #f2f2f2 75%) 0 0/16px 16px,
    #ffffff;
}

/* make logos scale nicely inside tiles */
.card--logo img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.25)); /* gentle lift */
}
.fab-back{
  position:fixed; right:16px; bottom:16px;
  background:#111; color:#eee; text-decoration:none;
  border:1px solid #333; border-radius:999px;
  padding:10px 14px; font-weight:600; letter-spacing:.2px;
  box-shadow:0 4px 14px rgba(0,0,0,.35);
  opacity:.9; transition:transform .2s ease, opacity .2s ease;
  z-index:1000;
}
.fab-back:hover{ transform:translateY(-2px); opacity:1; }
@media (prefers-reduced-motion: reduce){ .fab-back{ transition:none; } }

/* --- Portfolio grid + cards --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

/* each tile */
.card {
  background: #1c1c1c;             /* matches your dark look */
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.35); }

/* image area */
.card .thumb {
  background:#101010;              /* default dark */
  aspect-ratio: 1 / 1;             /* nice square tiles */
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: contain;              /* never stretches your art */
  display:block;
}

/* make logos visible on dark by giving the thumb a light pad */
.thumb--light { background:#f3f3f3; }

/* text block like your Shop */
.card-body { padding: .9rem 1rem 1.05rem; }
.card h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem; line-height: 1.25;
}
.card .muted {
  color:#bdbdbd;
  font-size:.9rem; line-height:1.3;
}

/* optional: gentle zoom on hover (just the picture) */
.card:hover img { transform: scale(1.03); transition: transform .2s ease; }

/* floating back button (re-usable) */
.quick-nav {
  position: fixed; right: 14px; bottom: 14px; z-index: 9999;
}
.quick-nav a {
  background:#222; color:#eee; border:1px solid #2a2a2a;
  padding:.6rem .9rem; border-radius:10px; text-decoration:none;
  box-shadow:0 3px 10px rgba(0,0,0,.35);
}
.quick-nav a:hover{ background:#272727 }

/* ¡ª Floating pill nav ¡ª */
.float-nav{
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
}
.fab{
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: 999px;
  background: rgba(30,30,30,.9);
  color: #fff;
  border: 1px solid #3a3a3a;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}
.fab:hover{ transform: translateY(-2px); }
/* --- Safari fix: ensure shop card text renders and isn't covered by the image --- */
.card{ 
  position: relative; 
  display: flex;            /* stack image then content */
  flex-direction: column; 
  overflow: hidden;
  background: #1f1f1f;      /* dark card surface */
}

.card img{
  display: block;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  z-index: 0;               /* image behind text block */
}

.card-body{
  position: relative;
  z-index: 1;               /* sit above the image in weird WebKit layers */
  display: block;
  padding: 16px 18px;
  color: #e9e2d6;           /* your light ink color */
  line-height: 1.4;
  background: #1f1f1f;      /* make sure text isn't ¡°on¡± the image */
}

.card-body .muted{ 
  color: #bdb6aa; 
}

/* If you added a hover scale on the whole .card, keep it gentle so WebKit doesn't drop text */
.card:hover{
  transform: translateZ(0) scale(1.01);
  will-change: transform;   /* hint for Safari painting */
}
/* Floating menu */
.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: #222;
  color: #eee;
  font-size: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
  cursor: pointer;
  z-index: 9999;
}
.fab-menu {
  position: fixed;
  bottom: 80px;
  right: 16px;
  background: rgba(22, 22, 22, 0.97);
  border-radius: 10px;
  padding: 8px 0;
  display: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
  z-index: 9999;
}
.fab-menu.open { display: block; }

.fab-menu ul { list-style: none; margin: 0; padding: 0; }
.fab-menu li a {
  display: block;
  padding: 10px 16px;
  color: #eee;
  text-decoration: none;
  font-weight: 600;
}
.fab-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
}
/* ===== Floating site menu ===== */
.fab{position:fixed;right:16px;bottom:16px;width:52px;height:52px;border:0;border-radius:26px;cursor:pointer;background:#2b2b2b;color:#fff;box-shadow:0 6px 18px rgba(0,0,0,.35);display:flex;align-items:center;justify-content:center;z-index:9999}
.fab:focus{outline:2px solid #7bd4ff;outline-offset:2px}
.fab::before{content:"¡Ô";font-size:26px;line-height:1;transform:translateY(-1px)}
.fab.open::before{content:"¡Á";font-size:28px}

.fab-menu{position:fixed;right:16px;bottom:80px;opacity:0;pointer-events:none;transform:translateY(10px);transition:.2s ease;z-index:9999}
.fab-menu.open{opacity:1;pointer-events:auto;transform:translateY(0)}
.fab-menu ul{list-style:none;margin:0;padding:0;background:#1e1e1e;border-radius:14px;box-shadow:0 10px 26px rgba(0,0,0,.35);overflow:hidden;min-width:160px}
.fab-menu li+li{border-top:1px solid rgba(255,255,255,.06)}
.fab-menu a{display:block;padding:12px 16px;color:#fff;text-decoration:none;font-weight:600}
.fab-menu a:hover{background:#2d2d2d}
@media (hover:none){.fab-menu a:hover{background:#1e1e1e}}
/* ===== /Floating site menu ===== */
/* === Floating menu (FAB) === */
.fab{
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 52px; height: 52px;
  border: 0; border-radius: 9999px;
  display: grid; place-items: center;
  font: inherit; cursor: pointer;
  background: rgba(255,255,255,.08);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  z-index: 9999;
}
.fab::before{ content:"¡Ô"; font-size: 22px; line-height: 1; }
.fab.open::before{ content:"¡Á"; }

.fab-menu{
  position: fixed;
  right: 1rem;
  bottom: 4.25rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: .5rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  opacity: 0; transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 9998;
}
.fab-menu.open{ opacity: 1; transform: none; pointer-events: auto; }

.fab-menu ul{ list-style: none; margin: 0; padding: 0; }
.fab-menu li{ margin: 0; }
.fab-menu a{
  display: block;
  padding: .6rem 1rem;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}
.fab-menu a:hover,
.fab-menu a:focus{ background: rgba(255,255,255,.08); outline: none; }
/* --- Portfolio page styling --- */

.page-header {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.page-title {
  font-size: clamp(2.5rem, 3vw + 1rem, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.portfolio-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pill {
  padding: 0.6rem 1.2rem;
  border: 2px solid #111;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  transition: all 0.25s ease;
}

.pill:hover {
  background: #111;
  color: #fff;
}