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

:root {
  --cream: #faf6f0;
  --warm-white: #fff9f3;
  --sand: #e8ddd0;
  --sand-dark: #d4c5b5;
  --terracotta: #c47a5a;
  --terracotta-light: #d9937a;
  --terracotta-pale: rgba(196,122,90,0.08);
  --brown: #6b4c3b;
  --brown-dark: #3d2b1f;
  --sage: #7a9e7e;
  --sage-mid: #8faf93;
  --sage-light: #b5c9b7;
  --sage-pale: rgba(122,158,126,0.1);
  --sage-bg: #eef4ee;
  --muted: #9b8b80;
  --ink: #2c1f1a;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  width: 12px; height: 12px;
  background: var(--terracotta);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s, width .3s, height .3s, background .3s;
  mix-blend-mode: multiply;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .15s ease;
  opacity: .5;
}

/* ── GRAIN ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: .5;
}

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 600; padding: 1.4rem 3.5rem; display: flex; justify-content: space-between; align-items: center; transition: background .4s, backdrop-filter .4s; }
nav.scrolled { background: rgba(250,246,240,0.88); backdrop-filter: blur(16px); border-bottom: 1px solid var(--sand); }
.nav-logo { font-family: 'Lora', serif; font-size: 1.35rem; font-weight: 600; color: var(--brown-dark); letter-spacing: .06em; text-decoration: none; position: relative; }
.nav-logo::after { content: '✦'; font-size: .5rem; color: var(--terracotta); position: absolute; top: 2px; right: -12px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: .8rem; font-weight: 400; color: var(--muted); text-decoration: none; letter-spacing: .1em; text-transform: uppercase; position: relative; transition: color .3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--terracotta); transition: width .3s ease; }
.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { width: 100%; background: var(--sage); }
.nav-lang { display: flex; background: var(--warm-white); border: 1.5px solid var(--sand); border-radius: 100px; overflow: hidden; }
.nav-lang a { padding: .3rem .9rem; font-size: .72rem; font-weight: 500; letter-spacing: .06em; color: var(--muted); text-decoration: none; transition: all .2s; display: block; }
.nav-lang a.active { background: var(--terracotta); color: #fff; }

/* ── HERO ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 7rem 3.5rem 4rem; gap: 5rem; position: relative; overflow: visible; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.blob-1 { width: 550px; height: 550px; background: radial-gradient(circle, rgba(196,122,90,0.22), transparent 70%); top: -120px; right: -80px; animation: blobFloat 8s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(122,158,126,0.25), transparent 70%); bottom: 0; left: -100px; animation: blobFloat 10s ease-in-out infinite reverse; }
.blob-3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(196,122,90,0.12), transparent 70%); top: 40%; left: 40%; animation: blobFloat 7s ease-in-out infinite 2s; }
.blob-4 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(122,158,126,0.18), transparent 70%); top: 20%; right: 30%; animation: blobFloat 9s ease-in-out infinite 1s; }
@keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(20px,-30px) scale(1.05)} 66%{transform:translate(-15px,15px) scale(.95)} }

.hero-left { position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .7rem; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: 1.8rem; opacity: 0; animation: revealUp .9s .1s ease forwards; }
.hero-eyebrow span { display: inline-block; width: 32px; height: 1px; background: var(--terracotta); }
.hero-title { font-family: 'Lora', serif; font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 600; line-height: 1.06; color: var(--brown-dark); margin-bottom: .6rem; opacity: 0; animation: revealUp .9s .2s ease forwards; }
.hero-title em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--terracotta); position: relative; }
.hero-title em::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--terracotta), transparent); }
.hero-sub { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--sage); font-style: italic; margin-bottom: 2.5rem; line-height: 1.7; opacity: 0; animation: revealUp .9s .3s ease forwards; }
.name-row { display: flex; align-items: center; gap: .8rem; margin-bottom: 2rem; opacity: 0; animation: revealUp .9s .4s ease forwards; }
.name-pill { background: var(--sand); border-radius: 100px; padding: .45rem 1.1rem; font-size: .88rem; color: var(--brown-dark); font-weight: 500; letter-spacing: .04em; position: relative; overflow: hidden; transition: color .3s; }
.name-pill::before { content: ''; position: absolute; inset: 0; background: var(--sage); opacity: 0; transition: opacity .3s; }
.name-pill:hover { color: #fff; }
.name-pill:hover::before { opacity: 1; }
.name-pill span { position: relative; z-index: 1; }
.name-plus { color: var(--sage); font-size: 1.1rem; }
.name-eq { font-size: .82rem; color: var(--sage); }
.hero-desc { font-size: .95rem; color: var(--brown); line-height: 1.9; max-width: 400px; margin-bottom: 2.8rem; opacity: 0; animation: revealUp .9s .5s ease forwards; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: revealUp .9s .6s ease forwards; }

.btn-primary { background: var(--brown-dark); color: #fff; border: none; padding: .9rem 2rem; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 500; cursor: none; text-decoration: none; transition: background .3s, transform .25s, box-shadow .3s; letter-spacing: .03em; position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--terracotta); opacity: 0; transition: opacity .3s; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(196,122,90,.3); }
.btn-ghost { background: transparent; color: var(--brown); border: 1.5px solid var(--sand); padding: .9rem 2rem; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 400; cursor: none; text-decoration: none; transition: border-color .3s, color .3s, transform .25s, background .3s; }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-3px); background: var(--sage-pale); }

.hero-right { display: flex; justify-content: center; align-items: center; position: relative; z-index: 1; opacity: 0; animation: revealRight 1s .4s ease forwards; }
.photo-wrap { position: relative; width: 100%; max-width: 400px; overflow: visible; }
.photo-main { background: var(--sand); border-radius: 28px; aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.photo-main::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(122,158,126,0.18), rgba(196,122,90,0.1)); }
.photo-main img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.photo-placeholder { font-size: 3.5rem; opacity: .3; position: relative; z-index: 1; }
.photo-caption { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); opacity: .5; margin-top: .8rem; position: relative; z-index: 1; }
.deco-card { position: absolute; background: var(--warm-white); border: 1px solid var(--sand); border-radius: 16px; padding: .9rem 1.2rem; box-shadow: 0 8px 30px rgba(60,30,15,.1); font-size: .78rem; }
.deco-card-2 { bottom: 30px; left: -20px; animation: floatCard 6s ease-in-out infinite reverse; }
.deco-card-2::before { content: ''; position: absolute; top: -4px; right: -4px; width: 10px; height: 10px; background: var(--sage); border-radius: 50%; border: 2px solid var(--warm-white); }
.deco-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .2rem; }
.deco-value { font-family: 'Lora', serif; font-size: .95rem; color: var(--brown-dark); font-weight: 600; }
@keyframes floatCard { 0%,100%{transform:translateY(0px) rotate(-1deg)} 50%{transform:translateY(-10px) rotate(1deg)} }

/* ── STRIP ── */
.strip { background: #2d3d2e; padding: 0; overflow: hidden; }
.strip-track { display: flex; gap: 0; animation: scrollStrip 20s linear infinite; width: max-content; }
.strip-item { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 2.5rem; white-space: nowrap; color: rgba(181,201,183,.75); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.strip-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage-light); }
.strip-item:nth-child(even) .dot { background: var(--terracotta-light); }
@keyframes scrollStrip { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION HEADER ── */
.section-head { margin-bottom: 3rem; }
.section-eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); font-weight: 500; margin-bottom: .8rem; animation: pulseGlow 3s ease-in-out infinite; }
.section-title { font-family: 'Lora', serif; font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 600; color: var(--brown-dark); line-height: 1.2; margin-bottom: .7rem; position: relative; display: inline-block; }
.section-title::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 40px; height: 2px; background: linear-gradient(90deg, var(--sage), transparent); }
.section-desc { color: var(--muted); font-size: .92rem; line-height: 1.8; max-width: 480px; margin-top: 1rem; }
.section-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.see-all { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--sage); text-decoration: none; font-weight: 500; letter-spacing: .04em; transition: gap .3s; }
.see-all:hover { gap: .8rem; }

