/* BlueGumAI shared stylesheet
   Design system ported from the original single-file site (April–June 2026).
   Workshop-only classes (.ws-*) dropped in the AIOS rebuild (June 2026).
   Multi-page: nav/footer use real <a> links; active state set per page. */

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

:root {
  --ink:        #0B120E;
  --ink-2:      #111A15;
  --ink-3:      #192420;
  --ink-4:      #22332C;
  --cream:      #EDE8DF;
  --cream-2:    #C2BDB5;
  --cream-3:    #8A857D;
  --green:      #4FAF78;
  --green-dim:  #2B5E42;
  --radius:     14px;
  --nav-h:      68px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 18px;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

#cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,175,120,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  left: 50%; top: 50%;
}

/* NAV */
nav {
  position: fixed; inset: 0 0 auto;
  z-index: 999;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(11,18,14,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--cream);
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; user-select: none;
  text-decoration: none;
}

.logo-mark {
  width: 28px; height: 28px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  display: grid; place-items: center;
}
.logo-mark img { width: 28px; height: 28px; display: block; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }

.nav-link {
  font-size: 0.9rem; font-weight: 400;
  color: var(--cream-2);
  padding: 7px 15px; border-radius: 8px;
  cursor: pointer; user-select: none;
  position: relative;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.nav-link:hover { color: var(--cream); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--cream); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 15px; right: 15px;
  height: 1.5px; background: var(--green); border-radius: 2px;
}

.nav-cta {
  font-size: 0.9rem; font-weight: 500;
  color: var(--ink); background: var(--green);
  padding: 9px 22px; border-radius: 8px;
  cursor: pointer; user-select: none; margin-left: 10px;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; flex-shrink: 0;
  cursor: pointer; background: none; border: none;
  padding: 6px; border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.07); }
.nav-hamburger span {
  display: block; height: 1.5px;
  background: var(--cream-2); border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media(max-width:600px) {
  nav { padding: 0 16px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(11,18,14,0.97);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    padding: 10px 12px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-link { display: block; padding: 11px 14px; font-size: 0.95rem; border-radius: 8px; }
  .nav-link.active::after { left: 14px; right: 14px; }
  .nav-cta { display: block; margin-left: 0; margin-top: 6px; text-align: center; padding: 12px 14px; border-radius: 8px; }
}

.cta-band {
  max-width: 1180px; margin: 0 auto;
  padding: 56px clamp(20px, 5vw, 64px) 72px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.demo-band {
  max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) 72px;
}
.demo-band-inner {
  border: 1px solid rgba(79,175,120,0.3);
  border-radius: var(--radius);
  padding: 56px clamp(24px, 5vw, 64px);
  background: rgba(79,175,120,0.04);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.demo-note {
  font-size: 0.85rem;
  color: var(--cream-3);
  margin-top: -4px;
}

/* PAGE WRAP (multi-page: real document per page) */
.page { min-height: 100vh; padding-top: var(--nav-h); }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  padding: 80px clamp(20px, 5vw, 80px);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; background: var(--ink); }

.orb { position: absolute; border-radius: 50%; filter: blur(72px); animation: float 9s ease-in-out infinite; }
.orb-1 { width: 580px; height: 580px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(40,90,62,0.55) 0%, transparent 70%); }
.orb-2 { width: 380px; height: 380px; bottom: -60px; left: 8%; background: radial-gradient(circle, rgba(22,55,38,0.45) 0%, transparent 70%); animation-delay: -3s; }
.orb-3 { width: 260px; height: 260px; top: 35%; left: 42%; background: radial-gradient(circle, rgba(196,151,58,0.08) 0%, transparent 70%); animation-delay: -6s; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(24px,-18px) scale(1.04); }
  66%      { transform: translate(-18px,14px) scale(0.96); }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 10%, transparent 100%);
}

.hero-inner { position: relative; z-index: 2; max-width: 800px; }

.mono-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--green);
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 30px;
  opacity: 0; animation: up 0.6s 0.15s var(--ease) forwards;
}
.hero-tag::before { content: ''; display: block; width: 22px; height: 1px; background: var(--green); }

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 8.5vw, 7rem);
  font-weight: 300; line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 30px;
}
h1.reveal {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.08; margin-bottom: 20px;
}
h1.reveal em { font-style: italic; }
.h1-a { display: block; opacity: 0; animation: up 0.7s 0.35s var(--ease) forwards; }
.h1-b { display: block; font-style: italic; opacity: 0; animation: up 0.7s 0.55s var(--ease) forwards; }

