:root {
  --bg: #f7f7f4;
  --bg-soft: #efefea;
  --surface: rgba(255,255,255,0.82);
  --surface-strong: #ffffff;
  --text: #1f2933;
  --muted: #5e6770;
  --line: rgba(31, 41, 51, 0.08);
  --line-strong: rgba(31, 41, 51, 0.16);
  --accent: #0f9d8a;
  --accent-deep: #0b6b61;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 88px;
  --transition: 320ms cubic-bezier(.2,.7,.2,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfbf8 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
video { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(247,247,244,0.72);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 44px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 500;
}
.site-nav a { position: relative; transition: color var(--transition); }
.site-nav a:hover { color: var(--text); }
.nav-cta {
  padding: 14px 20px;
  border-radius: 999px;
  color: white !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 28px rgba(15, 157, 138, 0.22);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 16px;
}
.hero-section {
  position: relative;
  min-height: min(64vh, 600px);
  display: flex;
  align-items: stretch;
  overflow: clip;
}
.hero-video, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(0.94) brightness(0.68);
}
.hero-overlay {
  background:
    linear-gradient(120deg, rgba(9, 17, 24, 0.74) 0%, rgba(9, 17, 24, 0.46) 45%, rgba(9, 17, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(15,157,138,0.08), transparent 40%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: end;
  padding: 72px 0 52px;
}
.hero-copy { color: white; padding-bottom: 20px; }
.hero-panel { padding-bottom: 20px; }
.eyebrow, .section-tag, .mini-label, .trust-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow {
  display: inline-flex;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.hero-copy h1 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  max-width: 20ch;
}
.hero-copy p {
  margin: 24px 0 0;
  max-width: 40rem;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}
.hero-actions, .quote-band-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 30px rgba(15, 157, 138, 0.25);
}
.button-secondary {
  color: white;
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
}
.full { width: 100%; }
.hero-metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 38px 0 0;
}
.hero-metrics li {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-metrics strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}
.hero-metrics span {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 1.3rem;
  line-height: 1.55;
}
.panel-card, .info-card, .project-card, .step-card, .contact-card, .prompt-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow);
}
.floating-card {
  padding: 28px;
  border-radius: 28px;
}
.panel-card h2 { margin: 10px 0 14px; font-size: 1.8rem; line-height: 1.05; }
.panel-card p { color: var(--muted); line-height: 1.7; }
.panel-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 12px;
}
.panel-points li::before {
  content: '•';
  color: var(--accent);
  margin-right: 10px;
}
.trust-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 20px 0;
}
.trust-label, .section-tag, .mini-label { color: var(--accent-deep); }
.trust-grid p { color: var(--muted); margin: 10px 0 0; line-height: 1.65; }
.section { padding: 110px 0; }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head h2, .intro-section h2, .feature-copy h2, .quote-band-inner h2, .contact-copy h2 {
  margin: 14px 0 0;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.section-head p, .intro-section p, .feature-copy p, .contact-copy p { color: var(--muted); line-height: 1.8; font-size: 1.04rem; }
.two-col, .split-feature, .contact-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}
.card-grid, .project-grid, .steps-grid, .prompt-grid {
  display: grid;
  gap: 24px;
}
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card {
  padding: 28px;
  border-radius: 28px;
}
.icon-badge {
  width: 67px;
  height: 67px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(15, 157, 138, 0.1);
  color: var(--accent-deep);
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.info-card h3, .project-body h3, .step-card h3, .prompt-card h3, .site-footer h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}
.info-card p, .project-body p, .step-card p, .prompt-card p, .contact-copy li, .site-footer p, .site-footer li {
  color: var(--muted);
  line-height: 1.75;
}
.feature-visual { position: relative; min-height: 520px; }
.mock-image {
  position: absolute;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: linear-gradient(140deg, rgba(15,157,138,0.18), rgba(255,255,255,0.84)), linear-gradient(160deg, #d8dde0, #f3f4f6);
  border: 1px solid rgba(255,255,255,0.46);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
}
.image-one { inset: 0 80px 80px 0; }
.image-two { width: 48%; height: 48%; right: 0; bottom: 0; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 18px;
}
.feature-list li {
  padding-left: 20px;
  border-left: 3px solid rgba(15, 157, 138, 0.28);
}
.text-link {
  color: var(--accent-deep);
  font-weight: 700;
  display: inline-flex;
  gap: 8px;
}
.project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.project-card {
  overflow: hidden;
  border-radius: 28px;
}
.project-media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.placeholder-1 { background-image: linear-gradient(145deg, rgba(15,157,138,0.16), rgba(255,255,255,0.4)), url('./images/nook landscapes logo1 white transparent.png'); background-color: #cfd8dc; background-size: 55%, cover; background-repeat: no-repeat; background-position: center; }
.placeholder-2 { background-image: linear-gradient(145deg, rgba(15,157,138,0.08), rgba(255,255,255,0.5)); background-color: #d8ddd6; }
.placeholder-3 { background-image: linear-gradient(145deg, rgba(15,157,138,0.13), rgba(255,255,255,0.42)); background-color: #d1d8d8; }
.project-body { padding: 24px; }
.project-kicker {
  margin: 0 0 8px;
  color: var(--accent-deep) !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
}
.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step-card {
  padding: 28px;
  border-radius: 28px;
}
.step-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(15, 157, 138, 0.1);
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 18px;
}
.quote-band { padding-top: 0; }
.quote-band-inner {
  padding: 34px 40px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(15,157,138,0.92), rgba(11,107,97,0.96));
  color: white;
  justify-content: space-between;
}
.quote-band-inner .section-tag { color: rgba(255,255,255,0.72); }
.quote-band-inner h2 { color: white; max-width: 16ch; }
/* ── Accordion module ─────────────────────────────────────
   Reusable anywhere: wrap .accordion-item elements in [data-accordion].
   - data-accordion="single"  → one open at a time (default)
   - data-accordion="multi"   → multiple can be open
   JS adds .is-open; CSS animates via grid-template-rows.
   ─────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 16px; }
.accordion-item {
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.accordion-item.is-open {
  border-color: rgba(15, 157, 138, 0.22);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}
.accordion-trigger {
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  user-select: none;
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  text-align: left;
}
.accordion-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 22px;
}
.faq-arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--accent-deep);
  border-bottom: 2px solid var(--accent-deep);
  transform: rotate(45deg);
  transition: transform 400ms cubic-bezier(.22,1,.36,1);
  flex: 0 0 auto;
  margin-right: 4px;
}
.is-open .faq-arrow {
  transform: rotate(225deg) translate(-2px, -2px);
}
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 400ms cubic-bezier(.22,1,.36,1),
              opacity 300ms ease;
}
.is-open .accordion-body {
  grid-template-rows: 1fr;
  opacity: 1;
}
.accordion-body-inner {
  overflow: hidden;
}
.accordion-body-inner p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.75;
}
.contact-card {
  padding: 30px;
  border-radius: 28px;
  display: grid;
  gap: 18px;
}
.contact-card label { display: grid; gap: 10px; }
.contact-card span { font-weight: 600; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(31,41,51,0.12);
  background: rgba(255,255,255,0.94);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
input:focus, textarea:focus {
  outline: none;
  border-color: rgba(15, 157, 138, 0.55);
  box-shadow: 0 0 0 4px rgba(15, 157, 138, 0.12);
}
.form-note { margin: 0; color: var(--muted); font-size: 0.95rem; }
.prompt-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.prompt-card {
  padding: 28px;
  border-radius: 28px;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
  padding: 44px 0 28px;
}
.footer-logo { height: 42px; width: auto; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-bar {
  background: #deded7;
  border-top: 1px solid rgba(31,41,51,0.14);
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  gap: 16px;
  font-size: 0.78rem;
  color: #6b7280;
}
.footer-legal, .footer-credit { margin: 0; }
.footer-bar-inner a { color: #6b7280; text-decoration: none; }
.footer-bar-inner a:hover { color: var(--text); }
.footer-address { display: flex; align-items: center; gap: 6px; margin: 8px 0 0; font-size: 0.88rem; color: var(--muted); }
code {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15,157,138,0.08);
  color: var(--accent-deep);
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms cubic-bezier(.22,1,.36,1), transform 800ms cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }
.delay-3 { transition-delay: 320ms; }
@media (max-width: 1080px) {
  .hero-grid, .two-col, .split-feature, .contact-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-metrics, .services-grid, .project-grid, .prompt-grid, .steps-grid, .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-visual { min-height: 400px; }
}
@media (max-width: 760px) {
  :root { --header-height: 76px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.is-open { display: flex; }
  .hero-grid { padding-top: 48px; }
  .hero-copy h1 { max-width: none; }
  .hero-metrics, .services-grid, .project-grid, .prompt-grid, .steps-grid, .trust-grid { grid-template-columns: 1fr; }
  .section { padding: 86px 0; }
  .quote-band-inner { padding: 28px; }
}

/* Floating call CTA (injected on every page) */
.floating-call { position: fixed; right: 22px; bottom: 22px; z-index: 60; display:inline-flex; align-items:center; gap:12px; padding: 10px 18px 10px 12px; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; text-decoration: none; border-radius: 999px; box-shadow: 0 16px 30px rgba(15,157,138,.35), 0 4px 10px rgba(15,23,42,.18); font-weight: 700; transition: transform .25s ease, box-shadow .25s ease; animation: callPulse 3s ease-in-out infinite; }
.floating-call:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 40px rgba(15,157,138,.45), 0 6px 14px rgba(15,23,42,.22); }
.floating-call:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.floating-call-icon { width: 36px; height: 36px; flex:0 0 auto; border-radius: 50%; background: rgba(255,255,255,.18); display:grid; place-items:center; }
.floating-call-text { display:flex; flex-direction:column; line-height: 1.1; }
.floating-call-tag { font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; opacity: .92; }
.floating-call-num { font-size: 1.02rem; font-weight: 800; letter-spacing: -.01em; }
.footer-phone { display:inline-flex; align-items:center; gap:8px; font-weight:700; color: var(--accent-deep); text-decoration:none; }
.footer-phone:hover { color: var(--accent); }
@keyframes callPulse {
  0%, 100% { box-shadow: 0 16px 30px rgba(15,157,138,.35), 0 4px 10px rgba(15,23,42,.18), 0 0 0 0 rgba(15,157,138,.5); }
  60% { box-shadow: 0 16px 30px rgba(15,157,138,.35), 0 4px 10px rgba(15,23,42,.18), 0 0 0 14px rgba(15,157,138,0); }
}
@media (max-width: 760px) {
  .floating-call { padding: 0; width: 56px; height: 56px; justify-content: center; right: 16px; bottom: 16px; }
  .floating-call-text { display: none; }
  .floating-call-icon { background: transparent; }
}
