/* ==========================================================================
   MurfDaSurf — self-hosted static rebuild (captured 2026-08-03)
   Fonts are the artist's own uploaded font files, bundled locally.
   Zero external dependencies.
   ========================================================================== */

/* ---- the site's four custom uploaded fonts, served locally ---- */
@font-face {
  font-family: 'Saved By Zero';
  src: url('fonts/saved_by_zero.woff2') format('woff2');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Super Retro M54 Italic';
  src: url('fonts/super_retro_m_54_italic.woff2') format('woff2');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins ExtraLight';
  src: url('fonts/poppins_extralight.woff2') format('woff2');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cera GR Black';
  src: url('fonts/cera_gr_black.woff2') format('woff2');
  font-weight: normal; font-style: normal; font-display: swap;
}

:root {
  /* site palette from the Wix theme */
  --red: #ED1C24;
  --blue: #0088CB;
  --yellow: #FFCB05;
  --slate: #324158;
  --text: #333333;
  --font0-red: rgb(226, 28, 33);
  --orange-strip: rgba(237, 88, 41, 0.91);
  --orange-solid: #ED5829;
  --cyan: #15C5E8;
  --link-blue: #0057E1;
  --dot-grey: #E8E6E6;

  --font-display: 'Saved By Zero', 'Arial Black', Impact, sans-serif;
  --font-retro: 'Super Retro M54 Italic', 'Arial Black', Impact, sans-serif;
  --font-body: 'Poppins ExtraLight', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-black: 'Cera GR Black', 'Arial Black', 'Segoe UI', Helvetica, sans-serif;
  --font-helv: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-din: 'DIN Next', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-avenir-heavy: 'Avenir Next', 'Avenir', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-avenir-light: 'Avenir Next', 'Avenir', 'Segoe UI Light', 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FFFFFF;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: #fff; color: #000; padding: 8px 14px; z-index: 2000;
}
.skip-link:focus { left: 8px; }

/* ==========================================================================
   Header / navigation  (site-wide chrome: pinned round logo + horizontal nav,
   "Art" dropdown of 3 pages)
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 100;
  padding: 18px 4vw 8px;
  display: flex;
  align-items: flex-start;
}
.site-logo { flex: 0 0 auto; display: block; }
.site-logo img { width: 130px; height: auto; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none; border: 1px solid #999; border-radius: 4px;
  padding: 9px 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #333; margin: 4px 0;
}

.site-nav { flex: 1 1 auto; align-self: center; }
.site-nav > ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; justify-content: center; align-items: center;
  gap: 34px; flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 16px;
}
.site-nav a { text-decoration: none; color: #000; padding: 6px 2px; display: inline-block; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blue); }

.has-sub { position: relative; }
.sub-toggle {
  font: inherit; font-family: var(--font-body); color: #000;
  background: none; border: none; cursor: pointer; padding: 6px 2px;
  display: inline-flex; align-items: center; gap: 6px;
}
.sub-toggle svg { width: 10px; height: 10px; }
.sub-menu {
  display: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  list-style: none; margin: 0; padding: 8px 0;
  text-align: center;
}
.sub-menu a { display: block; padding: 10px 18px; white-space: nowrap; }
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu,
.has-sub.open .sub-menu { display: block; }

@media (max-width: 900px) {
  .site-logo img { width: 84px; }
  .nav-toggle { display: block; }
  .site-nav { display: none; width: 100%; }
  .site-nav.open { display: block; }
  .site-header { flex-wrap: wrap; }
  .site-nav > ul { flex-direction: column; gap: 0; padding: 10px 0; }
  .site-nav > ul > li { width: 100%; text-align: center; }
  .site-nav a, .sub-toggle { padding: 12px 8px; width: 100%; justify-content: center; }
  .sub-menu {
    position: static; transform: none; box-shadow: none; min-width: 0;
    background: #fafafa;
  }
}

/* ==========================================================================
   Footer (site-wide: copyright left, city right, 14px small type)
   ========================================================================== */
