/* =========================================
   Lumiere Studios — Redesign 2026
   Brand: Green #3AB54A | Forest #1E6B35 | Black #111 | Cream #F5F3EF | Red (logo dot)
   Font: Plus Jakarta Sans
   ========================================= */

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

:root {
  --green:       #3AB54A;
  --green-dark:  #2a9139;
  --forest:      #1E6B35;
  --black:       #0F0F0F;
  --white:       #FFFFFF;
  --cream:       #F5F3EF;
  --cream-dark:  #EAE7DF;
  --beige:       #C8C2B0;
  --red-accent:  #E5232A;
  --text:        #1A1A1A;
  --text-soft:   #555555;
  --text-muted:  #888888;
  --line:        rgba(0,0,0,0.08);
  --radius:      16px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(1160px, calc(100vw - clamp(24px, 6vw, 80px)));
  margin-inline: auto;
}

/* ==============================
   CUSTOM CURSOR
   ============================== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.2s, width 0.2s, height 0.2s;
}
.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.25s, height 0.25s, opacity 0.25s;
  opacity: 0.5;
}
.cursor.is-hovering { width: 20px; height: 20px; background: var(--forest); }
.cursor-follower.is-hovering { width: 56px; height: 56px; opacity: 0.2; }

@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ==============================
   BUTTONS
   ============================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: none;
  white-space: nowrap;
  transition: background var(--transition), transform 0.2s ease, box-shadow var(--transition);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.btn-primary:hover::after { transform: scaleX(1); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(58,181,74,0.3); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--black);
  cursor: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), transform 0.2s ease;
}
.btn-ghost:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

/* ==============================
   ANIMATIONS
   ============================== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
[data-animate="scaleIn"] {
  transform: scale(0.92);
}
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ==============================
   NAVBAR
   ============================== */
.nav-bar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1100px, calc(100vw - 32px));
  padding: 12px 20px 12px 16px;
  background: rgba(245, 243, 239, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 999px;
  transition: background 0.3s, box-shadow 0.3s, top 0.3s;
}
.nav-bar.scrolled {
  top: 8px;
  background: rgba(245, 243, 239, 0.97);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-bar nav {
  display: flex;
  gap: 4px;
}
.nav-bar nav a {
  font-weight: 700;
  font-size: 0.87rem;
  color: var(--text-soft);
  transition: color var(--transition);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: none;
}
.nav-bar nav a:hover { color: var(--black); background: rgba(0,0,0,0.05); }

.nav-cta { font-size: 0.87rem; padding: 10px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(100px, 14vw, 140px) 0 0;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--black);
  z-index: 0;
  pointer-events: none;
}
.blob-tl {
  width: clamp(180px, 28vw, 380px);
  height: clamp(180px, 28vw, 380px);
  top: -80px;
  left: -80px;
  opacity: 0.85;
}
.blob-br {
  width: clamp(100px, 16vw, 220px);
  height: clamp(100px, 16vw, 220px);
  bottom: 120px;
  right: -40px;
  opacity: 0.06;
}

/* sparkles */
.sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.sparkle-hero-1 { width: 44px; height: 44px; top: 18%; right: 8%; animation: float 5s ease-in-out infinite; }
.sparkle-hero-2 { width: 32px; height: 32px; top: 58%; left: 5%; animation: float 6s ease-in-out infinite 1s; }
.sparkle-hero-3 { width: 22px; height: 22px; bottom: 22%; right: 25%; animation: float 4s ease-in-out infinite 0.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
  width: min(1160px, calc(100vw - clamp(24px, 6vw, 80px)));
  margin-inline: auto;
  flex: 1;
}

.tag-pill {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.94;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.accent-green { color: var(--green); }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-soft);
  max-width: 46ch;
  margin-bottom: clamp(24px, 4vw, 40px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.scroll-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--text-muted);
}

