/* ===========================================================================
   Patti Wessman · Glass Artist — styles
   A light, luminous, frosted-glass aesthetic. Cormorant Garamond (display)
   + Inter (UI). Glass tiles are generated from each piece's accent colors.
   =========================================================================== */

:root {
  /* Palette — sea glass, warm light, and the logo's bronze + cobalt */
  --ink:        #15302d;   /* deep teal-charcoal text */
  --ink-soft:   #586a64;
  --bg:         #f6f2ea;   /* warm paper */
  --bg-alt:     #efeae0;
  --surface:    #fffdf8;
  --line:       rgba(20, 48, 47, 0.11);

  --teal:       #2a8f86;
  --teal-deep:  #184f52;
  --amber:      #b98a48;   /* bronze/gold — matches the logo's metal */
  --amber-deep: #8a6430;
  --rose:       #cf6f6a;
  --cobalt:     #3a5f9e;

  --accent:     var(--teal);

  --maxw: 1160px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -28px rgba(20, 48, 47, 0.40);
  --shadow-sm: 0 10px 26px -18px rgba(20, 48, 47, 0.5);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Fine film grain for depth — a print-like, gallery feel */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Decorative background washes ===== */
.aura {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.aura__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.aura__blob--teal  { width: 46vw; height: 46vw; top: -12vw; right: -8vw; background: radial-gradient(circle, rgba(42,157,143,0.55), transparent 70%); }
.aura__blob--amber { width: 40vw; height: 40vw; top: 38vh; left: -14vw; background: radial-gradient(circle, rgba(216,162,58,0.40), transparent 70%); }
.aura__blob--rose  { width: 34vw; height: 34vw; bottom: -10vw; right: 6vw; background: radial-gradient(circle, rgba(231,111,122,0.32), transparent 70%); }

/* ===== Typography helpers ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow--light { color: rgba(255,255,255,0.8); }
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(216,162,58,0.22);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.section__title--light { color: #fff; }
.section__lead {
  max-width: 56ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn--sm { padding: 9px 19px; font-size: 0.88rem; }
.btn--lg { padding: 15px 32px; font-size: 1rem; }

/* Solid: a glassy teal with a gold-lit edge — echoes the logo's metal + glass */
.btn--solid {
  background: linear-gradient(135deg, #2f9a90 0%, var(--teal-deep) 100%);
  color: #fff;
  box-shadow:
    0 12px 28px -14px rgba(20, 79, 82, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  border-color: rgba(185, 138, 72, 0.35);
}
/* a slow light-sweep across the glass on hover */
.btn--solid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px -16px rgba(20, 79, 82, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  border-color: rgba(185, 138, 72, 0.6);
}
.btn--solid:hover::after { transform: translateX(120%); }

.btn--outline {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.04);
}
.btn--outline:hover {
  background: var(--teal-deep);
  color: #fff;
  transform: translateY(-2px);
  border-color: var(--teal-deep);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-deep); }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 238, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark {
  width: 46px;
  height: 46px;
  display: block;
  flex: none;
  filter: drop-shadow(0 2px 5px rgba(20, 48, 47, 0.22));
}
.brand__word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}
.brand__sub {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-left: 9px;
  vertical-align: middle;
}
.brand--light, .brand--light .brand__word { color: #fff; }
.brand--light .brand__sub { color: rgba(255,255,255,0.7); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links .btn--solid { color: #fff; letter-spacing: 0.02em; }
.nav__links .btn--ghost { color: var(--ink); }

/* Work dropdown: Available now (current) + Past work (archive) */
.nav__drop { position: relative; }
.nav__droptrigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav__drop:hover .nav__droptrigger,
.nav__droptrigger[aria-expanded="true"] { color: var(--ink); }
.nav__caret { width: 10px; height: 10px; flex: none; margin-top: 1px; transition: transform 0.18s ease; }
.nav__drop:hover .nav__caret,
.nav__droptrigger[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }
.nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 232px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(252, 251, 247, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 60;
}
.nav__menu::before { /* invisible bridge so hover survives the gap */
  content: "";
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.nav__drop:hover .nav__menu,
.nav__menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__menu a {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav__menu a span {
  font-weight: 500;
  font-size: 0.74rem;
  color: var(--ink-soft);
}
.nav__menu a:hover {
  background: rgba(42, 143, 134, 0.1);
  color: var(--ink);
}

/* ===== HERO ===== */
.hero { padding: clamp(48px, 9vw, 110px) 0 clamp(40px, 7vw, 90px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__artcol { display: flex; flex-direction: column; }
.hero__eyebrow { margin: 20px 0 0; justify-content: center; text-align: center; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.9rem, 7.5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}
.hero__title em {
  font-style: italic;
  color: var(--teal-deep);
}
.hero__sub {
  max-width: 46ch;
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust {
  margin: 26px 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 500;
}
.hero__trust a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(24, 79, 82, 0.4);
  transition: color 0.15s ease;
}
.hero__trust a:hover { color: var(--ink); }

/* Rotating hero showcase of featured work */
.hero__art { display: grid; place-items: center; }
.showcase {
  position: relative;
  margin: 0;
  width: min(460px, 90vw);
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #0d2826;
  box-shadow: 0 44px 90px -40px rgba(20, 48, 47, 0.62);
  outline: 1px solid rgba(185, 138, 72, 0.55);
  outline-offset: -1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.showcase:hover,
.showcase:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 54px 100px -42px rgba(20, 48, 47, 0.7);
  outline-color: rgba(185, 138, 72, 0.9);
}
.showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.showcase__img.is-active { opacity: 1; }
.showcase__sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 38%);
  mix-blend-mode: screen;
}
.showcase__hint {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.showcase:hover .showcase__hint,
.showcase:focus-visible .showcase__hint { opacity: 1; transform: none; }
.showcase__stage { position: absolute; inset: 0; cursor: pointer; }
.showcase__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 40px 20px 30px;
  background: linear-gradient(to top, rgba(11, 38, 36, 0.85), rgba(11, 38, 36, 0.22) 68%, transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.showcase__cap strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.1;
}
.showcase__cap span { font-size: 0.84rem; opacity: 0.85; }

/* Showcase slider controls */
.showcase__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(15, 40, 38, 0.42);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
  opacity: 0.85;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.showcase__nav:hover { background: rgba(15, 40, 38, 0.72); opacity: 1; }
.showcase__nav--prev { left: 12px; }
.showcase__nav--next { right: 12px; }
.showcase__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 7px;
  justify-content: center;
}
.showcase__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.showcase__dot:hover { background: rgba(255, 255, 255, 0.85); }
.showcase__dot.is-active { background: var(--amber); transform: scale(1.25); }

/* ===== SECTIONS ===== */
.section { padding: clamp(56px, 9vw, 110px) 0; }
/* section delineator — a content-width hairline, matching the site's borders */
.section-rule {
  border: 0;
  height: 1px;
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
  background: var(--line);
}
.section--alt {
  background: linear-gradient(180deg, rgba(238,240,234,0.7), rgba(246,244,238,0.4));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* "Available now" — the for-sale section, set apart with a fresh green wash. */
.section--sale {
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(47,158,95,0.12), transparent 60%),
    linear-gradient(180deg, rgba(47,158,95,0.07), rgba(246,244,238,0));
  border-top: 1px solid var(--line);
}
.eyebrow--sale { color: #1c6b52; }
.eyebrow--sale .dot {
  background: #2f9e5f;
  box-shadow: 0 0 0 4px rgba(47,158,95,0.22);
}
/* Give the for-sale cards a quiet green ring so they read as "buy me". */
.gallery--sale .card { box-shadow: 0 0 0 1.5px rgba(47,158,95,0.32), var(--shadow); }
.gallery--sale .card:hover {
  box-shadow: 0 0 0 1.5px rgba(47,158,95,0.5), 0 30px 60px -28px rgba(20,48,47,0.55);
}

/* Home contact band — full-bleed, compact strip that ends the home page */
.contact-band {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(40px, 6vw, 66px) 0;
  background:
    radial-gradient(60% 90% at 12% 12%, rgba(58, 95, 158, 0.5), transparent 60%),
    radial-gradient(60% 90% at 88% 92%, rgba(42, 160, 148, 0.55), transparent 60%),
    linear-gradient(150deg, #0b2a2b, #103a39 55%, #144a4d);
}
.contact-band__inner { max-width: 760px; }
.contact-band__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.08;
  color: #fff;
  margin: 10px 0 14px;
}
.contact-band__lead {
  max-width: 56ch;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.85);
}
.contact-band__email { margin: 18px 0 0; }
.contact-band__email a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.contact-band__email a:hover { text-decoration-color: #fff; }
.contact-band__note { margin: 6px 0 0; color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }
.section__head { max-width: 60ch; margin-bottom: 40px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }

/* ===== FILTERS ===== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.chip {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: rgba(255,255,255,0.6);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.16s ease;
}
.chip:hover { border-color: var(--teal); color: var(--teal-deep); }
.chip[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ===== GALLERY GRID ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 22px;
}
.card {
  position: relative;
  display: block;
  text-align: left;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  font-family: inherit;
  color: inherit;
  text-decoration: none;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -28px rgba(20,48,47,0.55); }
.card:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.card--featured { grid-row: span 1; }

.card__tile {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.card__img { width: 100%; height: 100%; object-fit: cover; }
.card__glass {
  position: absolute;
  inset: 0;
}
.card__glass::after { /* glossy highlight */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 38%),
    radial-gradient(120% 80% at 80% 10%, rgba(255,255,255,0.35), transparent 50%);
  mix-blend-mode: screen;
}
.card__tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  padding: 5px 11px;
  border-radius: 999px;
}
.card__count {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(20, 48, 47, 0.5);
  backdrop-filter: blur(5px);
  padding: 4px 9px;
  border-radius: 999px;
}
.card__format {
  position: absolute;
  top: 44px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 48, 47, 0.6);
  backdrop-filter: blur(5px);
  padding: 5px 11px;
  border-radius: 999px;
}
.card__format::before { content: "⤓"; font-size: 0.8rem; line-height: 1; }
.card__eco {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.92rem;
  color: #fff;
  background: rgba(28, 107, 82, 0.88);
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}
.lb__eco {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #1c6b52;
  background: rgba(28, 107, 82, 0.12);
  padding: 5px 12px;
  border-radius: 999px;
}
.card__body {
  padding: 16px 18px 20px;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 4px;
}
.card__meta {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 0;
}
.card__commission {
  margin: 6px 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.card__sale {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1c6b52;
  background: rgba(28, 107, 82, 0.12);
  padding: 4px 11px;
  border-radius: 999px;
}
.card__sale::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f9e5f;
}

/* Featured pieces span two columns with a wider crop */
.card--featured { grid-column: span 2; }
.card--featured .card__tile { aspect-ratio: 16 / 9; }
.card--featured .card__title { font-size: 1.75rem; }

/* ===== COMMISSIONS ===== */
.commission__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: center;
}
.commission__list {
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.commission__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--ink);
}
.commission__ic { color: var(--amber-deep); font-size: 0.7rem; }

.commission__clients {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 30px 14px;
  box-shadow: var(--shadow);
}
.commission__clients-label {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.commission__clients ul { list-style: none; margin: 0; padding: 0; }
.commission__clients li {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.commission__clients li:first-child { border-top: none; }
.commission__clients strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
}
.commission__clients span { font-size: 0.84rem; color: var(--ink-soft); }
.commission__clients a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
.commission__clients a:hover { color: var(--teal-deep); }
.commission__clients a {
  border-bottom: 1px solid rgba(24, 79, 82, 0.28);
}

/* Selected commissioned work — example pieces below the commissions pitch */
.commission__examples { margin-top: clamp(40px, 6vw, 64px); }
.commission__examples-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 4px;
}
.commission__examples-sub {
  color: var(--ink-soft);
  margin: 0 0 26px;
}

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.portrait__glass {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #bfe9e4, #2a9d8f 45%, #1d5e63),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.5), transparent 50%);
  background-blend-mode: screen;
}
.portrait__initials {
  position: relative;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
}
/* Real portrait photo: shown at its natural ratio, replacing the fallback tile */
.portrait__img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.portrait.has-photo {
  aspect-ratio: auto;
  box-shadow: none;
  border-radius: 0;
  display: block;
}
.portrait.has-photo .portrait__glass,
.portrait.has-photo .portrait__initials { display: none; }

.portrait__cap { margin: 16px 2px 0; }
.portrait__cap strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--ink);
}
.portrait__cap span {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.about__text p { color: var(--ink-soft); font-size: 1.06rem; }
.about__text p + p { margin-top: 1em; }
.about__quote {
  margin: 0 0 22px;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--amber);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
}
.about__bio {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.about__bio p { font-size: 0.98rem; }

/* ===== CONTACT ===== */
.contact {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius-lg);
  max-width: var(--maxw);
  margin: 0 auto clamp(48px, 8vw, 96px);
  width: calc(100% - 48px);
  background:
    radial-gradient(58% 80% at 12% 16%, rgba(58, 95, 158, 0.55), transparent 60%),
    radial-gradient(54% 70% at 88% 18%, rgba(185, 138, 72, 0.50), transparent 62%),
    radial-gradient(64% 85% at 82% 98%, rgba(42, 160, 148, 0.55), transparent 60%),
    radial-gradient(52% 64% at 22% 102%, rgba(207, 111, 106, 0.34), transparent 60%),
    linear-gradient(150deg, #0b2a2b, #103a39 55%, #144a4d);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
/* faint glass facets over the mesh */
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.05) 0 1.5px, transparent 1.5px 64px),
    repeating-linear-gradient(58deg, rgba(255, 255, 255, 0.035) 0 1.5px, transparent 1.5px 86px);
  mix-blend-mode: screen;
}
.contact__inner { position: relative; z-index: 1; text-align: center; max-width: 60ch; margin: 0 auto; }
.contact__lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin: 0 auto 30px;
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.contact .btn--outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.contact .btn--outline:hover { background: #fff; color: var(--teal-deep); }
.contact__email { margin: 20px 0 0; color: rgba(255, 255, 255, 0.82); font-size: 1rem; }
.contact__email a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}
.contact__email a:hover { color: var(--amber); }
.contact__note { margin-top: 14px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  padding: 72px 0 30px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(238, 240, 234, 0.3), rgba(234, 238, 232, 0.72));
}
/* a thin gradient accent that echoes the logo's metal + glass */
.footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--amber) 50%, var(--cobalt));
  opacity: 0.5;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}