.site-footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding: 34px 5vw 26px;
  font-family: var(--font-din);
  font-size: 14px;
}
.site-footer .foot-city { text-align: right; margin-left: auto; }
.site-footer p { margin: 0; }
.site-footer.on-dark { color: #fff; }
.site-footer.on-orange { color: #fff; }

/* ==========================================================================
   Display headings
   ========================================================================== */
.h1-display {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: clamp(38px, 7vw, 60px);
  line-height: 1.4;
  color: var(--font0-red);
  text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
  margin: 0.4em 0;
  text-align: center;
}
.h2-retro {
  font-family: var(--font-retro);
  font-weight: normal;
  font-size: clamp(32px, 6vw, 55px);
  line-height: 1.4;
  color: var(--orange-solid);
  /* white 1px outline exactly as on the live site */
  text-shadow: #ffffff -1px -1px 0px, #ffffff -1px 1px 0px,
               #ffffff 1px 1px 0px, #ffffff 1px -1px 0px;
  text-align: center;
  margin: 0.5em 0;
}

/* ==========================================================================
   Galleries (Wix Pro Gallery equivalents)
   ========================================================================== */
.gallery-wrap { padding: 10px 4vw 40px; }

.masonry { columns: 3 300px; column-gap: 14px; }
.masonry figure { break-inside: avoid; margin: 0 0 14px; }

.grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  max-width: 1100px; margin: 0 auto;
}
.grid-2 figure { margin: 0; }
.grid-2.squares .gl-item img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

.gl-item {
  display: block; position: relative; overflow: hidden; text-decoration: none;
}
.gl-item img { width: 100%; transition: transform .35s ease; }
.gl-item:hover img { transform: scale(1.03); }

/* 5px solid white item borders (home galleries) */
.frame-white .gl-item img { border: 5px solid rgba(255,255,255,1); }

/* hover title overlay (matches the pro-gallery hover metadata) */
.gl-item .gl-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.gl-item:hover .gl-cap, .gl-item:focus .gl-cap { opacity: 1; }

/* ==========================================================================
   Lightbox (expand view)
   ========================================================================== */
.lb {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center; justify-content: center;
  flex-direction: column;
  padding: 4vh 4vw;
}
.lb.open { display: flex; }
.lb img {
  max-width: 92vw; max-height: 78vh; width: auto; height: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.lb figcaption {
  color: #fff; text-align: center; margin-top: 14px;
  font-family: var(--font-body); font-size: 15px;
  white-space: pre-line;
  max-width: 80ch;
}
.lb figcaption .lb-title { font-size: 17px; }
.lb button {
  position: absolute;
  background: none; border: none; color: #fff; cursor: pointer;
  font-size: 40px; line-height: 1; padding: 12px;
  font-family: Arial, sans-serif;
  opacity: .8;
}
.lb button:hover { opacity: 1; }
.lb .lb-close { top: 10px; right: 16px; }
.lb .lb-prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lb .lb-next { right: 6px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Home page
   ========================================================================== */
.story-strip {
  margin: 34px 0;
  min-height: 400px;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  padding: 40px 8vw;
}
.btn-our-story {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 18px; letter-spacing: .12em;
  color: #fff; text-decoration: none;
  background: rgba(0,0,0,.35);
  border: 1px solid #fff;
  padding: 14px 26px;
  transition: background .25s ease;
}
.btn-our-story:hover { background: rgba(0,0,0,.6); }
.btn-our-story svg { width: 16px; height: 16px; }

.tagline-block {
  max-width: 820px; margin: 30px auto 46px; padding: 0 5vw;
  display: flex; gap: 18px; align-items: flex-start;
}
.tagline-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 110px; line-height: .6;
  color: var(--slate);
  flex: 0 0 auto;
  user-select: none;
}
.tagline-text {
  font-family: var(--font-body); font-weight: bold;
  font-size: 16px; color: var(--slate); margin: 18px 0 0;
}

/* ==========================================================================
   About page
   ========================================================================== */
.page-about {
  background: #fff url('img/about-us-story/space-gas-edited-hero-bg.jpg') no-repeat center top / cover;
  background-attachment: fixed;
}
.about-hero { max-width: 980px; margin: 0 auto; padding: 30px 5vw 10px; }
.about-hero .h1-display { text-align: left; }
.about-intro {
  font-family: var(--font-body); font-size: 20px; color: #fff; /* color_36 white, verbatim from live styles */
  max-width: 720px;
}
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0; }
.about-images figure { margin: 0; }
@media (max-width: 640px) { .about-images { grid-template-columns: 1fr; } }

.about-story { max-width: 980px; margin: 0 auto; padding: 10px 5vw 40px; }
.deco-slashes { margin: 26px 0 0; }
.h2-ourstory {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: clamp(28px, 5vw, 38px);
  color: #FF4040;
  text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
  margin: 6px 0 20px;
}
.about-story p { font-family: var(--font-body); font-size: 16px; color: var(--slate); max-width: 72ch; }

/* ==========================================================================
   Before and After page
   ========================================================================== */
.page-ba {
  background: #fff url('img/before-and-after/page-background.jpg') no-repeat center top / cover;
  background-attachment: fixed;
}
.page-ba .bg-white-overlay {
  background: rgba(255,255,255,.85);
  min-height: 100vh;
}
.ba-title-band {
  background: url('img/before-and-after/column-bg-christopher-sardegna.jpg') no-repeat center / cover;
  padding: 70px 5vw;
  margin-bottom: 44px;
}
.ba-title-band h1 {
  font-family: var(--font-display); font-weight: normal;
  font-size: clamp(38px, 7vw, 60px); line-height: 1.4;
  color: #FFFFFF;
  text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
  text-align: center; margin: 0;
}

.ba-show {
  position: relative;
  width: min(535px, 92vw);
  margin: 0 auto 48px;
  box-shadow: 1.93px 2.30px 5px rgba(0,0,0,.25);
}
.ba-slide { display: none; }
.ba-slide.active { display: block; }
.ba-slide { padding: 26px 26px 30px; }
.ba-slide.bg-white { background: #fff; }
.ba-slide.bg-black { background: #000; }
.ba-slide img { margin: 0 auto; max-height: 620px; width: auto; max-width: 100%; }
.ba-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  font-size: 34px; line-height: 1; color: #333;
  padding: 8px; z-index: 5;
  text-shadow: 0 0 6px rgba(255,255,255,.8);
  font-family: Arial, sans-serif;
}
.ba-prev { left: -46px; }
.ba-next { right: -46px; }
@media (max-width: 680px) {
  .ba-prev { left: 2px; } .ba-next { right: 2px; }
}
.ba-dots { text-align: center; padding: 12px 0 0; }
.ba-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: var(--dot-grey);
  margin: 0 5px; padding: 0; cursor: pointer;
}
.ba-dots button.active { background: #7a7a7a; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-h1 {
  font-family: var(--font-avenir-heavy); font-weight: 800;
  font-size: clamp(34px, 6vw, 52px);
  color: var(--text);
  text-align: center; margin: 30px 0 10px;
}
.contact-intro {
  font-family: var(--font-avenir-light);
  max-width: 640px; margin: 0 auto 30px; padding: 0 5vw;
  text-align: center; font-size: 17px;
}
.contact-art { max-width: 640px; margin: 0 auto 50px; padding: 0 5vw; }
.contact-art img { margin: 0 auto; }

.orange-strip {
  background: var(--orange-strip);
  color: #fff;
  padding: 60px 6vw 20px;
  font-family: var(--font-avenir-light);
}
.orange-strip h2 {
  font-family: var(--font-avenir-heavy); font-weight: 800;
  font-size: clamp(28px, 4.5vw, 40px); margin: 0 0 26px;
}
.orange-strip h3 {
  font-family: var(--font-avenir-heavy); font-weight: 800;
  font-size: 18px; margin: 26px 0 8px;
}
.orange-strip a { color: #fff; }
.chat-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px;
  max-width: 1050px; margin: 0 auto;
}
@media (max-width: 800px) { .chat-grid { grid-template-columns: 1fr; } }

.social-bar { display: flex; gap: 16px; margin: 6px 0 10px; }
.social-bar .soc {
  display: inline-flex; width: 28px; height: 28px;
  align-items: center; justify-content: center;
}
.social-bar svg { width: 24px; height: 24px; fill: #fff; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block; font-size: 15px; margin-bottom: 6px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  background: transparent;
  border: none; border-bottom: 1px solid #fff;
  color: #fff; font: inherit;
  padding: 8px 2px;
  outline: none;
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-width: 2px; }
.btn-send {
  grid-column: 1 / -1; justify-self: start;
  background: transparent; color: #fff;
  border: 2px solid #fff;
  font-family: var(--font-avenir-heavy); font-weight: 800;
  font-size: 16px; letter-spacing: .08em;
  padding: 12px 46px; cursor: pointer;
  transition: all .25s ease;
}
.btn-send:hover { background: #fff; color: var(--orange-solid); }
.form-success { display: none; font-size: 17px; margin-top: 10px; }
@media (max-width: 640px) { .contact-form { grid-template-columns: 1fr; } }

/* ==========================================================================
   Horror & Sci Fi page (dark full-bleed painted background)
   ========================================================================== */
.page-horror {
  background: #151414 url('img/horror-sci-fi/_site_background.jpg') no-repeat center top / cover;
  background-attachment: fixed;
  color: #fff;
}
.page-horror .site-nav a, .page-horror .sub-toggle { color: #fff; }
.page-horror .sub-menu { background: #1c1b1b; }
.page-horror .sub-menu a { color: #fff; }
.page-horror .nav-toggle span { background: #fff; }
.page-horror .nav-toggle { border-color: #777; }
@media (max-width: 900px) {
  .page-horror .site-nav.open { background: rgba(0,0,0,.65); }
}
.horror-title { text-align: center; padding: 20px 5vw 6px; }
.horror-title h1 {
  font-family: var(--font-body);
  font-weight: normal;
  font-size: clamp(34px, 6vw, 58px);
  color: #fff; margin: 0;
  text-shadow: rgba(0,0,0,.5) 0 4px 6px;
}
.horror-title .kicker {
  font-family: var(--font-body); font-size: 15px;
  letter-spacing: .28em; color: #fff; margin: 8px 0 0;
  font-weight: normal;
}

/* ==========================================================================
   Cosmidon page
   ========================================================================== */
.cosmidon-title { text-align: center; padding: 20px 5vw 6px; }
.cosmidon-title h1 {
  font-family: var(--font-display); font-weight: normal;
  font-size: clamp(38px, 7vw, 60px); line-height: 1.4;
  color: var(--cyan);
  text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
  margin: 0;
}
.cosmidon-title .sub {
  font-family: var(--font-black);
  font-size: clamp(22px, 4vw, 36px);
  color: var(--text); margin: 2px 0 0; font-weight: normal;
}

/* Chaos in Color title (theme font_0 default color = red) */
.chaos-title { text-align: center; padding: 20px 5vw 6px; }
.chaos-title h1 {
  font-family: var(--font-display); font-weight: normal;
  font-size: clamp(38px, 7vw, 60px); line-height: 1.4;
  color: var(--font0-red);
  text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
  margin: 0;
}
