/* =========================================================
   CHAD SMITH ART — SHARED STYLESHEET
   Palette: Beige #f5f0e8 | Dark Gray #2a2a2a | Red #e22f2f
   Fonts: Playfair Display (display) + Barlow / Barlow Condensed (body/ui)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --beige:       #f5f0e8;
  --beige-dark:  #ede7d9;
  --beige-mid:   #e0d8c8;
  --gray:        #2a2a2a;
  --gray-mid:    #444444;
  --gray-light:  #666666;
  --red:         #e22f2f;
  --red-dark:    #b82424;
  --white:       #ffffff;
  --nav-h:       70px;
  --ease:        cubic-bezier(0.76, 0, 0.24, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Barlow', sans-serif;
  background: #111;
  color: var(--gray);
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ==========================================================
   PAGE REVEAL ANIMATION
   Beige panel covers black body, then slides away on load.
   On nav click it slides back in before the browser navigates.
   ========================================================== */

.page-cover {
  position: fixed;
  inset: 0;
  background: var(--beige);
  z-index: 9000;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.75s var(--ease);
  pointer-events: none;
  will-change: transform;
}
/* Cover slides away after body gets .loaded */
body.loaded .page-cover {
  transform: scaleX(0);
}
/* Cover slides back in for page exit */
.page-cover.exiting {
  transform-origin: right center;
  transform: scaleX(1) !important;
  transition: transform 0.55s var(--ease) !important;
}

/* Content rides in behind the cover */
.site-wrap {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease 0.55s, transform 0.55s ease 0.55s;
  background: var(--beige);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.loaded .site-wrap {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   FLOATING NAVIGATION
   ========================================================== */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.site-nav.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(42,42,42,0.09);
}

/* Brand */
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  z-index: 802;
  gap: 3px;
}
.nav-brand .name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  color: var(--beige);
  transition: color 0.3s ease;
}
.site-nav.scrolled .nav-brand .name { color: var(--gray); }
.nav-brand .sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

/* Desktop nav list */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list li { position: relative; }

/* Shared style for nav links and dropdown triggers */
.nav-list > li > a,
.nav-list > li > .nav-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.88);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  transition: color 0.22s ease;
}
/* Active underline bar */
.nav-list > li > a::after,
.nav-list > li > .nav-btn::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 18px; right: 18px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-list > li > a:hover::after,
.nav-list > li > .nav-btn:hover::after,
.nav-list > li > a.is-active::after,
.nav-list > li > .nav-btn.is-active::after { transform: scaleX(1); }
.nav-list > li > a:hover,
.nav-list > li > .nav-btn:hover,
.nav-list > li > a.is-active,
.nav-list > li > .nav-btn.is-active { color: var(--red); }

/* Scrolled: swap to dark text */
.site-nav.scrolled .nav-list > li > a,
.site-nav.scrolled .nav-list > li > .nav-btn { color: var(--gray-mid); }
.site-nav.scrolled .nav-list > li > a:hover,
.site-nav.scrolled .nav-list > li > .nav-btn:hover,
.site-nav.scrolled .nav-list > li > a.is-active,
.site-nav.scrolled .nav-list > li > .nav-btn.is-active { color: var(--red); }

/* Dropdown caret */
.nav-caret {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.28s var(--ease);
  margin-top: 1px;
}
.nav-list li.dd-open > .nav-btn .nav-caret { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 150px;
  background: var(--beige);
  border-top: 2px solid var(--red);
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 50;
}
.nav-list li.dd-open .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav-dropdown li a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 12px 20px;
  border-bottom: 1px solid var(--beige-mid);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { color: var(--red); padding-left: 26px; }

/* ==========================================================
   HAMBURGER BUTTON
   ========================================================== */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 802;
}
.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--beige);
  transition: width 0.28s ease, transform 0.38s var(--ease), opacity 0.22s ease, background 0.28s ease;
}
.nav-burger span:nth-child(1) { width: 28px; }
.nav-burger span:nth-child(2) { width: 20px; }
.nav-burger span:nth-child(3) { width: 13px; }
.site-nav.scrolled .nav-burger span { background: var(--gray); }

/* Open → X */
.nav-burger.is-open span:nth-child(1) { width: 26px; transform: translateY(7px) rotate(45deg); background: var(--gray); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { width: 26px; transform: translateY(-7px) rotate(-45deg); background: var(--gray); }

/* ==========================================================
   MOBILE MENU OVERLAY
   ========================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 799;
  background: var(--beige);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mob-links { width: 100%; padding: 0 0 40px; }

.mob-links > li {
  border-bottom: 1px solid var(--beige-mid);
  overflow: hidden;
}

/* Slide-up text reveal per item */
.mob-links > li > a,
.mob-links > li > .mob-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--gray);
  padding: 18px 32px;
  transform: translateY(110%);
  transition: transform 0.52s var(--ease), color 0.2s ease;
}
.mobile-menu.is-open .mob-links > li > a,
.mobile-menu.is-open .mob-links > li > .mob-btn { transform: translateY(0); }