/* Hero Arch */
.hero-arch-wrap {
  position: relative;
}
.hero-arch {
  position: relative;
  background: var(--green);
  border-radius: 200px 200px 0 0;
  padding: 100px 48px 100px;
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(58,181,74,0.2);
  text-align: center;
}
.arch-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.arch-stat {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
}
.arch-stat span {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.8;
}
.arch-body {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  max-width: 28ch;
  line-height: 1.6;
  margin: 0 auto;
}
.arch-bottom-circle {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 0 0 12px rgba(255,255,255,0.1);
}
.arch-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--black);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.float-card-tl { top: 20px; left: -24px; animation-delay: 0s; }
.float-card-br { bottom: 90px; right: -20px; animation-delay: 1.5s; }

/* Ticker */
.ticker-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--black);
  margin-top: auto;
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ticker-track .sep { color: var(--green); font-size: 0.6rem; align-self: center; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==============================
   SERVICES
   ============================== */
.services-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--cream);
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.section-tag.light { color: rgba(255,255,255,0.5); }
.red-dot { color: var(--red-accent); }

.section h2, .section-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 52ch;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}

/* Featured service card - arch style */
.service-featured {
  background: var(--forest);
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  position: relative;
  grid-row: span 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-featured:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(30,107,53,0.25); }

.sf-arch {
  background: var(--green);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 80px 80px;
}
.sf-sparkle {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  animation: float 5s ease-in-out infinite;
}
.sf-num {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.service-featured h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.service-featured p { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.6; }

.sf-list { padding: 24px 28px; display: grid; gap: 12px; }
.sf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}
.sf-icon { color: #7bf08a; font-size: 0.65rem; margin-top: 4px; flex-shrink: 0; }

/* Regular service cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 16px 40px rgba(58,181,74,0.12);
  transform: translateY(-3px);
}
.sc-num {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.sc-sparkle {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--black);
}
.service-card p { font-size: 0.92rem; color: var(--text-soft); margin-bottom: 18px; line-height: 1.6; }
.service-card ul {
  padding-left: 0;
  list-style: none;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
  display: grid;
  gap: 8px;
}
.service-card ul li::before {
  content: '✦ ';
  color: var(--green);
  font-size: 0.6rem;
  margin-right: 4px;
}

/* ==============================
   STUDIO
   ============================== */
.studio-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--black);
  overflow: hidden;
}
.studio-blob {
  position: absolute;
  width: clamp(300px, 50vw, 700px);
  height: clamp(300px, 50vw, 700px);
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.12;
  top: -30%;
  right: -15%;
  pointer-events: none;
}
.studio-sparkle-1 { position: absolute; bottom: 15%; left: 4%; width: 40px; height: 40px; animation: float 5s ease-in-out infinite; z-index: 1; }
.studio-sparkle-2 { position: absolute; top: 10%; right: 5%; width: 28px; height: 28px; animation: float 7s ease-in-out infinite 1s; z-index: 1; }

.studio-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}
.section-sub.light { color: rgba(255,255,255,0.5); }
.studio-cta { margin-top: 32px; }

/* Studio Cards */
.studio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.studio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: none;
}
.studio-card:hover {
  border-color: var(--green);
  background: rgba(58,181,74,0.06);
  transform: translateY(-2px);
}
.stc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(58,181,74,0.12);
  border: 1px solid rgba(58,181,74,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 14px;
}
.studio-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.studio-card p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ==============================
   ABOUT
   ============================== */
.about-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--cream);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}

.about-arch-col { position: relative; }
.about-arch {
  background: var(--green);
  border-radius: 200px 200px 0 0;
  padding: 100px 48px 100px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(58,181,74,0.18);
  text-align: center;
}
.about-sparkle {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  animation: float 6s ease-in-out infinite;
}
.about-arch-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.about-arch-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.about-arch-body { font-size: 0.95rem; color: rgba(255,255,255,0.82); line-height: 1.65; max-width: 32ch; margin: 0 auto; }
.about-arch-circle {
  position: absolute;
  bottom: -64px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--black);
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 10px rgba(58,181,74,0.15);
}
.about-arch-circle span:first-child { color: var(--green); font-size: 1.4rem; }