/* ── SPACES ── */
.spaces-section { padding: 7rem 3.5rem; max-width: 1150px; margin: 0 auto; }
.spaces-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.space-card { background: var(--warm-white); border: 1px solid var(--sand); border-radius: 22px; padding: 2rem; transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s, border-color .35s; cursor: none; text-decoration: none; color: inherit; display: block; position: relative; overflow: hidden; }
.space-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(122,158,126,.06), rgba(122,158,126,.02)); opacity: 0; transition: opacity .35s; }
.space-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sage), var(--terracotta)); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.space-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(60,30,15,.12); border-color: var(--sage-light); }
.space-card:hover::before { opacity: 1; }
.space-card:hover::after { transform: scaleX(1); }
.space-icon { font-size: 2rem; margin-bottom: 1rem; display: block; transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.space-card:hover .space-icon { transform: scale(1.15) rotate(-5deg); }
.space-subdomain { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); font-weight: 500; margin-bottom: .45rem; }
.space-name { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 600; color: var(--brown-dark); margin-bottom: .5rem; }
.space-desc { font-size: .83rem; color: var(--muted); line-height: 1.7; }
.space-arrow { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; font-size: .8rem; color: var(--sage); font-weight: 500; transition: gap .3s; }
.space-card:hover .space-arrow { gap: .7rem; }
.space-card.dim { opacity: .55; cursor: default; }
.space-card.dim:hover { transform: none; box-shadow: none; }
.space-card.dim::before, .space-card.dim::after { opacity: 0 !important; transform: scaleX(0) !important; }
.coming-tag { display: inline-block; background: var(--sage-bg); color: var(--sage); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; padding: .22rem .6rem; border-radius: 100px; margin-top: .8rem; }
.space-card.dashed { border-style: dashed; background: transparent; }