/* Stagger delays */
.mobile-menu.is-open .mob-links > li:nth-child(1) > a,
.mobile-menu.is-open .mob-links > li:nth-child(1) > .mob-btn { transition-delay: 0.04s; }
.mobile-menu.is-open .mob-links > li:nth-child(2) > a,
.mobile-menu.is-open .mob-links > li:nth-child(2) > .mob-btn { transition-delay: 0.09s; }
.mobile-menu.is-open .mob-links > li:nth-child(3) > a,
.mobile-menu.is-open .mob-links > li:nth-child(3) > .mob-btn { transition-delay: 0.14s; }

.mob-links > li > a:hover,
.mob-links > li > .mob-btn:hover,
.mob-links > li > a.is-active,
.mob-links > li > .mob-btn.is-active { color: var(--red); }

/* Mobile sub-menu accordion */
.mob-submenu {
  max-height: 0;
  overflow: hidden;
  background: var(--beige-dark);
  transition: max-height 0.38s var(--ease);
}
.mob-submenu.is-open { max-height: 180px; }
.mob-submenu li a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 14px 32px;
  border-top: 1px solid var(--beige-mid);
  text-align: center;
  transition: color 0.2s ease;
}
.mob-submenu li a:hover { color: var(--red); }

/* ==========================================================
   HERO (HOME PAGE)
   ========================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gray);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 72% 38%, rgba(226,47,47,0.11) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 18% 78%, rgba(245,240,232,0.04) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 60px) 60px 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  line-height: 0.93;
  color: var(--beige);
  margin-bottom: 14px;
}
.hero-title em { font-style: italic; color: var(--red); }
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-bottom: 36px;
}
.hero-rule {
  width: 56px; height: 2px;
  background: var(--red);
  margin-bottom: 32px;
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(245,240,232,0.72);
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-video-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #111;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}
.hero-video-wrap iframe {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  border: none;
}

/* ==========================================================
   BUTTONS
   ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: transparent;
  color: var(--red);
}
.btn-outline-light {
  background: transparent;
  color: var(--beige);
  border-color: rgba(245,240,232,0.35);
}
.btn-outline-light:hover {
  border-color: var(--beige);
}
.btn-outline-dark {
  background: transparent;
  color: var(--gray);
  border-color: var(--gray);
}
.btn-outline-dark:hover {
  background: var(--gray);
  color: var(--beige);
}

/* ==========================================================
   INFO STRIP
   ========================================================== */

.info-strip {
  background: var(--gray);
  border-top: 3px solid var(--red);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.info-strip .item { display: flex; flex-direction: column; gap: 4px; }
.info-strip .item .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.info-strip .item .val {
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.82);
}
.info-strip .item .val a { color: rgba(245,240,232,0.82); transition: color 0.2s ease; }
.info-strip .item .val a:hover { color: var(--red); }
.info-sep {
  width: 1px; height: 36px;
  background: rgba(245,240,232,0.14);
  flex-shrink: 0;
}

/* ==========================================================
   GENERIC SECTION
   ========================================================== */

.section {
  padding: 96px 60px;
}
.section-sm { padding: 64px 60px; }
.container { max-width: 1160px; margin: 0 auto; }

.s-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.s-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.1;
  color: var(--gray);
  margin-bottom: 18px;
}
.s-rule {
  width: 48px; height: 2px;
  background: var(--red);
  margin-bottom: 28px;
}
.s-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-light);
  max-width: 660px;
}
/* Dark variant */
.bg-dark { background: var(--gray); }
.bg-dark .s-title { color: var(--beige); }
.bg-dark .s-body { color: rgba(245,240,232,0.65); }
.bg-beige { background: var(--beige); }
.bg-beige-dark { background: var(--beige-dark); }

/* ==========================================================
   VIDEO BLOCK
   ========================================================== */

.video-block {
  position: relative;
  padding-top: 56.25%;
  background: #111;
}
.video-block iframe {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  border: none;
}

/* ==========================================================
   GALLERY PAGE — HERO
   ========================================================== */

.gallery-hero {
  background: var(--gray);
  padding: calc(var(--nav-h) + 56px) 60px 44px;
  border-bottom: 3px solid var(--red);
}
.gallery-hero .s-title { color: var(--beige); font-size: clamp(2.4rem, 5vw, 4rem); }
.gallery-hero p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  color: rgba(245,240,232,0.52);
  margin-top: 10px;
  max-width: 480px;
  line-height: 1.7;
}

/* ==========================================================
   GALLERY SUB-NAV
   ========================================================== */