/* Workflow */
.section h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.0; letter-spacing: -0.03em; color: var(--black); margin-bottom: 16px; }
.about-text-col > p { color: var(--text-soft); font-size: 1rem; line-height: 1.7; max-width: 46ch; margin-bottom: 32px; margin-top: 16px; }
.workflow { list-style: none; display: grid; gap: 12px; }
.workflow-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.workflow-item:hover { border-color: var(--forest); box-shadow: 0 8px 20px rgba(0,0,0,0.06); transform: translateX(4px); }
.wf-num {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.09em;
  flex-shrink: 0;
  padding-top: 3px;
}
.wf-text h4 { font-size: 0.98rem; font-weight: 800; margin-bottom: 3px; color: var(--black); }
.wf-text p { font-size: 0.87rem; color: var(--text-soft); line-height: 1.5; }
.about-cta { margin-top: 28px; }

/* ==============================
   STATS
   ============================== */
.stats-section {
  background: var(--white);
  padding: clamp(48px, 7vw, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-item > div { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-block;
}
.stat-plus { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--green); }
.stat-item p { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 8px; }
.stat-divider { font-size: 1rem; color: var(--green); opacity: 0.4; }

/* ==============================
   CONTACT
   ============================== */
.contact-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--cream);
  overflow: hidden;
}
.contact-sparkle-1 { position: absolute; top: 10%; right: 8%; width: 42px; height: 42px; animation: float 5s ease-in-out infinite; }
.contact-sparkle-2 { position: absolute; bottom: 12%; left: 5%; width: 28px; height: 28px; animation: float 7s ease-in-out infinite 1s; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}
.contact-info > p { color: var(--text-soft); font-size: 1rem; line-height: 1.7; max-width: 42ch; margin-bottom: 32px; margin-top: 14px; }
.contact-section .section-header h2, .contact-layout h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--black); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 14px; }

.contact-details { display: grid; gap: 16px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  cursor: none;
}
.contact-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
a.contact-row { transition: color var(--transition); }
a.contact-row:hover { color: var(--green); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: grid; gap: 7px; }
.field label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--black);
  text-transform: uppercase;
}
input, textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  font-size: 0.93rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
  cursor: none;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(58,181,74,0.12);
}
textarea { resize: vertical; }

.select-wrap { position: relative; }
.select-wrap select {
  font-family: 'Plus Jakarta Sans', sans-serif;
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  font-size: 0.93rem;
  background: var(--cream);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  cursor: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.select-wrap select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(58,181,74,0.12);
}
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}
.btn-arrow { transition: transform 0.2s; }
.btn-submit:hover .btn-arrow { transform: translateX(4px); }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(58,181,74,0.1);
  border: 1px solid rgba(58,181,74,0.25);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-dark);
}
.form-success.is-visible { display: flex; }

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--black);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  padding: 4px 8px;
}
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-weight: 600; }
.back-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--green);
  transition: color var(--transition);
  cursor: none;
}
.back-top:hover { color: #7bf08a; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1050px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-featured { grid-column: span 2; }
  .studio-layout { grid-template-columns: 1fr; gap: 40px; }
  .studio-cards { grid-template-columns: repeat(3, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 120px; }
  .about-arch-col { max-width: 480px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-bar { flex-wrap: wrap; border-radius: 20px; top: 10px; }
  .nav-bar nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 8px 0;
  }
  .nav-bar nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero { min-height: 100svh; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-arch-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-featured { grid-column: span 1; }
  .studio-cards { grid-template-columns: 1fr 1fr; }
  .stats-grid { gap: 24px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .studio-cards { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
