/*
  W.J. Vickery — Acanthus Collection
  Shared stylesheet — Rev 6
  Changes: spear dividers (replace rope), woodblock arrow styles, real footer,
           about lifestyle image, piece descriptions, no header-rope.
  Palette: bg #000000, text #C5B4A1, muted #8C7F6E, brass #B59461, hairline rgba(197,180,161,0.18)
  Typography: EB Garamond 400/500/600 + italic — ALL elements, no sans-serif
*/

/* ─── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ─── Custom Properties ─────────────────────────────────────────────────────── */
:root {
  --bg:          #000000;
  --bg-panel:    #0A0908;
  --fg:          #C5B4A1;
  --fg-muted:    #8C7F6E;
  --brass:       #B59461;
  --hairline:    rgba(197, 180, 161, 0.18);
  --hover:       #E4D8C6;
  --header-bg:   rgba(0, 0, 0, 0.88);

  --serif:       'EB Garamond', 'Garamond', 'Times New Roman', Georgia, serif;

  --max-w:       1280px;
  --side-pad:    clamp(20px, 5vw, 80px);
  --header-h:    72px;

  --transition:  0.35s ease;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-align: center;
}

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

a { color: inherit; text-decoration: none; }

input, textarea, button, select { font-family: var(--serif); }

/* ─── Header ────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--side-pad);
  background: transparent;
  transition: background var(--transition);
  /* No border-bottom — no line under header */
}

.site-header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-left { display: flex; align-items: center; }

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo a { display: block; line-height: 0; }

.header-logo img {
  height: 28px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.92;
  transition: opacity var(--transition);
}

.header-logo img:hover { opacity: 1; }

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  text-align: left;
}

.header-nav a {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--hover);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.header-nav a:hover { color: var(--hover); }
.header-nav a:hover::after,
.header-nav a.active::after { transform: scaleX(1); }
.header-nav a.active { color: var(--hover); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  color: var(--fg);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--fg);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--fg);
  transition: color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu a:hover { color: var(--hover); }

/* ─── Footer — Vickery Design Limited (Rev 6) ───────────────────────────────── */
.site-footer {
  padding: 56px var(--side-pad) 48px;
  text-align: center;
}

.footer-spear {
  margin-bottom: 40px;
}

.site-footer .footer-brand {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 20px;
}

.site-footer .footer-address {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.site-footer .footer-address strong {
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  display: block;
  margin-bottom: 2px;
}

.site-footer .footer-contact {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.site-footer .footer-contact a {
  color: var(--fg-muted);
  transition: color var(--transition);
}

.site-footer .footer-contact a:hover { color: var(--fg); }

.site-footer .footer-copy {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  text-transform: uppercase;
  font-family: var(--serif);
  opacity: 0.6;
}

/* ─── Page Wrapper ──────────────────────────────────────────────────────────── */
.page-content { padding-top: var(--header-h); }

/* ─── Spear Divider (Rev 6 — replaces rope) ────────────────────────────────── */
/*
  .spear-divider is a <div> wrapper; JS injects the SVG inside.
  Center-out grow animation: scaleX(0) → scaleX(1) on .grown.
*/
.spear-divider {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 10px;
  margin: 44px auto;
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 900ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  line-height: 0;
  font-size: 0;
}

.spear-divider svg {
  display: block;
  width: 100%;
  height: 10px;
  overflow: visible;
}

.spear-divider.grown {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .spear-divider {
    transform: scaleX(1);
    transition: none;
  }
}

/* ─── Diamond separator (small, subtle) ────────────────────────────────────── */
.diamond-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 36px auto;
  height: 14px;
}

.diamond-sep::before {
  content: '◆';
  font-size: 5px;
  color: rgba(197, 180, 161, 0.28);
  display: block;
}

/* ─── Pull-quote / Brand Statement ─────────────────────────────────────────── */
.pull-quote {
  padding: 64px var(--side-pad);
  text-align: center;
}

.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 24px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
  max-width: 760px;
  margin: 0 auto;
  transition: color var(--transition);
}

