/** Shopify CDN: Minification failed

Line 19:7 Expected identifier but found whitespace
Line 19:13 Unexpected "{"
Line 19:23 Expected ":"
Line 20:10 Expected identifier but found whitespace
Line 20:13 Unexpected "{"
Line 20:23 Expected ":"
Line 21:9 Expected identifier but found whitespace
Line 21:13 Unexpected "{"
Line 21:23 Expected ":"
Line 22:10 Expected identifier but found whitespace
... and 5 more hidden warnings

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

:root {
  --bg:     {{ settings.color_bg }};
  --cream:  {{ settings.color_cream }};
  --dark:   {{ settings.color_dark }};
  --brown:  {{ settings.color_brown }};
  --sand:   {{ settings.color_sand }};
  --muted:  #9A8A7B;
  --border: #D9CEBB;
  --text:   #2C2420;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.07'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: multiply;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 56px;
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo svg { width: 20px; height: auto; }

.nav-brand {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 0.42em;
  color: var(--dark);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--dark); }

.nav-cta {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}

.nav-cta:hover { border-color: var(--dark); }

/* BUTTONS */
.btn-outline {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--sand);
  padding: 15px 42px;
  text-decoration: none;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  cursor: pointer;
  background: transparent;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--bg);
  border-color: var(--dark);
}

.btn-dark {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--dark);
  border: 1px solid var(--dark);
  padding: 15px 42px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.35s, border-color 0.35s;
}

.btn-dark:hover {
  background: var(--brown);
  border-color: var(--brown);
}

/* LABEL */
.section-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 20px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }

/* HERO */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: 60vw;
  max-width: 640px;
  opacity: 0.038;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.4s;
}

.hero-mark {
  width: 72px;
  margin: 36px 0 24px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 0.7s;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--dark);
  line-height: 1;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 1s;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  color: var(--muted);
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 1.3s;
}

.hero-cta-wrap {
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 1.6s;
}

.scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2.2s;
}

.scroll-hint span {
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--border);
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--sand), transparent);
  animation: lineFlow 2.4s ease-in-out infinite;
}

/* ABOUT */
.about-section {
  padding: 140px 56px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 32px;
}

.body-text {
  font-size: 15px;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 18px;
}

.about-visual {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cement-swatch {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 65%, rgba(122,92,65,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 25%, rgba(180,165,145,0.12) 0%, transparent 45%),
    linear-gradient(148deg, #DDD3C3 0%, #C8B9A5 45%, #BAA890 100%);
}

.cement-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    62deg, transparent, transparent 3px,
    rgba(255,255,255,0.025) 3px, rgba(255,255,255,0.025) 6px
  );
}

.swatch-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(26,22,20,0.35);
}

/* MATERIAL */
.material-section {
  background: var(--cream);
  padding: 120px 56px;
}

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

.material-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin: 20px 0 30px;
  line-height: 1.2;
}

.material-text {
  font-size: 15px;
  line-height: 2;
  color: var(--brown);
  max-width: 620px;
  margin: 0 auto;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border: 1px solid var(--border);
}

.stat {
  padding: 44px 24px;
  background: var(--bg);
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-val {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}

.stat-val small { font-size: 22px; }

.stat-lbl {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* COLLECTION */
.collection-section {
  padding: 140px 56px;
  max-width: 1280px;
  margin: 0 auto;
}

.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.collection-note {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--muted);
  text-align: right;
  max-width: 240px;
  letter-spacing: 0.04em;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.piece {
  text-decoration: none;
  color: inherit;
  display: block;
}

.piece-img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.piece-img-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.piece:hover .piece-img-inner { transform: scale(1.04); }

.piece-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.piece:hover .piece-img img { transform: scale(1.04); }

.piece-img-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    55deg, transparent, transparent 2px,
    rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px
  );
}

.p1 { background: linear-gradient(152deg, #D6C9B5 0%, #BBA98F 55%, #AC9779 100%); }
.p2 { background: linear-gradient(152deg, #CBBFB2 0%, #B0A395 55%, #9A8E7F 100%); }
.p3 { background: linear-gradient(152deg, #DDD5C8 0%, #C8BBA8 55%, #B5A691 100%); }

.piece-info { padding: 22px 0 6px; }

.piece-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--dark);
}

.piece-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* PREORDER */
.preorder-section {
  background: var(--dark);
  padding: 140px 56px;
}

.preorder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 110px;
  align-items: start;
}

.preorder-label { color: var(--sand) !important; }

.preorder-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--bg);
  line-height: 1.1;
  margin: 16px 0 28px;
}

.preorder-desc {
  font-size: 14.5px;
  line-height: 1.95;
  color: rgba(248,244,238,0.45);
  margin-bottom: 56px;
}

.steps { display: flex; flex-direction: column; gap: 32px; }

.step { display: flex; gap: 22px; align-items: flex-start; }

.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: rgba(196,173,147,0.35);
  line-height: 1;
  flex-shrink: 0;
}

.step-title {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(248,244,238,0.4);
}

/* FORM */
.form-grid { display: flex; flex-direction: column; gap: 3px; }

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.f-field { display: flex; flex-direction: column; }

.f-field label {
  font-size: 9.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.3);
  padding: 16px 18px 0;
  background: rgba(248,244,238,0.045);
  border: 1px solid rgba(248,244,238,0.08);
  border-bottom: none;
}

.f-field input,
.f-field select,
.f-field textarea {
  background: rgba(248,244,238,0.045);
  border: 1px solid rgba(248,244,238,0.08);
  border-top: none;
  color: var(--bg);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  padding: 10px 18px 16px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}

.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  border-color: rgba(196,173,147,0.5);
  background: rgba(248,244,238,0.07);
}

.f-field input::placeholder,
.f-field textarea::placeholder { color: rgba(248,244,238,0.2); }

.f-field select option { background: #1A1614; }

.f-field textarea { resize: none; height: 116px; line-height: 1.7; }

.f-gap { height: 3px; }

.f-submit { display: flex; justify-content: flex-end; margin-top: 18px; }

.form-success-msg {
  display: none;
  padding: 72px 0;
  text-align: center;
}

.form-success-msg.active { display: block; }

.success-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 24px;
}

.success-text {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(248,244,238,0.45);
}

/* INSTAGRAM */
.instagram-section {
  padding: 100px 56px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.ig-heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--dark);
  margin: 16px 0 36px;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.ig-link svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  padding: 36px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-left svg { width: 16px; opacity: 0.35; }

.footer-brand {
  font-size: 10.5px;
  font-weight: 200;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.3);
}

.footer-right {
  font-size: 10.5px;
  color: rgba(248,244,238,0.18);
  letter-spacing: 0.08em;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineFlow {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.4; transform: scaleY(0.45); transform-origin: top; }
}

/* MOBILE */
@media (max-width: 900px) {
  .site-nav { padding: 22px 28px; }
  .site-nav.scrolled { padding: 14px 28px; }
  .nav-links, .nav-cta { display: none; }

  .about-section {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 100px 28px;
  }

  .material-section { padding: 90px 28px; }

  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }

  .collection-section { padding: 100px 28px; }
  .collection-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .collection-note { text-align: left; max-width: 100%; }
  .collection-grid { grid-template-columns: 1fr; }

  .preorder-section { padding: 100px 28px; }
  .preorder-inner { grid-template-columns: 1fr; gap: 56px; }
  .f-row { grid-template-columns: 1fr; }

  .instagram-section { padding: 80px 28px; }
  .site-footer { padding: 28px; flex-direction: column; gap: 12px; text-align: center; }
}
