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

:root {
  --cream:   #EDE5DA;
  --cream2:  #E0D5C5;
  --parch:   #D4C9B8;
  --brdx:    #5C1A24;
  --brdx2:   #7A2535;
  --muted:   #9A8878;
  --muted2:  #B8A898;
  --ink:     #1A0F10;
  --border:  rgba(92,26,36,0.15);
  --nav-bg:       #5C1A24;
  --nav-border:   rgba(92,26,36,0.3);
  --nav-link:     rgba(237,229,218,0.6);
  --nav-link-hover: #EDE5DA;
  --nav-link-hover-bg: rgba(255,255,255,0.08);
}

/* ── THEME: DARK ── */
[data-style="dark"] {
  --cream:   #0D0D0D;
  --cream2:  #1A1A1A;
  --parch:   #2A2A2A;
  --brdx:    #FF4D4D;
  --brdx2:   #FF6B6B;
  --muted:   #888;
  --muted2:  #666;
  --ink:     #F5F5F5;
  --border:  rgba(255,77,77,0.2);
  --nav-bg:       #1A1A1A;
  --nav-border:   rgba(255,77,77,0.15);
  --nav-link:     rgba(245,245,245,0.5);
  --nav-link-hover: #F5F5F5;
  --nav-link-hover-bg: rgba(255,255,255,0.06);
}


/* ── STYLE PICKER SPLASH ── */
.style-picker {
  position: fixed; inset: 0; z-index: 99999;
  background: #0D0D0D;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 48px;
  transition: opacity .5s, visibility .5s;
}
.style-picker.hidden {
  opacity: 0; visibility: hidden;
  pointer-events: none;
}
.style-picker-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  color: #EDE5DA; letter-spacing: 2px;
  text-align: center;
}
.style-picker-sub {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: #888;
  margin-top: -32px; text-align: center;
}
.style-options {
  display: flex; gap: 24px; flex-wrap: wrap;
  justify-content: center; padding: 0 20px;
}
.style-option {
  width: 200px; cursor: pointer;
  border: 2px solid rgba(255,255,255,0.1);
  background: transparent;
  padding: 32px 24px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  transition: border-color .3s, transform .3s;
}
.style-option:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-4px);
}
.style-option-preview {
  width: 100%; height: 80px; border-radius: 4px;
}
.style-option-preview--classic {
  background: linear-gradient(135deg, #EDE5DA 0%, #5C1A24 100%);
}
.style-option-preview--dark {
  background: linear-gradient(135deg, #0D0D0D 0%, #FF4D4D 100%);
}
.style-option-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: #EDE5DA;
  letter-spacing: 2px;
}
.style-option-desc {
  font-family: 'Space Mono', monospace;
  font-size: 9px; color: #888;
  letter-spacing: 2px; text-transform: uppercase;
  text-align: center;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--brdx);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
}

.grain-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 10000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.30;
}

/* ── NAV ── */
nav {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 300;
  display: flex; align-items: center;
  padding: 6px;
  background: var(--nav-bg);
  border-radius: 999px;
  border: 1px solid var(--nav-border);
}

nav ul {
  list-style: none; display: flex; align-items: stretch; gap: 4px;
}
nav li {
  display: flex; align-items: center;
}
nav a {
  display: flex; align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--nav-link);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
nav a:hover {
  color: var(--nav-link-hover);
  background: var(--nav-link-hover-bg);
}

.nav-cta {
  background: var(--cream) !important;
  color: var(--nav-bg) !important;
  font-weight: 700;
}
.nav-cta:hover {
  opacity: 0.85;
}

/* ── HERO ── */
.hero {
  padding-top: 0;
  min-height: 100vh;
  display: flex; flex-direction: column;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.hero-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, min(22vw, 26vh), 280px);
  line-height: 0.88;
  color: var(--brdx);
  letter-spacing: -2px;
  padding: clamp(20px, 4vh, 40px) 0 0 32px;
  position: relative;
  user-select: none;
}

.hero-word-row {
  display: flex; align-items: flex-end;
  gap: 0; line-height: 0.88;
}

.word-chunk { display: inline-block; line-height: 0.88; }

.hero-rose-i {
  display: inline-block;
  height: clamp(96px, min(17.6vw, 20.8vh), 224px);
  width:  clamp(28px, min(5.2vw, 6.2vh),  66px);
  position: relative;
  vertical-align: bottom;
  margin: 0 clamp(1px, 0.3vw, 5px);
  flex-shrink: 0;
}
.hero-rose-i img {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  height: 115%;
  width: auto;
  object-fit: contain;
}

.hero-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(20px, 3vh, 36px) 40px clamp(24px, 4vh, 48px);
  gap: 40px;
  flex-wrap: wrap;
  margin-top: auto;
}

