/*
Theme Name: MiNa Arttech Coming Soon
Theme URI: https://minaarttechstudio.com
Author: MiNa Arttech Studio
Author URI: https://minaarttechstudio.com
Description: Coming-soon landing for MiNa Arttech Studio LLC. Hybrid atelier - IT, AI consulting and art.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: All Rights Reserved
License URI: https://minaarttechstudio.com
Text Domain: mina-arttech-coming-soon
Tags: coming-soon, custom-colors, custom-logo, dark
*/
/* MiNa ArtTech Studio — Landing en construcción */
:root {
  --bg: #0a0907;
  --bg-soft: #14110d;
  --bg-card: #1a1611;
  --ink: #f1ead7;
  --ink-soft: #c9bfa5;
  --ink-mute: #6b6353;
  --gold: #c9a14a;
  --gold-bright: #e8c97a;
  --gold-deep: #8a6d2c;
  --line: rgba(201, 161, 74, 0.18);
  --line-soft: rgba(241, 234, 215, 0.08);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
  --speed: 1;
}

[data-theme="light"] {
  --bg: #f4ecd8;
  --bg-soft: #ebe1c8;
  --bg-card: #ffffff;
  --ink: #15110a;
  --ink-soft: #3a3324;
  --ink-mute: #7a6f55;
  --line: rgba(138, 109, 44, 0.25);
  --line-soft: rgba(21, 17, 10, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body[data-grain="off"] .grain { display: none; }

/* Vignette */
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 100%);
}
[data-theme="light"] .vignette {
  background: radial-gradient(ellipse at center, transparent 40%, rgba(60, 45, 15, 0.18) 100%);
}

/* Gold dust particles */
.dust { position: fixed; inset: 0; pointer-events: none; z-index: 2; }
body[data-effects="off"] .dust,
body[data-effects="off"] .grain { display: none; }

/* Layout */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* Top bar */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 24px clamp(20px, 4vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, var(--bg) 60%, transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--gold-bright);
  font-style: italic;
}
.brand-name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-name b { font-weight: 600; color: var(--gold-bright); font-style: italic; }
.brand-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse calc(2s / var(--speed)) ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  padding: 120px clamp(20px, 4vw, 60px) 80px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
}

.hero-text { position: relative; z-index: 3; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  background: linear-gradient(120deg, var(--gold-bright), var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: shimmer calc(8s / var(--speed)) ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 48px;
  font-weight: 300;
}

/* Construction progress */
.progress-block {
  margin-bottom: 48px;
  max-width: 460px;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.progress-pct {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  color: var(--gold-bright);
  letter-spacing: 0;
}
.progress-track {
  height: 1px;
  background: var(--line-soft);
  position: relative;
  overflow: visible;
}
.progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  width: 0;
  transition: width calc(0.6s / var(--speed)) ease-out;
}
.progress-fill::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 16px var(--gold-bright), 0 0 4px #fff;
}
.progress-stages {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.progress-stages span { transition: color 0.4s; }
.progress-stages span.active { color: var(--gold-bright); }

/* Notify form */
.notify {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  max-width: 460px;
}
.notify-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.notify-label::before {
  content: "✦";
  color: var(--gold);
  font-size: 12px;
}
.notify-form {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.notify-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  padding: 8px 0;
}
.notify-form input::placeholder { color: var(--ink-mute); }
.notify-form button {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.3s;
  font-size: 16px;
}
.notify-form button:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateX(4px);
}

.notify-meta {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* HERO IMAGE */
.hero-visual {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.bust-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.bust-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 80px rgba(201, 161, 74, 0.15));
  animation: float calc(8s / var(--speed)) ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.4deg); }
}

/* Brushstrokes overlay */
.brushstrokes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.brushstrokes svg {
  width: 100%; height: 100%;
}
.brush-path {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px var(--gold));
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw calc(4s / var(--speed)) ease-out forwards;
}
.brush-path.b2 { animation-delay: calc(0.6s / var(--speed)); stroke-width: 1.5; opacity: 0.6; }
.brush-path.b3 { animation-delay: calc(1.2s / var(--speed)); stroke-width: 1; opacity: 0.4; }
@keyframes draw {
  to { stroke-dashoffset: 0; }
}