.pull-quote blockquote:hover { color: var(--fg); }

/* ─── Home: Full-viewport image viewer ──────────────────────────────────────── */
.image-viewer {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: calc(-1 * var(--header-h));
}

.viewer-stage {
  position: relative;
  width: 100%;
  height: 78vh;
  max-height: 820px;
  overflow: hidden;
  flex-shrink: 0;
}

.viewer-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.viewer-slide.active {
  opacity: 1;
  pointer-events: all;
}

.viewer-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.viewer-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 32px var(--side-pad) 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.viewer-caption-name {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.75;
}

/* Diamond strip beneath viewer */
.viewer-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0 12px;
  flex-shrink: 0;
}

.viewer-dot {
  width: 6px;
  height: 6px;
  background: var(--fg);
  opacity: 0.25;
  transform: rotate(45deg);
  cursor: pointer;
  transition: opacity var(--transition);
  border: none;
  padding: 0;
  flex-shrink: 0;
  display: block;
}

.viewer-dot.active { opacity: 0.7; }

/* ─── Viewer arrows — woodblock print style (Rev 6) ────────────────────────── */
/*
  Slightly rough, hand-inked feel: uneven stroke weight, small nicks.
  Left = arrow tail/fletching; Right = arrow head.
  Implemented in inline SVG with fill-based paths for woodcut character.
*/
.viewer-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  opacity: 0.6;
  transition: opacity var(--transition);
  padding: 16px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.viewer-arrow:hover { opacity: 1; }
.viewer-arrow.prev { left: 8px; }
.viewer-arrow.next { right: 8px; }

.viewer-arrow svg {
  width: 38px;
  height: 38px;
  overflow: visible;
}

/* ─── Intro Section ─────────────────────────────────────────────────────────── */
.intro-section {
  padding: 72px var(--side-pad);
  text-align: center;
}

.intro-section .intro-text {
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.03em;
  color: var(--fg);
  max-width: 680px;
  margin: 0 auto 40px;
}

.intro-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.intro-link {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color var(--transition);
}

.intro-link:hover { color: var(--hover); }

/* ─── Page Title Block ──────────────────────────────────────────────────────── */
.page-title-block {
  padding: 72px var(--side-pad) 40px;
  text-align: center;
}

.page-eyebrow { display: none; }

.page-title-block h1 {
  font-family: var(--serif);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 10px;
}

.page-title-block .page-subtitle {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ─── Email Signup Block ────────────────────────────────────────────────────── */
.signup-section {
  padding: 64px var(--side-pad);
  text-align: center;
}

.signup-inner {
  max-width: 480px;
  margin: 0 auto;
}

.signup-heading {
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--fg);
  margin-bottom: 8px;
}

.signup-sub {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 28px;
  font-style: italic;
}

.signup-form {
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-content: center;
}

.signup-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--fg);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 10px 0;
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
  text-align: center;
}

.signup-form input[type="email"]::placeholder {
  color: var(--fg-muted);
  opacity: 0.7;
}

.signup-form input[type="email"]:focus { border-bottom-color: var(--fg); }

.signup-form button {
  background: none;
  border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--fg-muted);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 0 10px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.signup-form button:hover {
  color: var(--hover);
  border-bottom-color: var(--fg);
}

.signup-thankyou {
  display: none;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  padding: 14px 0;
  text-align: center;
}

.signup-thankyou.visible { display: block; }

/* ─── Acanthus Page — piece sections ────────────────────────────────────────── */
.acanthus-intro {
  padding: 48px var(--side-pad) 40px;
  text-align: center;
}