.hero-meta-left {
  display: flex; flex-direction: column; gap: 6px;
}
.hero-meta-tag {
  font-size: 9px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--muted);
}
.hero-meta-desc {
  max-width: 360px;
  font-size: 12px; line-height: 1.8;
  color: var(--muted); font-family: 'Space Mono', monospace;
  margin-top: 8px;
}

.hero-meta-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 12px;
}

.hero-date {
  font-size: 10px; letter-spacing: 3px;
  color: var(--muted); text-transform: uppercase;
}

.grow-strip {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--border); padding: 12px 20px;
  background: transparent;
}
.grow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brdx);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
.grow-text {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--brdx);
}

.btn-primary {
  background: var(--brdx); color: var(--cream);
  border: none; padding: 14px 32px; cursor: pointer;
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; transition: background .2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--brdx2); }

.btn-primary--start { align-self: flex-start; }

/* ── TICKER ── */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 14px 0;
  background: var(--cream2);
}
.ticker-inner {
  display: flex; white-space: nowrap;
  animation: tick 22s linear infinite;
}
.tick-item {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--muted);
  padding: 0 40px; letter-spacing: 4px; text-transform: uppercase;
}
.tick-sep { color: var(--brdx); margin: 0 4px; }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION SHARED ── */
.sec {
  border-bottom: 1px solid var(--border);
}

.sec-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.sec-num {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--muted);
}
.sec-title {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--brdx); font-weight: 700;
}
.sec-arrow {
  font-size: 12px; color: var(--muted);
}

/* ── ABOUT / GROW ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
}

.about-left {
  padding: clamp(32px, 5vh, 60px) 40px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: clamp(16px, 2.5vh, 32px);
}

.about-big-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, min(10vw, 12vh), 130px);
  line-height: 0.9; color: var(--brdx);
  letter-spacing: -1px;
}

.about-body {
  font-size: 12px; line-height: 1.9;
  color: var(--muted); max-width: 400px;
}

.about-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
}
.pill {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brdx); border: 1px solid var(--border);
  padding: 6px 14px; transition: background .2s, color .2s;
  cursor: default;
}
.pill:hover { background: var(--brdx); color: var(--cream); }

.about-right {
  display: flex; flex-direction: column;
}

.video-panel {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(24px, 4vh, 48px); background: var(--cream2);
  flex-direction: column; gap: clamp(12px, 2vh, 24px);
  position: relative;
}

.video-wrap {
  position: relative;
  width: min(420px, 50vh); height: min(420px, 50vh);
}
.video-wrap::before {
  display: none;
}
.video-panel video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, 62vh); height: min(520px, 62vh);
  object-fit: contain;
}

.video-panel-label {
  font-size: 9px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--muted);
  text-align: center;
}

.video-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-style: italic;
  color: var(--brdx); text-align: center;
  line-height: 1.3;
}

.panel-rose {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 160px; opacity: 0.08;
  pointer-events: none;
}

/* ── SERVICES ── */
.svc-list { display: flex; flex-direction: column; }

.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 250px 1fr 48px;
  gap: 40px; align-items: center;
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
  transition: background .2s; cursor: default;
}
.svc-rose {
  width: 250px; height: 250px;
  object-fit: contain;
  opacity: 1;
  transition: opacity .3s, transform .3s;
  justify-self: center;
}
.svc-row:hover .svc-rose {
  transform: scale(1.05);
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: var(--cream2); }

.svc-num {
  font-size: 9px; letter-spacing: 3px;
  color: var(--muted); text-transform: uppercase;
}
.svc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--brdx); letter-spacing: 1px;
}
.svc-desc {
  font-size: 11px; color: var(--muted); line-height: 1.75;
}
.svc-arr {
  font-size: 18px; color: var(--muted); text-align: right;
  transition: transform .2s, color .2s;
}
.svc-row:hover .svc-arr { transform: translateX(5px); color: var(--brdx); }

/* ── WORK ── */
.work-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
}

.work-card {
  background: var(--cream2);
  aspect-ratio: 4/3; position: relative;
  overflow: hidden; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.work-card.wide { grid-column: span 2; aspect-ratio: 16/5; }

.work-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  transition: transform .5s ease;
}
.work-bg--warm   { background: #E8DDD0; }
.work-bg--green  { background: #DDE8DD; }

.work-card:hover .work-bg { transform: scale(1.04); }
.work-card:hover .work-overlay { opacity: 1; }

.work-overlay {
  position: absolute; inset: 0;
  background: rgba(92,26,36,0.9);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 36px;
  opacity: 0; transition: opacity .3s;
}
.wo-cat {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(240,220,200,0.6);
  margin-bottom: 8px;
}
.wo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--cream); letter-spacing: 1px; line-height: 1;
}
.wo-sub { font-size: 11px; color: rgba(240,220,200,0.6); margin-top: 8px; }

.work-card-mono {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--parch);
}
.work-card-rose {
  width: 100px; opacity: 0.2;
  filter: sepia(1) saturate(0.5) hue-rotate(-10deg);
}
.work-arr {
  position: absolute; top: 20px; right: 24px;
  font-size: 16px; color: var(--muted);
}
.work-big-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 100px);
  color: var(--parch); letter-spacing: 2px; opacity: 0.3;
}