.gradient-text {
  background: linear-gradient(120deg, var(--green) 0%, #91DFB0 55%, var(--cream) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--cream-2); line-height: 1.8;
  max-width: 540px; margin-bottom: 48px;
  font-weight: 300;
  opacity: 0; animation: up 0.7s 0.75s var(--ease) forwards;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: up 0.7s 0.95s var(--ease) forwards;
}

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  opacity: 0; animation: up 0.7s 1.15s var(--ease) forwards;
}
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600; line-height: 1; margin-bottom: 6px;
}
.stat-lbl { font-size: 0.85rem; color: var(--cream-3); font-weight: 300; }

@keyframes up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  border-radius: 10px; padding: 13px 26px;
  cursor: pointer; user-select: none; border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--green); color: var(--ink); font-weight: 600; }
.btn-solid:hover { box-shadow: 0 8px 28px rgba(79,175,120,0.32); }
.btn-outline { background: transparent; color: var(--cream-2); border: 1px solid rgba(255,255,255,0.13); }
.btn-outline:hover { color: var(--cream); border-color: rgba(255,255,255,0.26); background: rgba(255,255,255,0.04); }

/* MARQUEE */
.marquee-wrap {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.018);
  padding: 14px 0; overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 28px; padding: 0 28px; white-space: nowrap; }
.marquee-item span { font-family: 'Instrument Sans', sans-serif; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-3); }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* SECTION */
.section { max-width: 1180px; margin: 0 auto; padding: 72px clamp(20px, 5vw, 64px); }
@media(max-width:768px){ .section { padding-top: 48px; padding-bottom: 48px; } }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.section-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--green); }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 20px;
}
h2 em { font-style: italic; }

hr.divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0 clamp(20px, 5vw, 64px); }

/* Generic prose helper for body copy in sections */
.prose { color: var(--cream-2); line-height: 1.8; font-weight: 300; font-size: 1rem; }
.prose a { color: var(--cream); text-decoration: underline; text-decoration-color: var(--green-dim); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }
.prose a:hover { color: var(--green); text-decoration-color: var(--green); }
.prose + .prose { margin-top: 14px; }

/* HOME TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media(max-width:768px){ .two-col { grid-template-columns: 1fr; gap: 40px; } }

.intro-card {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ic-row {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ic-row:last-child { border-bottom: none; }
.ic-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center; flex-shrink: 0;
  color: var(--green);
}
.ic-icon svg { width: 18px; height: 18px; }
.ic-title { font-size: 1rem; font-weight: 500; color: var(--cream); }
.ic-sub { font-size: 0.82rem; color: var(--cream-3); margin-top: 3px; }
.ic-badge {
  margin-left: auto;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}

/* OFFER CARDS (home) */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
@media(max-width:900px){ .offer-grid { grid-template-columns: 1fr; gap: 16px; } }
.offer-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: var(--ink-2);
  padding: 32px 30px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.offer-card:hover { border-color: rgba(79,175,120,0.4); transform: translateY(-3px); }
.offer-card.featured { border-top: 3px solid var(--green); }
.offer-icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--green); margin-bottom: 20px; }
.offer-icon svg { width: 22px; height: 22px; }
.offer-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 400; color: var(--cream); margin-bottom: 10px; line-height: 1.1; }
.offer-card p { font-size: 0.92rem; color: var(--cream-2); line-height: 1.65; font-weight: 300; margin-bottom: 22px; }
.offer-price { margin-top: auto; font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; color: var(--cream); line-height: 1; }
.offer-price small { font-size: 0.8rem; color: var(--cream-3); font-weight: 300; }
.offer-arrow { color: var(--green); font-size: 0.85rem; margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; }

/* FOUNDER BAND (home) */
.founder-band { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: center; }
@media(max-width:768px){ .founder-band { grid-template-columns: 1fr; gap: 32px; } }
.founder-photo { border-radius: var(--radius); overflow: hidden; border-top: 2px solid var(--green-dim); background: var(--ink-3); max-width: 340px; }
.founder-photo img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.founder-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.founder-points li { font-size: 0.95rem; color: var(--cream-2); display: flex; align-items: flex-start; gap: 14px; font-weight: 300; line-height: 1.6; }
.founder-points li::before { content: ''; width: 6px; height: 6px; border-right: 1.5px solid var(--green); border-top: 1.5px solid var(--green); transform: rotate(45deg); margin-top: 7px; flex-shrink: 0; }

