:root {
  --coral: #ef5f4d;
  --coral-deep: #df4f3d;
  --coral-soft: #fde9e3;
  --brown: #70430a;
  --brown-dark: #2d2118;
  --gold: #f3b63f;
  --green: #35a95d;
  --green-soft: #e8f7ed;
  --cream: #fff9f3;
  --cream-2: #fff4ea;
  --white: #ffffff;
  --ink: #29251f;
  --muted: #6f675e;
  --line: #efd9cc;
  --line-strong: #e8c4b2;
  --shadow-sm: 0 10px 30px rgba(95, 56, 23, .08);
  --shadow-md: 0 22px 54px rgba(95, 56, 23, .13);
  --shadow-lg: 0 35px 75px rgba(83, 47, 19, .17);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

::selection { background: rgba(239, 95, 77, .2); color: var(--brown-dark); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--brown-dark);
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 104px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(112, 67, 10, .10);
  background: rgba(255, 249, 243, .92);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 9px 24px rgba(76, 43, 17, .08); background: rgba(255, 249, 243, .97); }
.header-inner { height: 82px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-mark img { width: 58px; height: 58px; object-fit: contain; }
.brand-name { margin-left: -3px; font-weight: 800; font-size: 22px; letter-spacing: -.8px; color: var(--brown-dark); white-space: nowrap; }
.brand-name strong { color: var(--coral); font-family: "Caveat", cursive; font-size: 30px; line-height: 1; }
.brand-name span { color: var(--brown); }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a { position: relative; font-size: 14px; font-weight: 700; color: #4d4238; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--coral); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta { margin-left: 6px; }
.menu-button { display: none; width: 46px; height: 46px; margin-left: auto; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-button span { display: block; height: 2px; width: 24px; margin: 5px auto; background: var(--brown-dark); transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 22px;
  border: 1px solid var(--coral);
  border-radius: 12px;
  background: linear-gradient(135deg, #f56a58, var(--coral));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(239, 95, 77, .20);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(239, 95, 77, .27); }
.button:active { transform: translateY(0); }
.button-small { min-height: 46px; padding: 10px 18px; border-radius: 11px; }
.button-secondary { background: rgba(255,255,255,.62); color: var(--brown-dark); border-color: #e6b9a6; box-shadow: none; }
.button-secondary:hover, .button-secondary:focus-visible { background: #fff; box-shadow: var(--shadow-sm); }

.hero { min-height: 820px; padding-top: 168px; display: flex; align-items: center; overflow: clip; }
.hero::before {
  content: "";
  position: absolute;
  inset: 82px 0 0;
  opacity: .26;
  pointer-events: none;
  background-image: linear-gradient(rgba(112,67,10,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(112,67,10,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(4px); pointer-events: none; }
.hero-glow-one { width: 470px; height: 470px; right: -120px; top: 130px; background: radial-gradient(circle, rgba(239,95,77,.16), transparent 70%); }
.hero-glow-two { width: 330px; height: 330px; left: -170px; bottom: 20px; background: radial-gradient(circle, rgba(243,182,63,.18), transparent 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 62px; }
.hero-copy { padding-bottom: 34px; }
.script-label { margin: 0 0 6px; color: var(--coral); font-family: "Caveat", cursive; font-size: 25px; font-weight: 700; line-height: 1.1; }
.hero h1 { margin: 0; color: var(--brown-dark); font-size: clamp(44px, 5vw, 72px); line-height: 1.02; letter-spacing: -3.3px; }
.hero h1 em { display: block; color: var(--coral); font-style: normal; }
.hero-intro { max-width: 620px; margin: 28px 0 0; color: #4f473f; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.location-line { display: flex; align-items: center; gap: 10px; margin-top: 26px; color: var(--muted); font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.location-line svg { width: 17px; height: 17px; color: var(--brown); }
.location-line i { width: 3px; height: 3px; border-radius: 50%; background: #ba9e89; }

.hero-showcase { position: relative; min-height: 610px; }
.browser { position: absolute; overflow: hidden; border: 1px solid #eadacf; border-radius: 15px; background: #fff; box-shadow: var(--shadow-md); }
.browser-bar { display: flex; align-items: center; gap: 5px; height: 22px; padding-inline: 10px; background: #fffaf6; border-bottom: 1px solid #f0e5dd; }
.browser-bar span { width: 6px; height: 6px; border-radius: 50%; background: #f26c5c; }
.browser-bar span:nth-child(2) { background: #f6ba42; }
.browser-bar span:nth-child(3) { background: #5cc875; }
.browser img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.browser-large { width: 77%; height: 430px; right: 0; top: 22px; transform: rotate(.8deg); }
.browser-small { width: 56%; height: 330px; left: 0; bottom: 15px; transform: rotate(-.7deg); z-index: 2; }
.automation-card { position: absolute; z-index: 4; right: -5px; bottom: 18px; width: 245px; padding: 20px; border: 1px solid #ecdccf; border-radius: 18px; background: rgba(255,255,255,.97); box-shadow: var(--shadow-md); }
.automation-card p { margin: 0 0 14px; font-size: 14px; font-weight: 800; }
.automation-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.automation-card li { display: flex; align-items: center; gap: 10px; color: #4e463e; font-size: 12px; font-weight: 650; }
.automation-icon { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; background: #f7efea; color: var(--brown); font-size: 13px; }
.automation-icon.green { background: var(--green-soft); color: var(--green); }
.automation-icon.peach { background: var(--coral-soft); color: var(--coral); }
.automation-icon.gold { background: #fff4d5; color: #bd820e; }

.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading h2, .work-intro h2, .process-heading h2, .about-card h2, .contact-card h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.12; letter-spacing: -2.2px; color: var(--brown-dark); }
.section-heading > p:last-child { max-width: 700px; color: var(--muted); font-size: 17px; margin-top: 16px; }
.services { background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,249,243,.15)); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { min-height: 420px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.74); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 18px; }
.service-icon svg { width: 28px; height: 28px; }
.service-icon.coral { color: var(--coral); background: var(--coral-soft); }
.service-icon.green { color: var(--green); background: var(--green-soft); }
.service-icon.gold { color: #b57908; background: #fff2cb; }
.service-card h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: -.8px; color: var(--brown-dark); }
.service-card > p { min-height: 78px; margin: 0 0 20px; color: var(--muted); }
.tick-list, .case-capabilities { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tick-list li, .case-capabilities li { position: relative; padding-left: 27px; color: #4f473f; font-size: 14px; font-weight: 600; }
.tick-list li::before, .case-capabilities li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 11px; font-weight: 900; }

.work { background: #fffdfa; border-block: 1px solid rgba(112,67,10,.08); }
.work-intro { display: grid; grid-template-columns: .8fr 1fr; align-items: end; gap: 80px; margin-bottom: 46px; }
.work-intro > p { max-width: 600px; margin: 0 0 4px; color: var(--muted); font-size: 17px; }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.case-study { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.case-study:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case-visual { position: relative; height: 385px; overflow: hidden; border-bottom: 1px solid var(--line); }
.tlg-visual { background: linear-gradient(145deg, #f7f9ff, #fff2ed); }
.bss-visual { background: linear-gradient(145deg, #101621, #2d394b); }
.case-browser { position: absolute; overflow: hidden; border-radius: 12px; background: #fff; box-shadow: 0 20px 45px rgba(36, 29, 21, .18); }
.case-browser img { width: 100%; height: calc(100% - 22px); object-fit: cover; object-position: top; }
.case-browser-main { width: 78%; height: 312px; left: 31px; top: 30px; transform: rotate(-.8deg); }
.case-browser-float { width: 49%; height: 220px; right: 24px; bottom: -25px; transform: rotate(2deg); }
.bss-visual .case-browser-main { left: 27px; transform: rotate(.7deg); }
.bss-visual .case-browser-float { right: 21px; transform: rotate(-1.6deg); }
.case-content { padding: 30px; }
.case-category { margin: 0 0 8px; color: var(--coral); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.case-content h3 { margin: 0 0 13px; font-size: 30px; letter-spacing: -1px; color: var(--brown-dark); }
.case-content > p:not(.case-category) { min-height: 102px; margin: 0 0 22px; color: var(--muted); }
.case-capabilities { grid-template-columns: repeat(2, 1fr); gap: 9px 14px; margin-bottom: 25px; }
.case-capabilities li { font-size: 12px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--coral); font-size: 14px; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.building-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; max-width: 860px; margin: 28px auto 0; padding: 24px 27px; border: 1px dashed #e8bba6; border-radius: 20px; background: var(--cream); }
.building-card .building-badge { grid-column: 1 / -1; margin-bottom: -12px; color: var(--coral); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.building-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: var(--coral-soft); color: var(--coral); font-size: 25px; font-weight: 800; }
.building-card h3 { margin: 0 0 4px; font-size: 22px; color: var(--brown-dark); }
.building-card p { margin: 0; color: var(--muted); }

.process-section { overflow: hidden; }
.process-section::after { content: ""; position: absolute; width: 480px; height: 480px; right: -160px; top: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(53,169,93,.09), transparent 65%); }
.process-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.process-heading { position: sticky; top: 130px; z-index: 2; }
.process-heading > p:last-child { max-width: 440px; color: var(--muted); font-size: 17px; }
.process-list { position: relative; z-index: 2; list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.process-list::before { content: ""; position: absolute; left: 33px; top: 68px; bottom: 68px; border-left: 1px dashed #dfb49d; }
.process-list li { position: relative; display: grid; grid-template-columns: 68px 1fr; gap: 22px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.68); box-shadow: var(--shadow-sm); }
.process-number { position: relative; z-index: 2; width: 68px; height: 68px; display: grid; place-items: center; border: 2px solid var(--coral); border-radius: 50%; background: var(--cream); color: var(--coral); font-family: "Caveat", cursive; font-size: 29px; font-weight: 800; }
.process-list li:nth-child(2) .process-number { border-color: var(--green); color: var(--green); }
.process-list li:nth-child(3) .process-number { border-color: var(--gold); color: #aa7409; }
.process-list h3 { margin: 4px 0 5px; color: var(--brown-dark); font-size: 22px; }
.process-list p { margin: 0; color: var(--muted); }

.about-contact { padding-top: 90px; background: linear-gradient(180deg, #fffaf5 0%, #fff5eb 100%); border-top: 1px solid rgba(112,67,10,.07); }
.about-contact-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 28px; align-items: stretch; }
.about-card, .contact-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.76); box-shadow: var(--shadow-sm); }
.about-card { display: grid; grid-template-columns: 1fr .68fr; gap: 32px; padding: 36px; align-items: center; }
.about-copy > p:not(.script-label) { color: var(--muted); }
.linkedin-link { margin-top: 11px; }
.linkedin-link svg { width: 20px; height: 20px; }
.portrait-frame { position: relative; min-height: 480px; overflow: hidden; border-radius: 24px; background: #161616; box-shadow: var(--shadow-md); }
.portrait-frame img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; object-position: 50% 35%; }
.leaf-doodle { position: absolute; width: 94px; height: 94px; right: -8px; bottom: 5px; color: var(--coral); stroke-width: 1.8; opacity: .9; }
.contact-card { padding: 36px; scroll-margin-top: 112px; }
.contact-card > p:not(.script-label) { margin: 8px 0 24px; color: var(--muted); }
.contact-form { display: grid; gap: 17px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.field { display: grid; gap: 7px; }
.field > span, .contact-method legend { color: #4e4035; font-size: 12px; font-weight: 800; }
.field b { color: var(--coral); }
.field small { font-weight: 500; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid #e7d8cd;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 126px; }
.field input::placeholder, .field textarea::placeholder { color: #aaa097; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--coral); background: #fff; box-shadow: 0 0 0 4px rgba(239,95,77,.10); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #ca3e32; box-shadow: 0 0 0 4px rgba(202,62,50,.08); }
.contact-method { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 0; border: 0; }
.contact-method legend { margin-bottom: 7px; width: 100%; }
.contact-method label { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 600; }
.contact-method input { accent-color: var(--coral); }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-submit:disabled { opacity: .72; cursor: wait; transform: none; }
.spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.form-submit.loading .spinner { display: block; }
.form-submit.loading .submit-arrow { display: none; }
.form-message { display: none; padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 700; }
.form-message.success { display: block; background: var(--green-soft); color: #237b42; border: 1px solid #bfe8ca; }
.form-message.error { display: block; background: #fff0ed; color: #a6392f; border: 1px solid #efc1b9; }
.form-note { display: flex; gap: 8px; margin: -2px 0 0; color: var(--muted); font-size: 11px; }
.form-note svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 2px; }
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.site-footer { border-top: 1px solid var(--line); background: #fffaf5; }
.footer-main { min-height: 145px; display: grid; grid-template-columns: .8fr 1.4fr .4fr; gap: 30px; align-items: center; }
.footer-brand .brand-mark, .footer-brand .brand-mark img { width: 52px; height: 52px; }
.footer-brand .brand-name { font-size: 18px; }
.footer-brand .brand-name strong { font-size: 27px; }
.footer-details { display: grid; justify-items: center; gap: 4px; color: var(--muted); font-size: 13px; text-align: center; }
.footer-details strong { color: var(--brown-dark); }
.footer-details a:hover { color: var(--coral); }
.footer-social { justify-self: end; }
.footer-social a { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid #e8b9a4; border-radius: 50%; color: var(--coral); transition: background .2s ease, color .2s ease, transform .2s ease; }
.footer-social a:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 21px; height: 21px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 18px 0 23px; border-top: 1px solid var(--line); color: #8a8179; font-size: 11px; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--coral); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.legal-page { min-height: 100vh; padding: 150px 0 90px; }
.legal-card { max-width: 820px; margin: 0 auto; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.legal-card h1 { font-size: 46px; line-height: 1.1; color: var(--brown-dark); }
.legal-card h2 { margin-top: 32px; color: var(--brown-dark); }
.legal-card p, .legal-card li { color: var(--muted); }

@media (max-width: 1080px) {
  .hero { min-height: 760px; }
  .hero-grid { gap: 38px; }
  .hero h1 { font-size: 55px; }
  .hero-showcase { min-height: 550px; }
  .browser-large { height: 390px; }
  .browser-small { height: 300px; }
  .automation-card { width: 220px; right: -10px; }
  .about-contact-grid { grid-template-columns: 1fr; }
  .about-card { grid-template-columns: 1fr 300px; }
  .portrait-frame, .portrait-frame img { min-height: 430px; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; }
  .mobile-menu {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 2px;
    padding: 20px;
    background: rgba(255,249,243,.99);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu > a:not(.button) { padding: 14px 8px; border-bottom: 1px solid rgba(112,67,10,.08); font-weight: 750; }
  .mobile-menu .button { margin-top: 12px; }
  .hero { min-height: auto; padding: 142px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero h1 { max-width: 780px; font-size: clamp(48px, 8vw, 68px); }
  .hero-showcase { min-height: 610px; max-width: 730px; width: 100%; margin-inline: auto; }
  .browser-large { width: 76%; height: 430px; }
  .browser-small { width: 58%; height: 340px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card > p { min-height: auto; }
  .work-intro { grid-template-columns: 1fr; gap: 16px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-study { max-width: 720px; margin-inline: auto; }
  .case-content > p:not(.case-category) { min-height: auto; }
  .process-grid { grid-template-columns: 1fr; gap: 34px; }
  .process-heading { position: static; }
  .footer-main { grid-template-columns: 1fr; justify-items: center; gap: 17px; padding: 30px 0; }
  .footer-social { justify-self: auto; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .header-inner { height: 72px; }
  .brand-mark, .brand-mark img { width: 50px; height: 50px; }
  .brand-name { font-size: 18px; }
  .brand-name strong { font-size: 26px; }
  .mobile-menu { inset-top: 72px; top: 72px; }
  .hero { padding: 120px 0 66px; }
  .hero::before { inset-top: 72px; top: 72px; }
  .script-label { font-size: 23px; }
  .hero h1 { font-size: clamp(40px, 12.2vw, 56px); letter-spacing: -2.5px; }
  .hero-intro { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .location-line { align-items: flex-start; }
  .location-line i { display: none; }
  .location-line span { width: calc(100% - 28px); }
  .hero-showcase { min-height: 510px; margin-top: 10px; }
  .browser-large { width: 91%; height: 320px; right: 0; }
  .browser-small { width: 74%; height: 260px; left: 0; bottom: 12px; }
  .automation-card { width: 185px; padding: 14px; right: 2px; bottom: 0; }
  .automation-card p { font-size: 12px; }
  .automation-card li { font-size: 10px; gap: 7px; }
  .automation-icon { width: 24px; height: 24px; border-radius: 7px; }
  .section-heading h2, .work-intro h2, .process-heading h2, .about-card h2, .contact-card h2 { font-size: 37px; letter-spacing: -1.6px; }
  .section-heading { margin-bottom: 28px; }
  .service-grid { gap: 16px; }
  .service-card { padding: 24px; border-radius: 19px; }
  .service-card h3 { font-size: 22px; }
  .work-intro { margin-bottom: 30px; }
  .case-grid { gap: 20px; }
  .case-visual { height: 310px; }
  .case-browser-main { width: 84%; height: 250px; left: 17px; top: 24px; }
  .case-browser-float { width: 57%; height: 175px; right: 15px; bottom: -20px; }
  .case-content { padding: 24px; }
  .case-content h3 { font-size: 26px; }
  .case-capabilities { grid-template-columns: 1fr; }
  .building-card { grid-template-columns: auto 1fr; gap: 15px; padding: 22px; }
  .building-card .building-badge { grid-column: 1 / -1; }
  .process-list::before { left: 24px; }
  .process-list li { grid-template-columns: 50px 1fr; gap: 15px; padding: 20px; }
  .process-number { width: 50px; height: 50px; font-size: 24px; }
  .process-list h3 { margin-top: 0; font-size: 19px; }
  .process-list p { font-size: 14px; }
  .about-contact-grid { gap: 20px; }
  .about-card { grid-template-columns: 1fr; padding: 24px; }
  .portrait-frame { order: -1; min-height: 420px; }
  .portrait-frame img { min-height: 420px; object-position: 50% 30%; }
  .contact-card { padding: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-method { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-method legend { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .footer-bottom div { gap: 16px; }
  .legal-card { padding: 25px; }
  .legal-card h1 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
