/* ============ maruladevs ============ */
:root {
  --bg: #FAF9F6;
  --ink: #131210;
  --muted: #6E6A62;
  --accent: #0C7D5B;
  --accent-bright: #2BC492;
  --card: #FFFFFF;
  --hairline: color-mix(in srgb, var(--ink) 12%, transparent);
  --pad: clamp(1.25rem, 4vw, 4rem);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: 84px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #fff; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 var(--pad); }
.wrap--narrow { max-width: 820px; }

em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--ink); color: var(--bg);
  text-decoration: none;
  font-weight: 550; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 0.85rem 1.7rem; border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s, color 0.25s;
}
.btn:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--hairline); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--small { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn--big { padding: 1.05rem 2.3rem; font-size: 1.05rem; }

/* ---------- header ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 0.9rem var(--pad);
  transition: background 0.4s, box-shadow 0.4s;
}
.site-head.is-solid {
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline);
}
.wordmark {
  font-weight: 700; font-size: 1.12rem; letter-spacing: -0.03em;
  color: var(--ink); text-decoration: none;
}
.wordmark span { color: var(--accent); }
.site-nav { display: flex; gap: 1.8rem; margin-left: auto; }
.site-nav a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 480;
  transition: color 0.25s;
}
.site-nav a:hover { color: var(--ink); }

.head-actions { display: flex; align-items: center; gap: 1.1rem; }
.head-tel {
  color: var(--muted); text-decoration: none;
  font-size: 0.86rem; font-weight: 520; letter-spacing: 0.01em;
  transition: color 0.25s;
}
.head-tel:hover { color: var(--accent); }

/* ---------- hero ---------- */
.hero {
  min-height: 92svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 8rem var(--pad) 4rem;
  position: relative;
}
.eyebrow {
  font-size: 0.82rem; font-weight: 520; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 640; letter-spacing: -0.035em; line-height: 1.02;
}
.hero-title em { color: var(--accent); letter-spacing: -0.01em; }
.hero-sub {
  margin-top: 1.8rem;
  font-size: clamp(1.02rem, 1.5vw, 1.25rem); line-height: 1.65;
  color: var(--muted); font-weight: 420;
}
.hero-sub strong { color: var(--ink); font-weight: 640; }
.hero-cta { display: flex; gap: 0.9rem; margin-top: 2.4rem; flex-wrap: wrap; justify-content: center; }
.hero-facts {
  display: flex; gap: 2.2rem; flex-wrap: wrap; justify-content: center;
  list-style: none; margin-top: 4.5rem;
}
.hero-facts li {
  font-size: 0.85rem; color: var(--muted); font-weight: 480;
  display: flex; align-items: center; gap: 0.55rem;
}
.hero-facts li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

/* ---------- audience marquee ---------- */
.aud-marquee {
  position: absolute; left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--hairline);
  overflow: hidden; white-space: nowrap;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.aud-track { display: inline-flex; animation: aud 30s linear infinite; }
.aud-track span {
  font-size: 0.88rem; color: var(--muted); font-weight: 450;
}
.aud-track em { color: var(--accent); font-size: 1.05em; padding: 0 0.9rem; }
@keyframes aud { to { transform: translateX(-33.333%); } }

a:focus-visible, summary:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px;
}

/* ---------- section heads ---------- */
.sec-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: end;
  padding-bottom: 1.4rem; margin-bottom: clamp(2.5rem, 6vh, 4rem);
  border-bottom: 1px solid var(--hairline);
}
.sec-num { font-size: 0.85rem; font-weight: 600; color: var(--accent); padding-bottom: 0.5rem; }
.sec-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 620; letter-spacing: -0.03em; line-height: 1;
}
.sec-side { font-size: 0.9rem; color: var(--muted); text-align: right; line-height: 1.5; }