/* WHY GRID */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0 48px;
}
@media(max-width:900px){ .why-grid { grid-template-columns: repeat(2,1fr); gap: 0 40px; } }
@media(max-width:520px){ .why-grid { grid-template-columns: 1fr; gap: 0; } }

.why-cell {
  padding: 36px 0;
}
@media(max-width:900px){
  .why-cell { padding: 24px 0; }
}
.why-num { font-family: 'Instrument Sans', sans-serif; font-size: 0.62rem; font-weight: 500; color: var(--green); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.why-cell h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400; margin-bottom: 14px; color: var(--cream); }
.why-cell p { font-size: 0.95rem; color: var(--cream-2); line-height: 1.75; font-weight: 300; }

/* SERVICES */
.svc-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media(max-width:768px){ .svc-featured { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; } }

.svc-rows { border-top: 1px solid rgba(255,255,255,0.08); }
.svc-row {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media(max-width:768px){ .svc-row { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; } }

.svc-tag {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
  display: inline-block; margin-bottom: 14px;
}
.svc-featured h3, .svc-row h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300;
  letter-spacing: -0.01em; line-height: 1.1; color: var(--cream);
}
.svc-featured .main-h3 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.svc-featured p, .svc-row p {
  font-size: 1rem; color: var(--cream-2);
  line-height: 1.8; margin-bottom: 18px; font-weight: 300;
}
.svc-row h3 { margin-bottom: 0; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.svc-list li {
  font-size: 0.95rem; color: var(--cream-2);
  display: flex; align-items: flex-start; gap: 14px; font-weight: 300; line-height: 1.6;
}
.svc-list li::before { content: ''; width: 6px; height: 6px; border-right: 1.5px solid var(--green); border-top: 1.5px solid var(--green); transform: rotate(45deg); margin-top: 8px; flex-shrink: 0; }

/* Service-card link (services index) */
.svc-link { text-decoration: none; color: inherit; display: block; transition: opacity 0.2s; }
.svc-link:hover h3 { color: var(--green); }
.svc-arrow { color: var(--green); font-size: 0.9rem; margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; }

/* TESTIMONIALS */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 0 72px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testimonial-card {
  padding: 40px 0;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; line-height: 0.8;
  color: var(--green-dim);
  display: block; margin-bottom: 16px;
  pointer-events: none;
}
.testimonial-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-style: italic; font-weight: 300;
  color: var(--cream); line-height: 1.65;
  margin-bottom: 32px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ink-3), var(--ink-4));
  border: 1px solid rgba(79,175,120,0.25);
  display: grid; place-items: center; flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--green);
}
.author-name { font-size: 0.95rem; font-weight: 500; color: var(--cream); }
.author-biz { font-size: 0.8rem; color: var(--cream-3); font-weight: 300; margin-top: 2px; }

/* TEAM / ABOUT */
.team-grid { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; }
@media(max-width:900px){ .team-grid { grid-template-columns: 1fr; gap: 48px; } }

