@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,700;1,400;1,700&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --mint: #8FFFCB;
  --mint-med: #5CEAA5;
  --mint-dark: #3AD48E;
  --black: #0D0D0D;
  --white: #FFFFFF;
  --gray: #6B6B6B;
  --light: #F7FAF8;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); font-family: 'Syne', sans-serif; color: var(--black); overflow-x: hidden; }
::selection { background: var(--mint); color: var(--black); }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }
input, textarea, select, button { font-family: 'Syne', sans-serif; }
input::placeholder, textarea::placeholder { color: #bbb; }
img { max-width: 100%; display: block; }

/* ═══ ANIMATIONS ═══ */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes scrollDot { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(8px)} }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-33.33%)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes haloPulse { 0%,100%{transform:scale(1);opacity:0.4} 50%{transform:scale(1.15);opacity:0.7} }
@keyframes drawIn { to { stroke-dashoffset: 0; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ═══ REVEAL ON SCROLL ═══ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ═══ SVG DRAWN STROKES ═══ */
.drawn-path { transition: stroke-dashoffset 0.7s cubic-bezier(0.22,1,0.36,1); }
.drawn-active { stroke-dashoffset: 0 !important; }

/* ═══ SECTION SEPARATOR (ondulation verte entre sections) ═══ */
.section-sep {
  position: relative; height: 60px; width: 100%; margin: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.section-sep svg { width: 80%; max-width: 900px; height: 100%; }
.section-sep .drawn-path {
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
}
.section-sep.dark { background: var(--black); }
.section-sep.mint { background: var(--mint); }

/* ═══ NAVBAR ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(20px, 5vw, 80px); height: 70px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 2px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(143,255,203,0.25);
}
.nav-logo { display: flex; align-items: baseline; gap: 1px; }
.nav-logo .mp { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 26px; font-style: italic; color: var(--black); }
.nav-logo .com { font-weight: 400; font-size: 22px; color: var(--black); }
.nav-logo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); display: inline-block; margin-left: 2px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--gray); font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  transition: color 0.25s; position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6' preserveAspectRatio='none'><path d='M 1 4 Q 15 1 30 3 Q 45 5 59 2' fill='none' stroke='%235CEAA5' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-size: 100% 100%;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:not(.nav-cta):hover { color: var(--mint-dark); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 24px; background: var(--mint); color: var(--black) !important;
  font-size: 13px !important; font-weight: 700 !important; letter-spacing: 0.5px;
  border: 2px solid var(--mint); transition: all 0.3s !important;
  border-radius: var(--radius-pill);
}
.nav-cta:hover { background: transparent !important; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 100px 24px 60px; position: relative; overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(143,255,203,0.19) 1.5px, transparent 1.5px);
  background-size: 48px 48px; opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; }
.hero-title-wrap { position: relative; display: inline-block; }
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 700; font-style: italic;
  color: var(--black); letter-spacing: -4px; line-height: 1; margin: 0;
  min-height: clamp(72px, 14vw, 160px);
}
.hero-title .com-part { font-family: 'Syne', sans-serif; font-weight: 400; font-style: normal; letter-spacing: -2px; }
.cursor {
  display: inline-block; width: 4px; height: 0.75em;
  background: var(--mint-dark); margin-left: 4px; vertical-align: baseline;
  animation: blink 0.65s step-end infinite;
}
.cursor.hidden { opacity: 0; animation: none; transition: opacity 0.4s; }
.hero-bar-svg {
  position: absolute; bottom: 12%; left: -5%; width: 110%; height: auto; z-index: -1;
}
.hero-bar-path {
  stroke-dasharray: 640; stroke-dashoffset: 640;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.22,1,0.36,1);
}
.hero-bar-path.drawn { stroke-dashoffset: 0; }
.hero-tagline {
  font-size: clamp(14px, 2vw, 20px); font-style: italic;
  color: var(--gray); margin-top: 28px; letter-spacing: 1px;
  opacity: 0; transform: translateY(14px); transition: all 0.6s ease;
}
.hero-tagline.show { opacity: 1; transform: translateY(0); }
.hero-tagline-line { max-width: 220px; margin: 4px auto 0; opacity: 0; transition: opacity 0.5s ease 0.3s; }
.hero-tagline-line.show { opacity: 1; }
.hero-sub {
  font-size: clamp(13px, 1.6vw, 17px); color: var(--gray);
  margin-top: 32px; max-width: 500px; line-height: 1.7; margin-left: auto; margin-right: auto;
  opacity: 0; transform: translateY(14px); transition: all 0.6s ease 0.2s;
}
.hero-sub.show { opacity: 1; transform: translateY(0); }
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; margin-top: 44px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px); transition: all 0.6s ease 0.4s;
}
.hero-buttons.show { opacity: 1; transform: translateY(0); }

/* ═══ BUTTONS ═══ */
.btn-primary, .btn-secondary, .btn-mint, .btn-ghost {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; font-size: 14px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: all 0.35s;
  border-radius: var(--radius-pill); border: 2px solid transparent; overflow: hidden;
}
.btn-primary { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-primary:hover { background: var(--mint); color: var(--black); border-color: var(--mint); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--black); border-color: #ddd; }
.btn-secondary:hover { border-color: var(--mint); color: var(--mint-dark); transform: translateY(-2px); }
.btn-mint { background: var(--mint); color: var(--black); border-color: var(--mint); }
.btn-mint:hover { background: var(--black); color: var(--mint); border-color: var(--black); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); }

.btn-primary::before, .btn-mint::before {
  content: ''; position: absolute; inset: -10px; border-radius: var(--radius-pill);
  background: radial-gradient(circle, rgba(143,255,203,0.45), transparent 65%);
  opacity: 0; transition: opacity 0.4s; z-index: -1;
}
.btn-primary:hover::before, .btn-mint:hover::before { opacity: 1; animation: haloPulse 1.6s ease-in-out infinite; }

/* Floating drawn elements */
.hero-float {
  position: absolute; opacity: 0; transition: opacity 0.8s ease;
}
.hero-float.show { opacity: 1; }
.hero-float-1 { top: 12%; left: 8%; transition-delay: 0.2s; }
.hero-float-1.show { opacity: 0.6; animation: floaty 4s ease-in-out infinite; }
.hero-float-2 { top: 20%; right: 10%; transition-delay: 0.4s; }
.hero-float-2.show { opacity: 0.5; animation: floaty 5s ease-in-out 0.5s infinite; }
.hero-float-3 { bottom: 22%; left: 12%; transition-delay: 0.6s; }
.hero-float-3.show { opacity: 0.4; animation: floaty 4.5s ease-in-out 1s infinite; }
.hero-float-4 { bottom: 18%; right: 8%; transition-delay: 0.5s; }
.hero-float-4.show { opacity: 0.5; animation: floaty 5s ease-in-out 0.3s infinite; }

/* Cursor trail (hero) */
.cursor-trail {
  position: fixed; pointer-events: none; width: 12px; height: 12px;
  border-radius: 50%; background: var(--mint); opacity: 0;
  transform: translate(-50%, -50%); z-index: 999;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  mix-blend-mode: multiply;
}
.cursor-trail.active { opacity: 0.65; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; transition: opacity 0.6s ease 1.2s;
}
.scroll-cue.show { opacity: 0.45; }
.scroll-mouse {
  width: 20px; height: 32px; border: 2px solid var(--mint-med); border-radius: 10px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-mouse-dot {
  width: 3px; height: 8px; background: var(--mint-med); border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

/* ═══ MARQUEE ═══ */
.marquee-strip {
  background: var(--mint); padding: 14px 0; overflow: hidden; white-space: nowrap;
  border-top: 2px solid rgba(58,212,142,0.19);
  border-bottom: 2px solid rgba(58,212,142,0.19);
}
.marquee-track { display: inline-flex; animation: marquee 20s linear infinite; }
.marquee-item {
  font-size: 14px; font-weight: 700; color: var(--black);
  letter-spacing: 2px; text-transform: uppercase; margin-right: 28px;
}

/* ═══ SECTION HEADERS ═══ */
.section-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.section-label span {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 4px; color: var(--mint-dark);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 700;
  color: var(--black); margin-bottom: 64px; line-height: 1.1; font-style: italic;
}
.highlight {
  position: relative; display: inline; white-space: nowrap;
}
.highlight svg {
  position: absolute; left: -3%; bottom: -2px; width: 106%; height: 100%; z-index: 0;
}
.highlight span { position: relative; z-index: 1; }
.highlight .hl-path {
  stroke-dasharray: 220; stroke-dashoffset: 220;
  transition: stroke-dashoffset 0.7s cubic-bezier(0.22,1,0.36,1) 0.4s;
}
.visible .highlight .hl-path, .highlight.active .hl-path { stroke-dashoffset: 0; }

/* ═══ SERVICES ═══ */
.services { padding: 120px clamp(20px, 5vw, 80px); background: var(--white); position: relative; }
.services-inner { max-width: 1280px; margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  position: relative; padding: 40px 32px 36px; overflow: hidden;
  background: var(--light); border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.35s, background 0.35s, box-shadow 0.4s;
}
.service-card:hover {
  background: var(--white); border-color: var(--mint);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -20px rgba(58,212,142,0.45);
}
.service-card .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.service-card .num { font-size: 11px; font-weight: 700; color: var(--mint-dark); letter-spacing: 3px; }
.service-card .icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--white); border: 2px solid rgba(58,212,142,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s;
}
.service-card:hover .icon-wrap { background: var(--mint); border-color: var(--mint); }
.service-card .icon-wrap svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 26px;
  font-weight: 700; color: var(--black); margin-bottom: 8px; font-style: italic;
}
.service-card .tagline {
  font-size: 13px; color: var(--mint-dark); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px;
}
.service-card ul { list-style: none; padding: 0; margin: 0 0 12px; }
.service-card ul li {
  position: relative; padding-left: 22px; font-size: 14px;
  line-height: 1.65; color: var(--gray); margin-bottom: 8px;
}
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 2px;
  background: var(--mint); border-radius: 2px; transition: width 0.3s;
}
.service-card:hover ul li::before { width: 16px; }
.service-card .sparkle {
  position: absolute; top: 16px; right: 16px; opacity: 0;
  transition: opacity 0.4s; pointer-events: none;
}
.service-card:hover .sparkle { opacity: 1; animation: spin 6s linear infinite; }
.service-card .card-deco {
  position: absolute; bottom: -10px; right: -10px; opacity: 0.18;
  transition: opacity 0.35s, transform 0.5s;
}
.service-card:hover .card-deco { opacity: 0.4; transform: scale(1.15) rotate(-8deg); }

/* ═══ PORTFOLIO ═══ */
.portfolio { padding: 120px clamp(20px, 5vw, 80px); background: var(--light); position: relative; }
.portfolio-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.portfolio-bg-deco { position: absolute; top: 40px; right: 5%; opacity: 0; transition: opacity 1s ease 0.3s; }
.portfolio-bg-deco.show { opacity: 0.15; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-card {
  position: relative; overflow: hidden; cursor: pointer;
  transition: all 0.4s ease;
  border-radius: var(--radius-lg);
  display: block;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.25); }
.project-card .proj-bar {
  position: absolute; top: 0; left: 0; height: 4px;
  background: var(--mint); width: 0%; transition: width 0.55s ease;
  border-radius: 0 var(--radius-lg) 0 0;
  z-index: 2;
}
.project-card:hover .proj-bar { width: 100%; }
.project-card-inner {
  aspect-ratio: 4/3; display: flex; flex-direction: column;
  justify-content: space-between; padding: 32px;
  position: relative;
}
.project-card .type {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gray);
}
.project-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 30px;
  font-weight: 700; color: var(--black); margin-top: 6px; font-style: italic;
}
.project-card .proj-arrow {
  position: absolute; bottom: 22px; right: 22px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(20px); opacity: 0;
  transition: opacity 0.35s, transform 0.4s, background 0.35s;
}
.project-card:hover .proj-arrow { opacity: 1; transform: translateX(0); background: var(--mint); color: var(--black); }
.project-card .proj-cover {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.5s; z-index: 0;
}
.project-card.has-cover .proj-cover { opacity: 1; }
.project-card.has-cover .project-card-inner { background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%); position: relative; z-index: 1; }
.project-card.has-cover .type { color: rgba(255,255,255,0.85); }
.project-card.has-cover h3 { color: var(--white); }