/* Halo / circle behind bust */
.halo {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  border: 1px solid var(--line);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate calc(60s / var(--speed)) linear infinite;
}
.halo::before, .halo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--line);
}
.halo::before {
  inset: -8%;
  border-style: dashed;
  opacity: 0.5;
}
.halo::after {
  inset: 8%;
  border-color: rgba(201, 161, 74, 0.1);
}
@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Corner labels around bust */
.tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
}
.tag::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
}
.tag.tl { top: 8%; left: -4%; }
.tag.tr { top: 14%; right: -2%; flex-direction: row-reverse; }
.tag.tr::before { background: var(--gold); }
.tag.bl { bottom: 14%; left: 0%; }
.tag.br { bottom: 8%; right: -4%; flex-direction: row-reverse; }

/* DIVIDER strip */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}
.strip-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee calc(40s / var(--speed)) linear infinite;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-soft);
}
.strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.strip-track .dot {
  color: var(--gold-bright);
  font-style: normal;
  font-size: 16px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* SERVICES */
.services {
  padding: 120px clamp(20px, 4vw, 60px);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 800px) {
  .services-head { grid-template-columns: 1fr; }
}
.services-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.services-title em { font-style: italic; color: var(--gold-bright); }
.services-sub {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 420px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }

.service {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.4s;
  cursor: default;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.service:hover { background: var(--bg-soft); }
.service:hover .service-num { color: var(--gold-bright); }
.service:last-child { border-right: 1px solid var(--line); }

.service-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  margin-bottom: 28px;
  transition: color 0.3s;
}
.service-icon {
  width: 36px; height: 36px;
  margin-bottom: 24px;
  color: var(--gold-bright);
}
.service-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-name em { font-style: italic; }
.service-desc {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin-top: auto;
}

/* MANIFESTO */
.manifesto {
  padding: 120px clamp(20px, 4vw, 60px);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .manifesto-grid { grid-template-columns: 1fr; gap: 40px; } }

.manifesto-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  position: sticky;
  top: 100px;
}

.manifesto-body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.manifesto-body em {
  font-style: italic;
  color: var(--gold-bright);
}
.manifesto-body p + p { margin-top: 28px; }

/* TYPEWRITER caret */
.caret {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: var(--gold-bright);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink calc(1s / var(--speed)) steps(1) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* DUALITY split */
.duality {
  padding: 120px clamp(20px, 4vw, 60px);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.duality-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: stretch;
}
@media (max-width: 800px) { .duality-grid { grid-template-columns: 1fr; gap: 40px; } .duality-grid .divider { display: none; } }

.duality-grid .divider {
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.col-head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.col-head-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-bright);
}

.col-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.col-title em { font-style: italic; color: var(--gold-bright); }

.col-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}

.col-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.col-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
}
.col-list li::before {
  content: "—";
  color: var(--gold);
  margin-right: 10px;
}
.col-list li span:first-of-type { flex: 1; }
.col-list .meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px clamp(20px, 4vw, 60px) 40px;
  position: relative;
  z-index: 3;
}
.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-brand-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin-top: 18px;
  max-width: 380px;
  line-height: 1.4;
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 6px 0;
  cursor: pointer;
  transition: color 0.3s;
}
.footer-col li:hover { color: var(--gold-bright); }

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 20px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity calc(0.9s / var(--speed)) ease-out, transform calc(0.9s / var(--speed)) ease-out;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Crack overlay over bust — animated SVG paths */
.cracks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.crack-path {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px var(--gold));
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawCrack calc(3.5s / var(--speed)) calc(0.8s / var(--speed)) ease-out forwards;
}
.crack-path.c2 { animation-delay: calc(1.4s / var(--speed)); }
.crack-path.c3 { animation-delay: calc(2s / var(--speed)); }
@keyframes drawCrack {
  to { stroke-dashoffset: 0; }
}