.footer .brand { color: var(--ink); }
.footer .brand__word { color: var(--ink); }
.footer__brand { max-width: 320px; }
.footer__tag {
  margin: 18px 0 0;
  max-width: 30ch;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.35;
}
.footer__cols { display: flex; gap: 72px; flex-wrap: wrap; }
.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 16px;
}
.footer__col a {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--teal-deep); }
.footer__loc {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.footer__bottom p { margin: 0; }
.footer__credit a { color: var(--teal-deep); font-weight: 600; text-decoration: none; }
.footer__credit a:hover { text-decoration: underline; }
.footer__credit strong { color: var(--teal-deep); font-weight: 600; }

/* "g" Studios links, in their various placements */
.about__text a {
  color: var(--teal-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(24, 79, 82, 0.3);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.about__text a:hover { color: var(--ink); border-color: var(--ink); }
.portrait__cap a { color: var(--teal-deep); text-decoration: none; border-bottom: 1px solid rgba(24, 79, 82, 0.35); }
.portrait__cap a:hover { color: var(--ink); }
.contact__note a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.contact__note a:hover { color: #fff; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 43, 46, 0.82);
  backdrop-filter: blur(8px);
  animation: fade 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  max-width: 900px;
  width: 100%;
  max-height: 86vh;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.7);
}
.lb__visual {
  display: flex;
  flex-direction: column;
  background: #102e2c;
}
.lb__stage {
  position: relative;
  flex: 1;
  min-height: 340px;
  display: grid;
}
/* contain so the whole piece is visible at its true proportions */
.lb__img { width: 100%; height: 100%; object-fit: contain; }
.lb__imgnav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
  transition: background 0.15s ease;
}
.lb__imgnav:hover { background: rgba(0, 0, 0, 0.6); }
.lb__imgnav--prev { left: 12px; }
.lb__imgnav--next { right: 12px; }
.lb__count {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  padding: 4px 11px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.lb__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #0c2624;
  overflow-x: auto;
}
.lb__thumb {
  flex: 0 0 auto;
  width: 62px;
  height: 50px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 7px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.55;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.lb__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb__thumb:hover { opacity: 1; }
.lb__thumb.is-active { opacity: 1; border-color: var(--amber); }
.lb__glass { position: absolute; inset: 0; }
.lb__glass::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 40%);
  mix-blend-mode: screen;
}
.lb__detail {
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lb__cat {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-deep); margin: 0 0 12px;
}
.lb__title {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 600; line-height: 1.05; margin: 0 0 6px;
}
.lb__medium { color: var(--ink-soft); font-style: italic; margin: 0 0 18px; font-family: var(--font-display); font-size: 1.2rem; }
.lb__blurb { color: var(--ink-soft); margin: 0 0 20px; }
.lb__specs { display: flex; gap: 26px; border-top: 1px solid var(--line); padding-top: 18px; }
.lb__spec span { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.lb__spec strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.lb__cta { margin-top: 24px; align-self: flex-start; }

.lightbox__close, .lightbox__nav {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, transform 0.15s ease;
  backdrop-filter: blur(6px);
}
.lightbox__close { top: 22px; right: 22px; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; line-height: 1; }
.lightbox__nav--prev { left: 22px; }
.lightbox__nav--next { right: 22px; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.3); }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__artcol { order: -1; }
  .panes { width: min(320px, 78vw); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .card--featured { grid-column: span 2; }
  .card--featured .card__tile { aspect-ratio: 16 / 9; }
  .commission__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__portrait { max-width: 360px; }
  .lightbox__inner { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .lb__stage { min-height: 240px; max-height: 50vh; }
}
@media (max-width: 560px) {
  .nav__links { gap: 16px; }
  .nav__links a:not(.btn) { display: none; }
  .nav__drop { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .card--featured { grid-column: span 1; }
  .card--featured .card__tile { aspect-ratio: 5 / 4; }
  .footer__cols { gap: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