.acanthus-intro p {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Piece group */
.piece-group {
  padding: 0 0 80px;
}

.piece-label {
  text-align: center;
  padding: 48px var(--side-pad) 32px;
}

.piece-label h2 {
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 4px;
}

.piece-label .piece-type {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.piece-label .piece-materials {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.piece-label .piece-dimensions {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  margin-bottom: 0;
}

/* Piece description — shown BELOW the images */
.piece-description {
  text-align: center;
  padding: 32px var(--side-pad) 0;
  max-width: 600px;
  margin: 0 auto;
}

.piece-description p {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 19px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
}

/* Large image block */
.large-img-block {
  width: 100%;
  margin: 0 0 4px;
  background: #000;
  overflow: hidden;
}

.large-img-block.portrait {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(500px, 85vh, 960px);
}

.large-img-block.landscape {
  height: clamp(360px, 55vw, 720px);
}

/* Lifestyle image (light interior) — contained in a frame */
.large-img-block.lifestyle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(400px, 60vh, 720px);
  background: #000;
}

.large-img-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
  transition: filter 0.5s ease;
}

.large-img-block img:hover { filter: brightness(1.06); }

/* ─── About Page ────────────────────────────────────────────────────────────── */
.about-section {
  padding: 56px var(--side-pad) 100px;
  text-align: center;
}

.about-inner {
  max-width: 680px;
  margin: 0 auto;
}

/* About feature image — larger display (Rev 10) */
.about-feature-img {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 48px;
  overflow: hidden;
  background: #000;
}

.about-feature-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.about-body p {
  font-family: var(--serif);
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 24px;
  text-align: center;
}

.about-body p:last-child { margin-bottom: 0; }

.about-note {
  margin-top: 36px;
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
}

/* ─── Contact Page ──────────────────────────────────────────────────────────── */
.contact-section {
  padding: 48px var(--side-pad) 80px;
  text-align: center;
}

.contact-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.contact-lead {
  font-family: var(--serif);
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.6;
  text-align: center;
}

.contact-channels {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  line-height: 2;
  margin-bottom: 40px;
}

.contact-channels a {
  color: var(--fg-muted);
  transition: color var(--transition);
}

.contact-channels a:hover { color: var(--fg); }

.contact-email-link {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--fg);
  margin-bottom: 48px;
  transition: color var(--transition);
}

.contact-email-link:hover { color: var(--hover); }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
  text-align: left;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--fg);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 10px 0;
  outline: none;
  transition: border-color var(--transition);
  resize: none;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--fg); }

.form-field textarea { min-height: 90px; }

.form-submit {
  align-self: center;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--fg);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 12px 32px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.form-submit:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.form-thankyou {
  display: none;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--fg);
  padding: 20px 0;
  text-align: center;
}

.form-thankyou.visible { display: block; }

.contact-note {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-top: 24px;
  font-style: italic;
  text-align: center;
}

/* ─── Fade-in on scroll ─────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --header-h: 60px; }

  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .large-img-block.portrait {
    height: clamp(380px, 80vw, 700px);
  }

  .large-img-block.landscape {
    height: clamp(260px, 55vw, 520px);
  }

  .intro-links { flex-direction: column; gap: 18px; }

  .signup-form { flex-direction: column; gap: 0; }
  .signup-form input[type="email"] {
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 12px;
    margin-bottom: 14px;
  }
  .signup-form button {
    border: none;
    border-bottom: 1px solid var(--hairline);
    padding: 10px 0;
  }

  .contact-form { text-align: left; }

  .spear-divider {
    max-width: 220px;
    margin: 32px auto;
  }
}

@media (max-width: 600px) {
  .image-viewer {
    height: calc(100vh - var(--header-h));
    min-height: 360px;
  }

  .large-img-block.portrait {
    height: clamp(320px, 90vw, 560px);
  }

  .large-img-block.landscape {
    height: clamp(220px, 60vw, 380px);
  }

  .pull-quote blockquote {
    font-size: clamp(15px, 4.5vw, 20px);
  }

  .page-title-block {
    padding: 56px var(--side-pad) 32px;
  }

  .spear-divider {
    max-width: 180px;
    margin: 28px auto;
  }
}

/* ─── Gallery Page ────────────────────────────────────────────────────────────────────────────────────── */
.gallery-section {
  padding: 40px var(--side-pad) 100px;
}

