/* ============================================================
   Concrete Encounter — stylesheet
   ============================================================ */

:root {
  --ink:        #121212;
  --ink-soft:   #55534d;
  --paper:      #ffffff;
  --paper-2:    #f2f1ee;
  --line:       #e3e1da;
  --stone:      #d8d2c4;
  --stone-2:    #8f8c84;
  --white:      #ffffff;

  --black:       #0c0c0c;
  --on-black:    #ffffff;
  --on-black-mute: rgba(255, 255, 255, 0.62);
  --hairline-on-black: rgba(255, 255, 255, 0.14);

  --font-display: 'Anton', Impact, 'Arial Narrow', sans-serif;
  --font-accent: 'Permanent Marker', cursive;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --wrap: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* subtle film-grain / noise overlay for texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin: 0 0 14px;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.85); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.05;
  margin: 0 0 28px;
  letter-spacing: 0.002em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 34px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark:hover { background: transparent; color: var(--ink); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: transparent; color: var(--white); }
.btn--outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--ink); }

/* ============ reveal-on-scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   UTILITY BAR + HEADER
   ============================================================ */
.utility-bar { background: var(--black); color: var(--on-black-mute); }
.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-block: 9px;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: center;
}
.utility-bar-inner a { transition: color 0.2s ease; }
.utility-bar-inner a:hover { color: var(--white); }
.utility-dot { opacity: 0.5; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 8px;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo-img {
  height: 92px;
  width: auto;
  display: block;
}

.header-caption {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-2);
  white-space: nowrap;
}

.header-right { display: flex; align-items: center; gap: 28px; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, 86vw);
  background: var(--black);
  color: var(--on-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.65,0,.35,1);
  z-index: 600;
}
.mobile-nav.is-open { transform: translateX(0); }
.mnav-link {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--on-black);
  opacity: 0.92;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.mnav-link:hover { opacity: 1; }
.mnav-link--accent { color: var(--on-black-mute); font-family: var(--font-body); text-transform: none; font-size: 16px; letter-spacing: 0.04em; margin-top: 6px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.8) 100%);
}

.hero-badge {
  position: absolute;
  top: clamp(20px, 4vw, 40px);
  right: var(--gutter);
  width: clamp(90px, 9vw, 120px);
  height: clamp(90px, 9vw, 120px);
  z-index: 3;
  color: rgba(255, 255, 255, 0.9);
}
.badge-spin { width: 100%; height: 100%; animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.badge-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--white);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 60px clamp(56px, 8vw, 92px);
  color: var(--white);
}
.hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(46px, 9.5vw, 116px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 10px 0 24px;
  max-width: 900px;
  color: var(--white);
  -webkit-text-stroke: 1.5px rgba(128, 128, 128, 0.85);
  text-shadow:
    -1px -1px 0 rgba(128,128,128,0.85),
     1px -1px 0 rgba(128,128,128,0.85),
    -1px  1px 0 rgba(128,128,128,0.85),
     1px  1px 0 rgba(128,128,128,0.85),
     0 2px 14px rgba(0,0,0,0.35);
}
.hero-sub {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 0 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement { background: var(--black); color: var(--white); padding-block: clamp(70px, 10vw, 120px); }
.statement-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}
.statement-spark { width: 32px; height: 32px; color: var(--white); opacity: 0.9; }
.statement-text {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.4;
  margin: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding-block: clamp(64px, 9vw, 120px); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about-media img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }
.about-copy h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin: 0 0 22px;
}
.about-copy p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 16px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(20px, 4vw, 40px);
  margin-top: 32px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 32px); color: var(--ink); }
.stat-label { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone-2); margin-top: 4px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding-block: clamp(50px, 8vw, 100px); background: var(--paper-2); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 40px;
}
.service-card {
  position: relative;
  aspect-ratio: 4/3.1;
  overflow: hidden;
  display: block;
}
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.78) 100%);
}
.service-card:hover img { transform: scale(1.06); }
.service-card-text {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  z-index: 2;
  color: var(--white);
}
.service-card-text h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 24px);
  letter-spacing: 0.01em;
  margin: 0 0 4px;
}
.service-card-text p { font-size: 13px; margin: 0; opacity: 0.85; }

.service-card--dark {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card--dark:hover { background: #262523; }
.service-card-text--center { position: static; padding: 30px; color: var(--paper); }
.service-card-text--center h3 { color: var(--white); }
.service-card-text--center p { opacity: 0.75; }

/* ============================================================
   SHOP
   ============================================================ */
.shop { padding-block: clamp(50px, 8vw, 100px); }
.shop-intro { font-size: 15.5px; color: var(--ink-soft); max-width: 560px; margin: -14px 0 40px; }
.ecwid-shop-wrap { min-height: 200px; }

/* Compact the Ecwid widget so it matches the site's small featured-tile look.
   Ecwid overwrites the mount div's class attribute on init, so target it by id. */
#my-store-142773501 .ec-page-title,
#my-store-142773501 .ec-footer,
#my-store-142773501 .ec-lightspeed-branding-wrapper,
#my-store-142773501 .ec-notices {
  display: none !important;
}
#my-store-142773501 .grid__products,
#my-store-142773501 .grid__categories {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, 150px) !important;
  justify-content: start !important;
  gap: 20px 16px !important;
}
#my-store-142773501 .grid-product,
#my-store-142773501 .grid-category {
  width: auto !important;
  max-width: none !important;
  float: none !important;
}
#my-store-142773501 .grid-product__title,
#my-store-142773501 .grid-product__title-inner,
#my-store-142773501 .grid-category__title,
#my-store-142773501 .grid-category__title-inner {
  font-size: 12.5px !important;
  line-height: 1.35 !important;
  margin-top: 8px !important;
  font-weight: 500 !important;
}
#my-store-142773501 .grid-product__price,
#my-store-142773501 .grid-product__price-value,
#my-store-142773501 .grid-product__price-amount {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  margin-top: 2px !important;
}

