/* ── Heath Satow Sculpture — shared styles ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #001b31;
  --dark:  #001b31;
  --mid:   #001b31;
  --text:  #cccccc;
  --muted: #767676;
  --white: #fafafa;
  --red:   #1e476e;
  --gold:  #c9a84c;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', 'Poppins', sans-serif;
  --nav-h: 80px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: var(--nav-h);
  background: rgba(0,25,45,0.7);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-brand img {
  height: 52px;
  width: auto;
}

.nav-brand-name {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,239,232,0.75);
  transition: color 0.4s;
}
.nav-links a:hover { color: var(--white); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-links a { display: block; padding: 1rem 2rem; }
}

@media (max-width: 390px) {
  .nav-brand-name { display: none; }
}

/* ── PAGE BODY OFFSET ── */
main { padding-top: var(--nav-h); }

/* ── FOOTER ── */
footer.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1rem;
  margin-top: 1rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.footer-copy a { color: var(--muted); }
.footer-copy a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--muted);
  font-size: 1.1rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }

/* SVG icon helpers */
.icon { width: 18px; height: 18px; fill: currentColor; vertical-align: middle; }

/* ── HERO (index only) ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 5vw 33vh;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images2/HERO_COVER2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 1s;
}

.hero-content { position: relative; z-index: 1; }

.hero-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-end;
}

.hero-links a {
  text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 40px rgba(255,255,255,0.4), 0 0 100px rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--dark);
  line-height: 1.1;
  transition: color 0.2s;
}
.hero-links a:hover { color: #ffffff; }

/* ── PAGE TITLE ── */
.page-title {
  text-align: center;
  padding: 1rem 1rem 2rem;
}

.page-title h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}

.sculpture-video {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
  aspect-ratio: 16/9;
}

.sculpture-video iframe {
  width: 100%;
  height: 100%;
}

/* ── PORTFOLIO GRID ── */
.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-item img {
  border-radius: 4px;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: opacity 0.3s, transform 0.4s;
}
.portfolio-item a:hover img {
  opacity: 0.8;
  transform: scale(1.02);
}
.portfolio-item { overflow: hidden; }

/* ── SCULPTURE PAGE ── */
.sculpture-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem 1rem 3.5rem;
  text-align: left;
}

.sculpture-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.sculpture-header p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
  text-align: left;
}

.sculpture-images {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sculpture-images img {
  border-radius: 8px;
  width: 100%;
  display: block;
}

/* ── ABOUT PAGE ── */
.about-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

@media (max-width: 640px) {
  .about-intro { grid-template-columns: 1fr; }
}

.about-intro img {
    border-radius: 6px;
    width: 100%;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  padding-top: 0rem;
}

.about-body {
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 0 2rem;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.6;
}

.about-body p + p { margin-top: 1.25rem; }

.about-images {
  overflow: hidden;
  max-width: 1000px;
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-images img {
  border-radius: 8px;
  display: block;
}
.contact-wrap {
      max-width: 600px;
      margin: 0 auto;
      padding: 1rem 1rem 2rem;
    }

    .contact-wrap h1 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(2rem, 5vw, 3.5rem);
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--white);
      text-align: center;
      margin-bottom: 3rem;
    }

    .contact-block {
      margin-bottom: 2.5rem;
    }

    .contact-block h2 {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    .contact-block p,
    .contact-block address {
      font-style: normal;
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.8;
    }

    .contact-block a {
      color: var(--white);
      transition: color 0.2s;
    }

    .contact-block a:hover {
      color: var(--muted);
    }

.index-name {
  font-family: var(--font-body);
  font-weight: 300;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: var(--text);
  line-height: 2;
  align-items: flex-end;
}
  