.gallery-note {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/*
  CSS columns masonry — easy to extend: just drop more .gallery-item divs.
  Images use object-fit contain on black so nothing is cropped.
*/
.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  background: #000;
  overflow: hidden;
  display: block;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000;
  transition: filter 0.4s ease;
}

.gallery-item--light {
  background: #f5f3ef; /* warm off-white to complement light-bg photos */
}

.gallery-item--light img {
  background: transparent;
}

@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
}

@media (max-width: 500px) {
  .gallery-grid { columns: 1; }
}

/* ─── Commission Page ─────────────────────────────────────────────────────────────────────────────────── */
.commission-intro {
  padding: 40px var(--side-pad) 48px;
  text-align: center;
}

.commission-intro-inner {
  max-width: 680px;
  margin: 0 auto;
}

.commission-lead {
  font-family: var(--serif);
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--fg);
  margin-bottom: 24px;
  white-space: pre-line; /* preserve user's line breaks */
}

.commission-body {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
}

.commission-section-title {
  font-family: var(--serif);
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg);
  text-align: center;
  margin-bottom: 32px;
}

.commission-services {
  padding: 40px var(--side-pad) 56px;
  text-align: center;
}

.services-list {
  list-style: none;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-list li {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fg);
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}

.services-list li:first-child {
  border-top: 1px solid var(--hairline);
}

.services-detail {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  display: block;
  margin-top: 2px;
}

.commission-work {
  padding: 40px var(--side-pad) 56px;
  text-align: center;
}

.commission-piece {
  max-width: 720px;
  margin: 0 auto 72px;
}

.commission-piece:last-child {
  margin-bottom: 0;
}

.commission-piece-img {
  width: 100%;
  background: #000;
  overflow: hidden;
  margin-bottom: 20px;
}

.commission-piece-img.portrait {
  height: clamp(400px, 60vh, 720px);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.commission-piece-img.landscape {
  height: clamp(280px, 40vw, 520px);
}

.commission-piece-img.square {
  height: clamp(320px, 45vw, 560px);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.commission-piece-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
  display: block;
  transition: filter 0.5s ease;
}

.commission-piece-img img:hover {
  filter: brightness(1.06);
}

.commission-piece-name {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 8px;
}

.commission-piece-desc {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.commission-cta {
  padding: 48px var(--side-pad) 80px;
  text-align: center;
}

.commission-cta-text {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.commission-cta-link {
  display: inline-block;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
  border: 1px solid var(--hairline);
  padding: 14px 36px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  margin-bottom: 24px;
}

.commission-cta-link:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.commission-cta-email {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.commission-cta-email a {
  color: var(--fg-muted);
  transition: color var(--transition);
}

.commission-cta-email a:hover { color: var(--fg); }

/* Commission hero image (below intro text, Rev 10) */
.commission-hero-img {
  width: 100%;
  max-width: 560px;
  margin: 40px auto;
  background: #000;
  overflow: hidden;
}

.commission-hero-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000;
}

/* Social Media section (Rev 13) */
.social-media-section {
  padding: 48px var(--side-pad) 40px;
  text-align: center;
}

.social-media-label {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.social-media-link {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--fg);
  transition: color var(--transition);
  display: inline-block;
}

.social-media-link:hover {
  color: var(--hover);
}

/* Footer plain-text contact (no links) */
.footer-contact {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-top: 8px;
}
.commission-lathework {
  padding: 0 var(--side-pad) 56px;
  text-align: center;
}

.commission-lathework-img {
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
  /* Light background photo — no forced black bg */
}

.commission-lathework-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: filter 0.4s ease;
}

.commission-lathework-img img:hover {
  filter: brightness(1.05);
}
