:root {
  --bg: #FBF8F2;
  --surface: #FFFFFF;
  --surface-soft: #F5F0E7;
  --text: #171717;
  --muted: #6D665D;
  --line: #E6DDD1;
  --accent: #F5A623;
  --accent-deep: #D88808;
  --wa: #25D366;
  --shadow: 0 18px 48px rgba(29, 21, 8, 0.08);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
svg { display: block; }

.skip-link {
  position: absolute; left: 16px; top: -40px; z-index: 999;
  background: var(--text); color: white; padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container { width: min(100% - 40px, 1200px); margin: 0 auto; }
.section { padding: 90px 0; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0)); }
.eyebrow {
  color: #8B8278; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 800; margin-bottom: 14px;
}
.eyebrow.center, .section-title.center, .section-sub.center { text-align: center; }
.section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 0 0 14px;
  max-width: 12ch;
}
.section-title.center { max-width: none; }
.section-title span, .hero-copy h1 span, .contact-copy h2 span, .story-copy h2 span { color: var(--accent); }
.section-sub { max-width: 62ch; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.section-note { max-width: 36ch; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 800; border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 10px 22px rgba(245,166,35,.24); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { background: rgba(255,255,255,.86); border-color: var(--line); color: var(--text); }
.btn-ghost svg { width: 22px; height: 22px; fill: var(--wa); }

.site-header {
  position: sticky; top: 0; z-index: 70; backdrop-filter: blur(18px);
  background: rgba(251,248,242,.88); border-bottom: 1px solid rgba(230,221,209,.7);
}
.header-inner {
  min-height: 82px; display: grid; grid-template-columns: auto 1fr auto auto auto; gap: 18px; align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand-icon { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-size: 1.28rem; line-height: .9; letter-spacing: -.05em; }
.brand-text small { color: var(--muted); font-size: .83rem; margin-top: 4px; }
.main-nav { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.main-nav a { font-size: .97rem; color: #463f38; }
.main-nav a:hover { color: var(--text); }
.header-cta { justify-self: end; }
.header-wa {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid rgba(37,211,102,.32); background: rgba(37,211,102,.1);
}
.header-wa svg { width: 26px; height: 26px; fill: var(--wa); }
.menu-toggle {
  display: none; width: 48px; height: 48px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(255,255,255,.8); padding: 0; cursor: pointer;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px auto; border-radius: 999px; }

.hero-section { padding: 28px 0 28px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 34px; align-items: center; }
.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.8rem); line-height: .92; letter-spacing: -.07em; margin: 0 0 20px; max-width: 9ch;
}
.hero-copy .lead { max-width: 48ch; font-size: 1.1rem; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 24px; }
.hero-actions .btn svg { width: 22px; height: 22px; }
.hero-visual {
  position: relative; overflow: hidden; min-height: 560px; border-radius: 36px; box-shadow: var(--shadow); background: #e8dcc9;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-note {
  position: absolute; background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7); box-shadow: 0 10px 24px rgba(37, 23, 5, .12);
  border-radius: 20px; padding: 14px 16px; font-size: .95rem; line-height: 1.2;
}
.hero-note strong { color: var(--accent-deep); }
.note-top { top: 24px; right: 24px; max-width: 180px; }
.note-bottom { right: 20px; bottom: 24px; max-width: 185px; }
.hero-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-benefits article {
  background: rgba(255,255,255,.62); border: 1px solid var(--line); border-radius: 18px; padding: 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.mini-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center;
  background: rgba(245,166,35,.16); color: var(--accent-deep); font-weight: 900;
}
.hero-benefits p { margin: 0; font-size: .92rem; color: #4B453E; }

.story-block {
  margin-top: 34px; padding: 30px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px;
  background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow);
}
.story-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.7rem); line-height: .98; letter-spacing: -.05em; margin: 0 0 14px; max-width: 12ch;
}
.story-copy p:not(.eyebrow) { color: var(--muted); max-width: 46ch; }
.story-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: end; }
.story-gallery figure {
  margin: 0; overflow: hidden; border-radius: 22px; background: white; border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(23, 19, 12, .06);
}
.story-gallery img { width: 100%; height: 230px; object-fit: cover; }
.story-gallery figcaption { padding: 12px 14px; font-size: .88rem; color: #4F4841; }
.story-gallery figure:nth-child(2) img { height: 270px; }

.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.service-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow);
}
.service-visual { height: 190px; }
.image-a { background: linear-gradient(145deg, #fde7bf, #f8bb4a); }
.image-b { background: linear-gradient(145deg, #efe5d5, #d9c3a5); }
.image-c { background: linear-gradient(145deg, #f1ede7, #e3d6c6); }
.service-body { padding: 24px; }
.service-icon { color: var(--accent-deep); font-size: 1.35rem; font-weight: 900; display: inline-block; margin-bottom: 10px; }
.service-body h3 { font-size: 1.5rem; margin: 0 0 10px; letter-spacing: -.03em; }
.service-body p { color: var(--muted); margin-bottom: 0; }

.process-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 36px; }
.process-track article {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 22px 18px; box-shadow: var(--shadow);
}
.process-track article span {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 900;
  background: rgba(245,166,35,.16); color: var(--accent-deep); margin-bottom: 14px;
}
.process-track h3 { font-size: 1.1rem; margin: 0 0 8px; }
.process-track p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

.section-heading-row {
  display: flex; gap: 30px; align-items: flex-end; justify-content: space-between; margin-bottom: 34px;
}
.case-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: start; }
.case-summary {
  background: var(--surface); border: 1px solid var(--line); border-radius: 28px; padding: 30px; box-shadow: var(--shadow);
}
.case-label { color: var(--accent-deep); text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 900; }
.case-summary h3 { font-size: 2rem; line-height: 1.03; letter-spacing: -.05em; margin: 14px 0; }
.case-summary p { color: var(--muted); }
.case-points { list-style: none; padding: 0; margin: 20px 0 26px; display: grid; gap: 11px; }
.case-points li { position: relative; padding-left: 24px; }
.case-points li::before { content: '•'; position: absolute; left: 0; top: 0; color: var(--accent-deep); font-weight: 900; font-size: 1.25rem; line-height: 1; }
.case-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.case-showcase { min-width: 0; }
.case-scroller { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.screen-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden;
}
.screen-card p { font-size: .88rem; color: #5F584F; padding: 12px 16px 16px; margin: 0; }
.shot-topbar, .mockup-topbar {
  display: flex; align-items: center; gap: 6px; min-height: 34px; padding: 0 12px; background: #F7F2EA; border-bottom: 1px solid var(--line);
}
.shot-topbar span, .mockup-topbar span { width: 9px; height: 9px; border-radius: 50%; background: #d1c8bc; }
.shot-topbar span:first-child, .mockup-topbar span:first-child { background: #F87171; }
.shot-topbar span:nth-child(2), .mockup-topbar span:nth-child(2) { background: #FBBF24; }
.shot-topbar span:nth-child(3), .mockup-topbar span:nth-child(3) { background: #34D399; }
.browser-shot img { width: 100%; height: 275px; object-fit: cover; object-position: top center; }
.phone-shot { display: flex; flex-direction: column; align-items: center; justify-content: center; padding-top: 18px; }
.phone-frame {
  width: 150px; height: 292px; border-radius: 28px; padding: 10px; background: #171717; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.phone-frame::before {
  content: ''; display: block; width: 54px; height: 6px; border-radius: 999px; background: rgba(255,255,255,.16); margin: 2px auto 8px;
}
.phone-frame img { width: 100%; height: calc(100% - 16px); object-fit: cover; object-position: center top; border-radius: 18px; }
.quote-shot { padding: 28px 24px 26px; display: flex; flex-direction: column; justify-content: center; min-height: 361px; }
.quote-mark { font-size: 3.2rem; line-height: 1; color: var(--accent); font-family: Georgia, serif; margin-bottom: 8px; }
.quote-shot h4 { font-size: 1.55rem; line-height: 1.1; letter-spacing: -.04em; margin: 0 0 14px; }
.quote-shot p { padding: 0; color: var(--muted); margin: 0 0 16px; font-size: 1rem; }
.quote-shot strong { color: #3f3832; }

.prototype-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.website-mockup-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 26px; padding: 16px; box-shadow: var(--shadow);
}
.mockup-browser { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: white; }
.mockup-topbar { justify-content: flex-start; }
.mockup-topbar b { margin-left: 10px; color: #7a7166; font-size: .78rem; font-weight: 700; }
.mockup-body { padding: 16px; }
.mockup-split { display: grid; grid-template-columns: 1fr .92fr; gap: 14px; align-items: center; }
.mockup-split.reverse { grid-template-columns: .92fr 1fr; }
.mockup-stack { display: grid; gap: 14px; }
.mockup-stack img, .mockup-split img { width: 100%; height: 220px; object-fit: cover; border-radius: 16px; }
.mockup-copy small {
  display: inline-block; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 800; color: var(--accent-deep); margin-bottom: 8px;
}
.mockup-copy h3 { font-size: 1.55rem; line-height: 1.04; letter-spacing: -.04em; margin: 0 0 10px; }
.mockup-copy p { color: var(--muted); margin-bottom: 0; }
.mini-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.mini-pills span {
  padding: 8px 11px; border-radius: 999px; background: #FBF5EB; border: 1px solid #F0DEC0; font-size: .8rem; color: #6C4F15;
}

.about-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 30px; align-items: start; }
.about-photo-card {
  overflow: hidden; border-radius: 30px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.about-photo-card img { width: 100%; height: 100%; object-fit: cover; min-height: 540px; }
.about-copy > p:not(.eyebrow):not(.about-quote) { color: var(--muted); font-size: 1.08rem; }
.about-quote {
  font-family: Georgia, serif; font-size: 1.6rem; line-height: 1.35; color: #493824; max-width: 31ch; margin: 18px 0 0;
}
.about-points {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px;
}
.about-points article {
  background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 20px; padding: 16px 16px 15px;
}
.about-points strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.about-points span { display: block; font-size: .93rem; color: var(--muted); }
.other-work-inline { margin-top: 32px; }
.inline-heading h3 { font-size: 1.32rem; margin: 0 0 6px; }
.inline-heading p { color: var(--muted); max-width: 60ch; }
.other-inline-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 18px; }
.mini-project-card {
  display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 16px; box-shadow: 0 10px 30px rgba(29,21,8,.05);
}
.mini-project-visual {
  width: 92px; height: 92px; border-radius: 20px; display: grid; place-items: center; color: white; font-size: 2rem; font-weight: 900;
}
.io-visual { background: linear-gradient(145deg, #2b2630, #6b4c70); }
.narria-visual { background: linear-gradient(145deg, #16233b, #6a4d91); }
.mini-project-card small {
  display: block; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; color: var(--accent-deep); font-weight: 900; margin-bottom: 7px;
}
.mini-project-card h4 { margin: 0 0 6px; font-size: 1.18rem; }
.mini-project-card p { color: var(--muted); margin-bottom: 0; font-size: .95rem; }

.pricing-scroller { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); padding: 28px; position: relative;
}
.price-card.featured { border-color: rgba(245,166,35,.55); transform: translateY(-6px); }
.price-label { display: block; font-size: .76rem; letter-spacing: .12em; font-weight: 900; color: #82786d; margin-bottom: 10px; }
.price { font-size: 2.45rem; line-height: 1; font-weight: 900; letter-spacing: -.05em; margin-bottom: 12px; }
.price-card p { color: var(--muted); }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.price-card li { position: relative; padding-left: 22px; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-deep); font-weight: 900; }
.featured-label {
  position: absolute; top: -13px; right: 20px; padding: 7px 11px; background: var(--accent); border-radius: 999px; font-size: .72rem; font-weight: 900; color: white;
}
.swipe-hint { display: none; text-align: center; color: var(--muted); font-size: .86rem; margin-top: 14px; }

.faq-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 28px; align-items: start; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; margin-bottom: 13px; box-shadow: 0 10px 26px rgba(29,21,8,.04);
}
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { color: var(--muted); margin: 12px 0 0; }

.contact-panel {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; padding: 36px; border-radius: 30px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.contact-copy h2 { font-size: clamp(2.4rem, 4.8vw, 4.2rem); line-height: .98; letter-spacing: -.055em; margin: 0 0 14px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); max-width: 40ch; }
.contact-wa { margin-top: 10px; }
.contact-form { display: grid; gap: 15px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form label { display: grid; gap: 7px; font-size: .9rem; font-weight: 700; color: #4c453d; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 14px; background: #fffdfa; font: inherit; color: var(--text);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-note { margin: -2px 0 0; color: var(--muted); font-size: .82rem; }

.site-footer { padding: 28px 0 40px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand .brand-icon { width: 48px; height: 48px; }
.footer-brand .brand-text strong { font-size: 1rem; }
.footer-inner > p { color: var(--muted); margin: 0; }

.floating-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 80; width: 68px; height: 68px;
  border-radius: 50%; background: var(--wa); display: grid; place-items: center;
  box-shadow: 0 16px 36px rgba(0,0,0,.2); border: 4px solid rgba(255,255,255,.95);
}
.floating-wa svg { width: 42px; height: 42px; fill: white; }

@media (max-width: 1140px) {
  .header-inner { grid-template-columns: auto 1fr auto auto; }
  .header-cta { display: none; }
  .hero-grid, .story-block, .case-layout, .about-grid, .faq-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; }
  .service-cards, .prototype-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child, .website-mockup-card:last-child { grid-column: 1 / -1; }
  .process-track { grid-template-columns: repeat(3, 1fr); }
  .case-scroller { grid-template-columns: repeat(3, minmax(260px, 1fr)); }
  .about-photo-card img { min-height: 460px; max-height: 560px; }
  .about-points { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 28px, 1200px); }
  .section { padding: 72px 0; }
  .header-inner { grid-template-columns: auto 1fr auto; min-height: 74px; }
  .brand-icon { width: 54px; height: 54px; }
  .brand-text strong { font-size: 1.08rem; }
  .brand-text small, .header-wa { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; left: 14px; right: 14px; top: 78px; flex-direction: column;
    align-items: flex-start; gap: 13px; background: rgba(251,248,242,.98); border: 1px solid var(--line);
    border-radius: 18px; padding: 18px; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }

  .hero-section { padding-top: 16px; }
  .hero-grid { gap: 22px; }
  .hero-visual { min-height: 350px; border-radius: 28px; }
  .hero-visual img { object-position: center; }
  .hero-copy h1 { font-size: 3.2rem; max-width: 10ch; margin-bottom: 14px; }
  .hero-copy .lead { font-size: 1.02rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-benefits { grid-template-columns: 1fr; }

  .story-block { padding: 22px; border-radius: 24px; }
  .story-gallery {
    overflow-x: auto; display: flex; scroll-snap-type: x mandatory; padding-bottom: 8px;
  }
  .story-gallery figure { min-width: 74%; scroll-snap-align: start; }
  .story-gallery img, .story-gallery figure:nth-child(2) img { height: 220px; }

  .service-cards { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .process-track {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px;
  }
  .process-track article { min-width: 84%; scroll-snap-align: start; }

  .section-heading-row { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
  .case-summary { padding: 24px; }
  .case-summary h3 { font-size: 1.7rem; }
  .case-scroller {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 8px;
  }
  .screen-card { min-width: 84%; scroll-snap-align: start; }
  .swipe-hint { display: block; }

  .prototype-grid { grid-template-columns: 1fr; }
  .website-mockup-card:last-child { grid-column: auto; }
  .mockup-split, .mockup-split.reverse { grid-template-columns: 1fr; }
  .mockup-stack img, .mockup-split img { height: 200px; }

  .about-photo-card img { min-height: 340px; max-height: none; }
  .about-points { grid-template-columns: 1fr; }
  .other-inline-grid { grid-template-columns: 1fr; }
  .mini-project-card { grid-template-columns: 82px 1fr; }
  .mini-project-visual { width: 82px; height: 82px; }

  .pricing-scroller {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-left: -14px; margin-right: -14px; padding: 12px 14px 18px;
  }
  .price-card { min-width: 84%; scroll-snap-align: center; }
  .price-card.featured { transform: none; }

  .form-row { grid-template-columns: 1fr; }
  .contact-panel { padding: 24px; border-radius: 24px; }
  .contact-form .btn { width: 100%; }
  .floating-wa { width: 68px; height: 68px; right: 16px; bottom: 16px; }
  .floating-wa svg { width: 42px; height: 42px; }
}

@media (max-width: 560px) {
  .hero-copy h1, .section-title, .story-copy h2, .contact-copy h2 { max-width: none; }
  .hero-copy h1 { font-size: 2.95rem; }
  .hero-note { font-size: .85rem; padding: 11px 12px; border-radius: 16px; }
  .note-top { top: 16px; right: 16px; max-width: 145px; }
  .note-bottom { right: 14px; bottom: 16px; max-width: 152px; }
  .case-summary h3, .mockup-copy h3 { font-size: 1.45rem; }
  .quote-shot { min-height: 320px; }
  .quote-shot h4 { font-size: 1.35rem; }
  .mini-project-card { grid-template-columns: 1fr; text-align: left; }
}