.gallery-tabs {
  background: var(--gray);
  display: flex;
  padding: 0 60px;
  position: sticky;
  top: var(--nav-h);
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gallery-tabs a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  padding: 17px 24px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}
.gallery-tabs a:hover { color: rgba(245,240,232,0.78); }
.gallery-tabs a.is-active { color: var(--beige); border-bottom-color: var(--red); }

/* ==========================================================
   ART GRID
   ========================================================== */

.gallery-panel { display: none; background: var(--beige-dark); }
.gallery-panel.is-active { display: block; }

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 3px;
  padding: 3px;
}

.art-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--beige-mid);
  cursor: pointer;
}
.art-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.art-item:hover img { transform: scale(1.06); }

/* Placeholder when image missing */
.art-item .art-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(42,42,42,0.18);
  background: var(--beige-dark);
  padding: 20px;
  text-align: center;
}

.art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.88) 0%, transparent 58%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.32s ease;
}
.art-item:hover .art-overlay { opacity: 1; }
.art-overlay .art-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--beige);
  margin-bottom: 3px;
}
.art-overlay .art-dim {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  color: rgba(245,240,232,0.55);
  margin-bottom: 10px;
}
.art-overlay .art-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.art-item:hover .art-cta { gap: 10px; }

/* ==========================================================
   CREATION PAGE
   ========================================================== */

.creation-hero {
  background: var(--gray);
  padding: calc(var(--nav-h) + 64px) 60px 80px;
  position: relative;
  overflow: hidden;
}
.creation-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,47,47,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.creation-hero .s-title { color: var(--beige); font-size: clamp(2.5rem, 5.5vw, 4.2rem); }
.creation-hero .s-body { color: rgba(245,240,232,0.65); max-width: 740px; }

.creation-content {
  background: var(--beige);
  padding: 80px 60px;
}
.creation-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}
.creation-text p {
  font-size: 1.02rem;
  line-height: 1.92;
  color: var(--gray-light);
  margin-bottom: 22px;
}
.creation-text p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 900;
  float: left;
  line-height: 0.78;
  margin: 8px 11px 0 0;
  color: var(--red);
}
.section-h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gray);
  margin: 52px 0 10px;
}

.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--beige-dark);
  border-top: 3px solid var(--red);
  padding: 28px 28px 24px;
}
.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.sidebar-card ul li {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--gray-light);
  padding-left: 12px;
  position: relative;
}
.sidebar-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.75rem;
}
.sidebar-card ul li a { color: var(--red); transition: opacity 0.2s ease; }
.sidebar-card ul li a:hover { opacity: 0.75; }

/* ==========================================================
   CONTACT PAGE
   ========================================================== */

.contact-hero {
  background: var(--gray);
  padding: calc(var(--nav-h) + 56px) 60px 60px;
  border-bottom: 3px solid var(--red);
}
.contact-hero .s-title { color: var(--beige); font-size: clamp(2.5rem, 5vw, 4rem); }

.contact-body {
  background: var(--beige);
  padding: 80px 60px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 980px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-info .sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 36px;
}
.contact-entry {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--beige-mid);
}
.contact-entry:last-child { border-bottom: none; margin-bottom: 0; }
.contact-entry .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
}
.contact-entry .val {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray-light);
}
.contact-entry .val a {
  color: var(--gray);
  border-bottom: 1px solid rgba(42,42,42,0.18);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-entry .val a:hover { color: var(--red); border-color: var(--red); }

/* Form */
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 26px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--beige-dark);
  border: 1px solid var(--beige-mid);
  border-bottom: 2px solid var(--beige-mid);
  padding: 11px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  color: var(--gray);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.22s ease, background 0.22s ease;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--red); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  margin-top: 6px;
  justify-content: center;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.site-footer {
  background: var(--gray);
  border-top: 3px solid var(--red);
  padding: 44px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: auto;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--beige);
}
.footer-brand span { color: var(--red); }
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--red); }
.footer-copy {
  font-size: 0.74rem;
  color: rgba(245,240,232,0.28);
  width: 100%;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 920px) {
  .nav-list { display: none; }
  .nav-burger { display: flex; }
  .site-nav { padding: 0 24px; }

  .hero-cols { grid-template-columns: 1fr; }
  .creation-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .hero-inner,
  .section,
  .creation-content,
  .creation-hero,
  .contact-body,
  .contact-hero,
  .gallery-hero { padding-left: 24px; padding-right: 24px; }

  .gallery-tabs { padding: 0 16px; overflow-x: auto; white-space: nowrap; }
  .info-strip { padding: 20px 24px; gap: 20px; }
  .site-footer { padding: 36px 24px; }
  .sidebar { position: static; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 3.2rem; }
  .hero-btns { flex-direction: column; }
  .art-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { gap: 16px; }
  .info-sep { display: none; }
}