.team-card {
  background: var(--ink-2);
  border-top: 2px solid var(--green-dim);
  overflow: hidden;
  position: sticky; top: calc(var(--nav-h) + 20px);
}
@media(max-width:900px) { .team-card { position: static; } }
.team-avatar {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink-3);
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.team-info { padding: 24px; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 400; margin-bottom: 4px; }
.team-role { font-family: 'Instrument Sans', sans-serif; font-size: 0.65rem; font-weight: 500; color: var(--green); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tag { font-size: 0.78rem; color: var(--cream-3); background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 4px; font-weight: 300; }

.team-body h2 { margin-bottom: 20px; }
.team-body p { font-size: 1rem; color: var(--cream-2); line-height: 1.8; margin-bottom: 18px; font-weight: 300; }
.team-body p a { color: var(--cream); text-decoration: underline; text-decoration-color: var(--green-dim); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }
.team-body p a:hover { color: var(--green); text-decoration-color: var(--green); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; align-items: stretch; }
@media(max-width:900px){ .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: var(--ink-2);
  padding: 40px 36px;
  display: flex; flex-direction: column;
}
.price-card.featured { border-top: 3px solid var(--green); }
.price-eyebrow {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.price-fig {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem; font-weight: 300; color: var(--cream);
  line-height: 1; margin-bottom: 8px;
}
.price-fig small { font-size: 1rem; color: var(--cream-3); font-weight: 300; }
.price-note { font-size: 0.85rem; color: var(--cream-3); font-weight: 300; line-height: 1.6; margin-bottom: 24px; }
.price-card .svc-list { margin-bottom: 28px; flex-grow: 1; }
.price-card .btn { align-self: flex-start; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media(max-width:900px){ .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-meta { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.meta-item { display: flex; align-items: center; gap: 14px; }
.meta-icon {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center; flex-shrink: 0;
  color: var(--cream-3);
}
.meta-icon svg { width: 16px; height: 16px; }
.meta-text { font-size: 0.95rem; color: var(--cream-2); font-weight: 300; line-height: 1.4; }
.meta-text strong { color: var(--cream); font-weight: 500; }

/* FORM */
form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:480px){ .form-row { grid-template-columns: 1fr; } }

.field { position: relative; }
.field label {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  font-size: 0.9rem; color: var(--cream-3);
  pointer-events: none; transition: all 0.18s ease;
  font-weight: 300; background: transparent; padding: 0 3px;
}
.field.ta-field label { top: 17px; transform: none; }

.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  top: 0; transform: translateY(-50%);
  font-size: 0.72rem; color: var(--green);
  background: var(--ink-2); padding: 0 5px;
}
.field.ta-field textarea:focus ~ label,
.field.ta-field textarea:not(:placeholder-shown) ~ label {
  top: 0; transform: translateY(-50%); font-size: 0.72rem;
}
.field.has-val label {
  top: 0; transform: translateY(-50%);
  font-size: 0.72rem; color: var(--green);
  background: var(--ink-2); padding: 0 5px;
}

.field input, .field select, .field textarea {
  width: 100%;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 16px; font-weight: 300; /* 16px min prevents iOS focus-zoom */
  color: var(--cream); background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 15px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: transparent; }
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%238A857D' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}
.field textarea { resize: vertical; min-height: 116px; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(79,175,120,0.1);
}

.budget-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cream-3); margin-bottom: 10px;
}
.budget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.b-opt { position: relative; }
.b-opt input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.b-opt label {
  display: block; text-align: center;
  padding: 12px 14px;
  background: var(--ink-2); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px; font-size: 0.88rem; color: var(--cream-3);
  cursor: pointer; font-weight: 300; transition: all 0.18s;
}
.b-opt input:checked + label { border-color: var(--green); color: var(--green); background: rgba(79,175,120,0.07); }
.b-opt label:hover { border-color: rgba(79,175,120,0.35); color: var(--cream-2); }

.btn-submit {
  width: 100%; padding: 16px;
  background: var(--green); color: var(--ink);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem; font-weight: 600;
  border: none; border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s; margin-top: 4px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(79,175,120,0.35); }

.form-note { font-size: 0.8rem; color: var(--cream-3); text-align: center; font-weight: 300; }
.form-note a { color: inherit; }

/* FOOTER */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px clamp(20px, 5vw, 64px) 32px;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px;
}
@media(max-width:768px){ .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:480px){ .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--cream);
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 16px;
}
.footer-tag { font-size: 0.85rem; color: var(--cream-3); font-weight: 300; line-height: 1.6; max-width: 290px; margin-bottom: 18px; }
.footer-contact { font-size: 0.85rem; color: var(--cream-2); font-weight: 300; line-height: 1.85; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--cream); }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-h { font-family: 'Instrument Sans', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.footer-col a { font-size: 0.9rem; color: var(--cream-2); font-weight: 300; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-base {
  max-width: 1180px; margin: 36px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: var(--cream-3); font-weight: 300;
}
.footer-base a { color: inherit; text-decoration: none; }
.footer-base a:hover { color: var(--cream-2); }

/* FAQ PAGE */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}
.faq-q-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400;
  color: var(--cream); line-height: 1.35;
}
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  transition: transform 0.28s var(--ease), border-color 0.2s;
}
.faq-chevron svg { transition: transform 0.28s var(--ease); }
.faq-item.open .faq-chevron { border-color: var(--green); }
.faq-item.open .faq-chevron svg { transform: rotate(180deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.faq-a-inner {
  padding-bottom: 22px;
  font-size: 1rem; font-weight: 300;
  color: var(--cream-2); line-height: 1.78;
}
.faq-item.open .faq-a { max-height: 600px; }

.faq-section-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
  margin: 48px 0 8px; max-width: 760px; margin-left: auto; margin-right: auto;
}
.faq-section-label:first-child { margin-top: 0; }

@media(max-width:600px) {
  .faq-q-text { font-size: 1.1rem; }
}