/* ============================================================
   CATEGORY GALLERY POPUP
   ============================================================ */
.gallery-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.3s ease;
}
.gallery-overlay.is-open { opacity: 1; pointer-events: auto; }
.gallery-overlay-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.gallery-overlay-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
}
.gallery-overlay-heading { min-width: 0; }
.gallery-overlay-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 28px);
  margin: 0;
}
.gallery-overlay-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 6px 0 0;
  max-width: 520px;
}
.gallery-overlay-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  background: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.gallery-overlay-close:hover { background: var(--ink); color: var(--white); }
.gallery-overlay .wrap:last-child { padding-block: 28px 60px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  grid-auto-flow: dense;
}
.g-item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  position: relative;
}
.g-item:nth-child(4n+1) { aspect-ratio: 1/1.25; grid-row: span 1; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, opacity 0.3s ease; }
.g-item:hover img { transform: scale(1.07); }

/* ---- lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 6, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: 2px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.2s ease;
  opacity: 0.85;
}
.lightbox-close { top: 26px; right: 30px; font-size: 34px; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 48px; padding: 10px 16px; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-close:hover, .lightbox-nav:hover { opacity: 1; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--black); color: var(--white); padding-block: clamp(64px, 9vw, 120px); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); }
.process-copy h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.05;
  margin: 0 0 20px;
}
.process-copy p { color: rgba(255,255,255,0.7); font-size: 15.5px; max-width: 460px; margin: 0 0 30px; }

.process-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }
.process-steps li { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 26px; border-bottom: 1px solid var(--hairline-on-black); }
.process-steps li:last-child { border-bottom: none; padding-bottom: 0; }
.step-icon { width: 44px; height: 44px; flex-shrink: 0; filter: brightness(0) invert(1); opacity: 0.85; }
.process-steps h4 { margin: 0 0 6px; font-family: var(--font-body); font-size: 15.5px; font-weight: 700; }
.process-steps p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.6); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding-block: clamp(64px, 9vw, 120px); }
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 70px); align-items: center; }
.contact-copy p { color: var(--ink-soft); font-size: 15.5px; max-width: 460px; }
.contact-media img { border-radius: var(--radius); aspect-ratio: 4/3.4; object-fit: cover; }

.contact-form-wrap { background: var(--paper-2); border: 1px solid var(--line); padding: clamp(28px, 4vw, 44px); }
.contact-form-title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(20px, 2.4vw, 26px); margin: 0 0 6px; }
.contact-form-sub { color: var(--stone-2); font-size: 14px; margin: 0 0 26px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { outline: 2px solid var(--ink); outline-offset: -1px; }
.contact-form-hint { font-size: 13px; color: var(--stone-2); margin: -8px 0 0; line-height: 1.5; }
.contact-form-hint a { color: var(--ink); text-decoration: underline; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .btn { align-self: flex-start; margin-top: 4px; }
.contact-form-status {
  font-size: 13px;
  font-weight: 600;
  margin: 4px 0 0;
  min-height: 1em;
}
.contact-form-status[data-state="sending"] { color: var(--stone-2); font-weight: 400; }
.contact-form-status[data-state="success"] { color: #1a7a3c; }
.contact-form-status[data-state="error"] { color: #b3261e; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.contact-details { margin-top: 30px; display: flex; flex-direction: column; }
.contact-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 4px;
  border-top: 1px solid var(--line);
  transition: padding-left 0.2s ease, background 0.2s ease;
}
.contact-details .contact-line:last-child { border-bottom: 1px solid var(--line); }
.contact-line:hover { background: var(--paper-2); padding-left: 12px; }
.contact-label { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-2); }
.contact-value { font-size: 16px; font-weight: 600; text-align: right; }

.social-row { display: flex; gap: 16px; margin-top: 30px; }
.social-row a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.social-row a:hover { background: var(--ink); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--paper-2); border-top: 1px solid var(--line); padding-block: 48px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.logo--footer .logo-img { height: 42px; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--ink); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--ink-soft); transition: color 0.2s ease; }
.footer-social a:hover { color: var(--ink); }
.footer-copy { font-size: 12.5px; color: var(--stone-2); margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about-grid, .process-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media, .contact-media { order: -1; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { min-height: 78vh; }
}

@media (max-width: 640px) {
  .utility-bar-inner { flex-direction: column; gap: 2px; }
  .utility-dot { display: none; }
  .header-caption { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, auto); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-badge { display: none; }
}