/* ---------- work (dark band) ---------- */
.work {
  background: var(--ink); color: var(--bg);
  padding: clamp(5rem, 11vh, 8rem) 0;
  --hairline: color-mix(in srgb, var(--bg) 16%, transparent);
}
.work .sec-side { color: color-mix(in srgb, var(--bg) 55%, transparent); }
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}
.work-card {
  display: flex; flex-direction: column; gap: 0.65rem;
  color: var(--bg); text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work-card:hover { transform: translateY(-6px); }
.work-thumb {
  display: block; overflow: clip; border-radius: var(--radius);
  border: 1px solid var(--hairline);
}
.work-thumb img {
  width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work-card:hover .work-thumb img { transform: scale(1.04); }
.work-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 0.7rem;
}
.work-name { font-weight: 620; font-size: 1.15rem; letter-spacing: -0.01em; }
.work-tag {
  font-size: 0.72rem; font-weight: 520; letter-spacing: 0.1em; text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 55%, transparent);
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: 0.25rem 0.7rem;
}
.work-desc { font-size: 0.92rem; line-height: 1.6; color: color-mix(in srgb, var(--bg) 62%, transparent); font-weight: 380; }
.work-link {
  margin-top: 0.4rem; font-size: 0.88rem; font-weight: 550; color: var(--bg);
  display: inline-flex; gap: 0.4rem; align-items: baseline;
}
.work-link .arrow { color: var(--accent-bright); transition: transform 0.3s; display: inline-block; }
.work-card:hover .arrow { transform: translate(3px, -3px); }
.work-card:hover .work-link { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--accent-bright); }

/* ---------- included ---------- */
.included { padding: clamp(5rem, 11vh, 8rem) 0; }
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feat {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
}
.feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px color-mix(in srgb, var(--ink) 28%, transparent);
}
.feat h3 { font-size: 1.05rem; font-weight: 620; letter-spacing: -0.01em; margin-bottom: 0.6rem; }
.feat h3::before {
  content: ''; display: block; width: 22px; height: 3px; border-radius: 2px;
  background: var(--accent); margin-bottom: 1rem;
}
.feat p { font-size: 0.94rem; line-height: 1.6; color: var(--muted); font-weight: 410; }