/* ═══ APPROACH ═══ */
.approach {
  padding: 120px clamp(20px, 5vw, 80px); background: var(--black);
  position: relative; overflow: hidden;
}
.approach-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.approach .section-label span { color: var(--mint); }
.approach .section-title { color: var(--white); }
.approach-deco-1 { position: absolute; top: 10%; right: 6%; opacity: 0; transition: opacity 1s; }
.approach-deco-1.show { opacity: 0.2; }
.approach-deco-2 { position: absolute; bottom: 10%; left: 4%; opacity: 0; transition: opacity 1s ease 0.4s; }
.approach-deco-2.show { opacity: 0.15; }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 0;
}
.step { padding: 40px 28px; }
.step + .step { border-left: 1px solid rgba(143,255,203,0.13); }
.step .step-num {
  font-size: 44px; font-weight: 800; color: rgba(143,255,203,0.19);
  display: block; margin-bottom: 16px; line-height: 1;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 24px;
  font-weight: 700; color: var(--mint); margin-bottom: 12px; font-style: italic;
}
.step p { font-size: 14px; line-height: 1.75; color: #aaa; }
.step .step-line { margin-top: 20px; opacity: 0.4; }

/* ═══ STATS ═══ */
.stats {
  padding: 64px clamp(20px, 5vw, 80px); background: var(--mint); position: relative;
}
.stats-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px;
}
.stat { text-align: center; }
.stat .val {
  font-family: 'Cormorant Garamond', serif; font-size: 44px;
  font-weight: 700; color: var(--black); display: block; font-style: italic;
}
.stat .label {
  font-size: 12px; font-weight: 600; color: rgba(13,13,13,0.56);
  text-transform: uppercase; letter-spacing: 2px;
}
.stats-top-line {
  position: absolute; top: -3px; left: 0; width: 100%; height: 8px;
}