/* ── JOURNAL ── */
.blog-section { background: var(--sage-bg); border-top: 1px solid rgba(122,158,126,.2); border-bottom: 1px solid rgba(122,158,126,.2); padding: 7rem 3.5rem; }
.blog-inner { max-width: 1150px; margin: 0 auto; }
.articles-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.4rem; }
.article-card { background: var(--warm-white); border: 1px solid rgba(122,158,126,.2); border-radius: 20px; overflow: hidden; cursor: none; text-decoration: none; color: inherit; transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(60,30,15,.1); }
.article-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; overflow: hidden; transition: transform .5s ease; }
.article-card:hover .article-thumb { transform: scale(1.04); }
.article-thumb.t1 { background: linear-gradient(135deg, #e8ddd0, #d4c5b5); }
.article-thumb.t2 { background: linear-gradient(135deg, #c8ddc9, #a8c4aa); }
.article-thumb.t3 { background: linear-gradient(135deg, #e5d8cf, #d1bfb5); }
.article-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.article-tag { display: inline-block; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; padding: .2rem .6rem; border-radius: 100px; margin-bottom: .6rem; }
.article-tag.tech { background: var(--terracotta-pale); color: var(--terracotta); }
.article-tag.craft { background: var(--sage-pale); color: var(--sage); }
.article-tag.design { background: rgba(107,76,59,.08); color: var(--brown); }
.article-title { font-family: 'Lora', serif; font-size: 1rem; font-weight: 600; color: var(--brown-dark); line-height: 1.4; margin-bottom: .5rem; }
.article-excerpt { font-size: .82rem; color: var(--muted); line-height: 1.7; flex: 1; }
.article-meta { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .75rem; color: var(--muted); }
.article-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

/* ── PORTFOLIO ── */
.portfolio-section { padding: 7rem 3.5rem; max-width: 1150px; margin: 0 auto; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 2.5rem; }
.portfolio-card { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: none; text-decoration: none; }
.portfolio-card.wide { grid-column: span 2; aspect-ratio: 16/7; }
.port-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; transition: transform .4s ease; }
.portfolio-card:hover .port-bg { transform: scale(1.08); }
.port-bg.p1 { background: #e8d8d0; }
.port-bg.p2 { background: #d8e8d9; }
.port-bg.p3 { background: #e2d4ca; }
.port-bg.p4 { background: #d4e4d5; }
.port-bg.p5 { background: #edd8ce; }
.port-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,40,23,.88) 0%, rgba(22,40,23,.2) 50%, transparent 70%); opacity: 0; transition: opacity .35s; }
.portfolio-card:hover .port-overlay { opacity: 1; }
.port-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.4rem; transform: translateY(8px); opacity: 0; transition: transform .35s ease, opacity .35s; }
.portfolio-card:hover .port-info { transform: translateY(0); opacity: 1; }
.port-cat { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-light); margin-bottom: .3rem; }
.port-name { font-family: 'Lora', serif; font-size: 1rem; font-weight: 600; color: #fff; }

/* ── STORY ── */
.story-section { background: #263d28; padding: 7rem 3.5rem; position: relative; overflow: hidden; }
.story-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(196,122,90,.1), transparent 60%); pointer-events: none; }
.story-section::before { content: 'Kyoma'; position: absolute; right: -2rem; top: 50%; transform: translateY(-50%) rotate(-90deg); font-family: 'Lora', serif; font-size: 14rem; font-weight: 600; color: rgba(255,255,255,.02); white-space: nowrap; pointer-events: none; letter-spacing: .2em; }
.story-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.story-eyebrow { display: inline-flex; align-items: center; gap: .8rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-light); font-weight: 500; margin-bottom: 2rem; }
.story-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; color: var(--cream); line-height: 1.55; margin-bottom: 2rem; }
.story-body { font-size: .92rem; color: rgba(250,246,240,.6); line-height: 1.95; margin-bottom: 2.5rem; }
.story-names { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.story-name-pill { background: rgba(122,158,126,.12); border: 1px solid rgba(122,158,126,.25); border-radius: 100px; padding: .45rem 1.1rem; font-size: .85rem; color: var(--cream); font-weight: 500; transition: background .3s; }
.story-name-pill:hover { background: rgba(122,158,126,.22); }
.story-plus { color: var(--sage-light); }

/* ── CONNECT ── */
.connect-section { padding: 7rem 3.5rem; max-width: 1150px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 3rem; flex-wrap: wrap; }
.connect-left h2 { font-family: 'Lora', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--brown-dark); margin-bottom: .7rem; line-height: 1.2; }
.connect-left p { font-size: .92rem; color: var(--muted); line-height: 1.7; max-width: 360px; }
.connect-accent { color: var(--sage); }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.social-btn { display: flex; align-items: center; gap: .8rem; padding: .9rem 1.4rem; border-radius: 16px; border: 1.5px solid var(--sand); background: var(--warm-white); color: var(--brown); font-size: .85rem; font-family: 'DM Sans', sans-serif; cursor: none; text-decoration: none; transition: all .3s; font-weight: 400; position: relative; overflow: hidden; }
.social-btn::before { content: ''; position: absolute; inset: 0; background: var(--sage-pale); opacity: 0; transition: opacity .3s; }
.social-btn:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(122,158,126,.15); }
.social-btn:hover::before { opacity: 1; }
.social-btn span { position: relative; z-index: 1; }
.social-icon { font-size: 1.1rem; position: relative; z-index: 1; }

/* ── CONTACT ── */
.contact-section { background: var(--sage-bg); border-top: 1px solid rgba(122,158,126,.2); border-bottom: 1px solid rgba(122,158,126,.2); padding: 7rem 3.5rem; }
.contact-inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.contact-left { position: sticky; top: 100px; }
.contact-left .section-head { margin-bottom: 2rem; }
.contact-tagline { font-size: .9rem; color: var(--muted); line-height: 1.9; margin-bottom: 2.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; align-items: center; gap: .9rem; }
.contact-info-icon { width: 38px; height: 38px; background: var(--warm-white); border: 1px solid var(--sand); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-info-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .1rem; }
.contact-info-value { font-size: .88rem; color: var(--brown-dark); font-weight: 500; }
.contact-form { background: var(--warm-white); border: 1px solid rgba(122,158,126,.2); border-radius: 24px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field.full { grid-column: span 2; }
.form-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-textarea { background: var(--cream); border: 1.5px solid var(--sand); border-radius: 12px; padding: .85rem 1.1rem; font-family: 'DM Sans', sans-serif; font-size: .88rem; color: var(--ink); font-weight: 300; outline: none; transition: border-color .25s, box-shadow .25s, background .25s; width: 100%; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: .6; }
.form-input:focus, .form-textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,158,126,.12); background: #fff; }
.form-textarea { resize: none; min-height: 140px; line-height: 1.7; }
.form-submit { width: 100%; padding: 1rem; background: var(--brown-dark); color: #fff; border: none; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500; cursor: none; letter-spacing: .04em; position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s; margin-top: .5rem; }
.form-submit::before { content: ''; position: absolute; inset: 0; background: var(--terracotta); opacity: 0; transition: opacity .3s; }
.form-submit span { position: relative; z-index: 1; }
.form-submit:hover::before { opacity: 1; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(196,122,90,.28); }
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.contact-form.submitted .form-fields { display: none; }
.contact-form.submitted .form-success { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; animation: successPop .5s cubic-bezier(.34,1.56,.64,1) forwards; }
.success-title { font-family: 'Lora', serif; font-size: 1.4rem; color: var(--brown-dark); margin-bottom: .6rem; }
.success-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.field-footer { display: flex; justify-content: flex-end; margin-top: .3rem; }
.char-count { font-size: .7rem; color: var(--muted); opacity: .6; transition: color .2s; }
.char-count.warn { color: var(--terracotta); opacity: 1; }

/* ── FOOTER ── */
footer { background: #1e2e1f; color: rgba(181,201,183,.5); padding: 2.5rem 3.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; border-top: 1px solid rgba(122,158,126,.2); }
.footer-logo { font-family: 'Lora', serif; font-size: 1.2rem; color: var(--sage-light); letter-spacing: .06em; }
.footer-tagline { font-family: 'Lora', serif; font-style: italic; font-size: .85rem; color: rgba(181,201,183,.5); }
.footer-copy { font-size: .78rem; }
.footer-dot { color: var(--sage); opacity: .6; margin: 0 .5rem; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .7s ease, transform .7s cubic-bezier(.34,1.56,.64,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── KEYFRAMES ── */
@keyframes revealUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes revealRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes pulseGlow { 0%,100%{text-shadow:0 0 0px transparent} 50%{text-shadow:0 0 12px rgba(122,158,126,.4)} }
@keyframes successPop { from{transform:scale(.5);opacity:0} to{transform:scale(1);opacity:1} }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-6px)} 75%{transform:translateX(6px)} }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.8rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 6rem 1.8rem 3rem; gap: 3rem; }
  .hero-right { order: -1; }
  .spaces-section, .portfolio-section, .connect-section { padding: 5rem 1.8rem; }
  .blog-section, .story-section, .contact-section { padding: 5rem 1.8rem; }
  .spaces-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card.wide { grid-column: span 2; }
  .social-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-left { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  footer { padding: 2rem 1.8rem; flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .spaces-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.wide { grid-column: span 1; aspect-ratio: 4/3; }
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Re-enable pada form elements */
input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