/* ---------- process ---------- */
.process { padding: 0 0 clamp(5rem, 11vh, 8rem); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.step { position: relative; padding-top: 0.5rem; }
.step-num {
  display: grid; place-items: center;
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  font-weight: 620; font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.15rem; font-weight: 620; letter-spacing: -0.01em; margin-bottom: 0.55rem; }
.step p { font-size: 0.95rem; line-height: 1.65; color: var(--muted); font-weight: 410; max-width: 34ch; }

/* ---------- pricing ---------- */
.pricing { padding: 0 0 clamp(5rem, 11vh, 8rem); }
.price-card {
  max-width: 560px; margin: 0 auto;
  background: var(--ink); color: var(--bg);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: clip;
}
.price-card::after {
  content: ''; position: absolute; inset: auto -30% -55% -30%; height: 70%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-bright) 30%, transparent), transparent);
  pointer-events: none;
}
.price-kicker { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 520; color: color-mix(in srgb, var(--bg) 60%, transparent); }
.price-big {
  font-size: clamp(4rem, 9vw, 6.2rem);
  font-weight: 680; letter-spacing: -0.04em; line-height: 1;
  margin: 1.2rem 0 0.4rem;
}
.price-per { font-size: 0.32em; font-weight: 480; letter-spacing: 0; color: color-mix(in srgb, var(--bg) 60%, transparent); }
.price-note { font-size: 0.88rem; color: color-mix(in srgb, var(--bg) 55%, transparent); min-height: 1.4em; }
.price-list {
  list-style: none; text-align: left;
  margin: 2rem auto 2.2rem; max-width: 24rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.price-list li {
  display: flex; gap: 0.8rem; align-items: baseline;
  font-size: 0.98rem; font-weight: 430;
}
.price-list li::before { content: '✓'; color: var(--accent-bright); font-weight: 700; }
.price-card .btn { background: var(--accent-bright); color: #07271C; position: relative; z-index: 1; }
.price-card .btn:hover { background: var(--bg); color: var(--ink); }
.price-foot { margin-top: 1.4rem; font-size: 0.85rem; color: color-mix(in srgb, var(--bg) 55%, transparent); position: relative; z-index: 1; }
.contact-row {
  display: flex; justify-content: center; gap: 1.8rem; flex-wrap: wrap;
  margin-top: 1rem; position: relative; z-index: 1;
}
.contact-link {
  color: var(--bg); text-decoration: none; font-size: 0.92rem; font-weight: 500;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 30%, transparent);
  padding-bottom: 2px; transition: border-color 0.25s, color 0.25s;
}
.contact-link:hover { color: var(--accent-bright); border-color: var(--accent-bright); }
.contact-hours {
  margin-top: 0.7rem; position: relative; z-index: 1;
  font-size: 0.8rem; color: color-mix(in srgb, var(--bg) 48%, transparent);
}

/* ---------- faq ---------- */
.faq { padding: 0 0 clamp(5rem, 11vh, 8rem); }
.faq .sec-head { grid-template-columns: auto 1fr; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.4rem 0;
  font-size: 1.08rem; font-weight: 560; letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x {
  position: relative; width: 14px; height: 14px; flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-x::before, .faq-x::after {
  content: ''; position: absolute; background: var(--accent); border-radius: 2px;
}
.faq-x::before { left: 0; right: 0; top: 6px; height: 2px; }
.faq-x::after { top: 0; bottom: 0; left: 6px; width: 2px; }
.faq-item[open] .faq-x { transform: rotate(45deg); }
.faq-item p {
  padding: 0 2.5rem 1.5rem 0;
  color: var(--muted); line-height: 1.7; font-size: 0.97rem; font-weight: 410;
  max-width: 60ch;
}

/* ---------- closer ---------- */
.closer {
  background: var(--ink); color: var(--bg);
  text-align: center;
  padding: clamp(6rem, 14vh, 10rem) var(--pad);
}
.closer-line {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 620; letter-spacing: -0.03em;
  margin-bottom: 2.2rem;
}
.closer-line em { color: var(--accent-bright); }
.closer .btn { background: var(--accent-bright); color: #07271C; }
.closer .btn:hover { background: var(--bg); color: var(--ink); }
.closer-alt { margin-top: 1.6rem; font-size: 0.9rem; color: color-mix(in srgb, var(--bg) 55%, transparent); }
.closer-alt a { color: var(--bg); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--bg) 35%, transparent); padding-bottom: 2px; }
.closer-alt a:hover { color: var(--accent-bright); border-color: var(--accent-bright); }
.closer-hours {
  display: block; margin-top: 0.6rem;
  font-size: 0.8rem; color: color-mix(in srgb, var(--bg) 42%, transparent);
}

/* ---------- footer ---------- */
.site-foot { padding: 2rem var(--pad); border-top: 1px solid var(--hairline); }
.foot-top {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.foot-contact { display: flex; gap: 1.8rem; flex-wrap: wrap; align-items: baseline; }
.foot-hours { color: var(--muted); font-size: 0.82rem; }
.foot-mail { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.foot-mail:hover { color: var(--accent); }
.foot-bottom {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.6rem; padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
}
.foot-copy { color: var(--muted); font-size: 0.85rem; }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .work-grid, .feat-grid, .steps { grid-template-columns: 1fr; }
  .work-grid { max-width: 520px; margin: 0 auto; }
  .sec-head { grid-template-columns: auto 1fr; }
  .sec-side { display: none; }
  .site-nav { display: none; }
}

@media (max-width: 600px) {
  .head-tel { display: none; }
  .hero-title br, .hero-sub br, .closer-line br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .aud-track { animation: none; }
}