/* ── PROCESS ── */
.proc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
}
.proc-cell {
  background: var(--cream);
  padding: 52px 44px; transition: background .2s;
}
.proc-cell:hover { background: var(--cream2); }
.proc-num {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.proc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; color: var(--brdx); letter-spacing: 1px;
  margin-bottom: 14px; line-height: 1;
}
.proc-desc {
  font-size: 11px; color: var(--muted); line-height: 1.8;
}

/* ── CTA ── */
.cta-section {
  padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  max-height: 100vh;
}
.cta-left {
  padding: clamp(40px, 6vh, 80px) 40px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(20px, 3vh, 40px);
}
.cta-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, min(9vw, 12vh), 110px);
  line-height: 0.9; color: var(--brdx); letter-spacing: -1px;
}
.cta-meta { display: flex; flex-direction: column; gap: 20px; }
.cta-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.cta-val { font-size: 12px; color: var(--brdx); }
.cta-val a { color: inherit; text-decoration: none; }
.cta-val a:hover { text-decoration: underline; }
.avail { color: #4a7a3a; }

/* ── THEME OVERRIDES FOR HARDCODED COLORS ── */
[data-style="dark"] .work-bg--warm  { background: #4A4540; }
[data-style="dark"] .work-bg--green { background: #3E4A3E; }

[data-style="dark"] .work-overlay { background: rgba(237,229,218,0.9); }
[data-style="dark"] .wo-name { color: #1A1A1A; }
[data-style="dark"] .wo-cat,
[data-style="dark"] .wo-sub { color: rgba(26,26,26,0.6); }

[data-style="dark"] .avail { color: #8CBF7A; }

[data-style="dark"] .cta-logo-img { filter: drop-shadow(0 4px 24px rgba(237,229,218,0.2)); }

.cta-right {
  display: flex; align-items: center; justify-content: center;
  background: var(--cream2); position: relative; overflow: hidden;
  padding: clamp(32px, 5vh, 60px);
  flex-direction: column; gap: clamp(16px, 2.5vh, 28px);
}
.cta-logo-img {
  width: 220px; object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(92,26,36,0.2));
}
.cta-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 16px;
  color: var(--muted); text-align: center; line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.foot-copy {
  font-size: 9px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase;
}
.foot-logo img { width: 32px; height: 32px; object-fit: contain; opacity: 0.4; }
.foot-links { display: flex; gap: 24px; }
.foot-links a {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s;
}
.foot-links a:hover { color: var(--brdx); }

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  nav { padding: 4px; bottom: 16px; }
  nav a { font-size: 9px; letter-spacing: 1px; padding: 8px 14px; }

  .hero { padding-top: 0; }
  .hero-word { padding: 24px 0 0 20px; }
  .hero-meta { padding: 24px 20px 32px; gap: 24px; }

  .sec-header { padding: 16px 20px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-left { padding: 40px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .video-panel { padding: 40px 20px; }
  .video-wrap { width: 320px; height: 320px; }
  .video-panel video { width: 250px; height: 250px; }

  .svc-row {
    grid-template-columns: 48px 1fr 120px;
    gap: 16px; padding: 24px 20px;
  }
  .svc-desc { display: none; }
  .svc-arr { display: none; }
  .svc-rose { width: 120px; height: 120px; }

  .work-grid { grid-template-columns: 1fr; }
  .work-card.wide { grid-column: span 1; aspect-ratio: 16/9; }

  .proc-grid { grid-template-columns: 1fr; }
  .proc-cell { padding: 36px 20px; }

  .cta-section { grid-template-columns: 1fr; }
  .cta-left { padding: 48px 20px; border-right: none; }
  .cta-right { padding: 40px 20px; }

  footer { padding: 16px 20px; flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 480px) {
  nav { padding: 4px; bottom: 12px; }
  nav a { font-size: 8px; letter-spacing: 1px; padding: 8px 12px; }

  .hero-word {
    font-size: clamp(64px, 18vw, 120px);
    padding: 20px 0 0 12px;
  }
  .hero-rose-i {
    height: clamp(52px, 14.4vw, 96px);
    width: clamp(16px, 4.2vw, 30px);
  }
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .hero-meta-right { align-items: flex-start; }

  .about-big-word { font-size: clamp(48px, 14vw, 80px); }

  .svc-row { grid-template-columns: 36px 1fr 80px; gap: 12px; padding: 20px 12px; }
  .svc-name { font-size: clamp(22px, 6vw, 32px); }
  .svc-rose { width: 80px; height: 80px; }

  .work-card { aspect-ratio: 3/2; }

  .cta-big { font-size: clamp(44px, 12vw, 72px); }

  footer { flex-direction: column; align-items: flex-start; gap: 10px; }
}