/* ═══ CONTACT ═══ */
.contact { padding: 120px clamp(20px, 5vw, 80px); background: var(--white); position: relative; }
.contact-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.contact-deco-1 { position: absolute; top: 60px; right: 8%; opacity: 0; transition: opacity 0.8s; }
.contact-deco-1.show { opacity: 0.2; }
.contact-deco-2 { position: absolute; bottom: 80px; left: 6%; opacity: 0; transition: opacity 0.8s ease 0.3s; }
.contact-deco-2.show { opacity: 0.15; }
.contact p.sub { font-size: 16px; color: var(--gray); margin-bottom: 52px; line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 16px 20px; border: 2px solid #ececec;
  background: var(--white); font-size: 15px; color: var(--black);
  outline: none; transition: border-color 0.3s, box-shadow 0.3s; width: 100%;
  border-radius: var(--radius);
}
.contact-form select { cursor: pointer; appearance: none; color: var(--gray);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 18px center;
  padding-right: 44px;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--mint); box-shadow: 0 0 0 4px rgba(143,255,203,0.2);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.success-msg {
  text-align: center; padding: 56px; border: 2px solid var(--mint);
  background: rgba(143,255,203,0.07); position: relative; display: none;
  border-radius: var(--radius-lg);
}
.success-msg.show { display: block; }
.success-msg .check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px;
}
.success-msg h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 700; color: var(--black); font-style: italic; margin-bottom: 8px;
}
.success-msg p { font-size: 15px; color: var(--gray); }
.error-msg {
  background: #FFF0F0; border: 2px solid #FFB8B8; color: #B33A3A;
  padding: 14px 20px; border-radius: var(--radius); font-size: 14px;
  display: none; margin-top: 8px;
}
.error-msg.show { display: block; }

/* ═══ FOOTER ═══ */
.footer { background: var(--black); padding: 56px clamp(20px, 5vw, 80px) 40px; position: relative; }
.footer-top-line { position: absolute; top: 0; left: 0; width: 100%; height: 6px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
}
.footer-logo .mp { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 28px; color: var(--white); font-style: italic; }
.footer-logo .com { font-size: 24px; color: var(--white); font-weight: 400; }
.footer-logo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); display: inline-block; margin-left: 3px; }
.footer-logo p { font-size: 14px; color: #888; font-style: italic; margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer-cols { display: flex; gap: 48px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--mint); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: #888; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(143,255,203,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12px; color: #555; }
.footer-bottom .socials { display: flex; gap: 12px; align-items: center; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(143,255,203,0.15);
  transition: all 0.3s; color: #888;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  background: var(--mint); color: var(--black); border-color: var(--mint);
  transform: translateY(-3px);
}
.admin-link {
  font-size: 11px; color: #444; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s; margin-left: 16px;
}
.admin-link:hover { color: var(--mint); }

/* ═══ PROJECT PAGE ═══ */
.project-page { padding-top: 70px; }
.project-hero {
  padding: 80px clamp(20px, 5vw, 80px) 60px; position: relative; overflow: hidden;
  text-align: center;
}
.project-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.project-back {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px;
  color: var(--gray); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 32px; transition: color 0.2s;
}
.project-back:hover { color: var(--mint-dark); }
.project-meta {
  display: inline-flex; align-items: center; gap: 16px; margin-bottom: 24px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px;
}
.project-meta .badge {
  padding: 6px 14px; background: var(--mint); color: var(--black);
  border-radius: var(--radius-pill);
}
.project-meta .year { color: var(--gray); }
.project-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 8vw, 96px);
  font-weight: 700; font-style: italic; line-height: 1; letter-spacing: -2px;
  margin-bottom: 24px;
}
.project-tagline {
  font-size: clamp(16px, 2vw, 20px); color: var(--gray); font-style: italic;
  max-width: 600px; margin: 0 auto 40px; line-height: 1.6;
}
.project-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.project-cover {
  max-width: 1200px; margin: 0 auto 80px; aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  border-radius: var(--radius-lg);
}
.project-cover.empty {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 80px; font-style: italic;
  color: rgba(13,13,13,0.15);
}
.project-blocks {
  max-width: 900px; margin: 0 auto 100px;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.project-block {
  padding: 32px 28px; background: var(--light); border-radius: var(--radius-lg);
  border: 2px solid transparent; transition: all 0.35s;
}
.project-block:hover { border-color: var(--mint); background: var(--white); }
.project-block .block-label {
  font-size: 11px; font-weight: 700; color: var(--mint-dark);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.project-block h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 700; font-style: italic; margin-bottom: 14px; line-height: 1.2;
}
.project-block p { font-size: 14px; line-height: 1.75; color: var(--gray); }
.project-gallery {
  max-width: 1200px; margin: 0 auto 100px;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px;
}
.project-gallery-item {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.4s;
}
.project-gallery-item:hover { transform: scale(1.02); }
.project-next {
  background: var(--black); padding: 80px clamp(20px, 5vw, 80px);
  text-align: center; color: var(--white);
}
.project-next .next-label {
  font-size: 11px; color: var(--mint); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 16px;
}
.project-next h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 5vw, 56px);
  font-style: italic; margin-bottom: 24px;
}
.project-not-found {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 80px 20px;
  text-align: center; gap: 24px;
}
.project-not-found h1 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 56px; }
.project-not-found p { color: var(--gray); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .project-blocks { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step + .step { border-left: none; }
  .footer-cols { flex-direction: column; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project-cover { margin-bottom: 40px; aspect-ratio: 4/3; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
