/*
Theme Name: Summer Banana 2026
Theme URI: https://www.summer-banana.com/
Author: Summer Banana Studio
Author URI: https://www.summer-banana.com/
Description: 現場とITを明るくつなぐ、Summer Banana Studio専用オリジナルテーマ。
Version: 1.0.0
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: summer-banana-2026
*/

:root {
  --banana: #ffd918;
  --banana-soft: #fff4a8;
  --cream: #f8f3e8;
  --paper: #fffdf8;
  --ink: #29231f;
  --brown: #5b341d;
  --green: #70854b;
  --line: rgba(41, 35, 31, 0.16);
  --shadow: 0 24px 70px rgba(55, 39, 26, 0.10);
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: min(1180px, calc(100vw - 48px));
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "DM Sans", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.site-shell { overflow: clip; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 120px 0; position: relative; }
.section--paper { background: var(--paper); }
.section--banana { background: var(--banana); }
.section--ink { background: var(--ink); color: #fff; }
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  font: 700 12px/1 var(--font-en);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.display-title {
  margin: 0;
  font-size: clamp(42px, 7vw, 104px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 900;
}
.section-title {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.12;
  letter-spacing: -.045em;
}
.section-lead { max-width: 680px; margin: 28px 0 0; font-size: 18px; }
.en { font-family: var(--font-en); }
.marker { background: linear-gradient(transparent 62%, var(--banana) 62%); }
.button {
  display: inline-flex;
  min-height: 60px;
  padding: 0 28px;
  justify-content: center;
  align-items: center;
  gap: 26px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--banana);
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button::after { content: "↗"; font-size: 18px; }
.button:hover { transform: translateY(-3px); box-shadow: 0 10px 0 var(--ink); }
.button--dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.button--light { color: var(--ink); background: #fff; border-color: #fff; }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 800; border-bottom: 2px solid; }
.text-link::after { content: "→"; }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(1240px, calc(100vw - 36px));
  transform: translateX(-50%);
}
.header-inner {
  display: flex;
  min-height: 76px;
  padding: 10px 12px 10px 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  background: rgba(255,253,248,.9);
  box-shadow: 0 12px 40px rgba(41,35,31,.08);
  backdrop-filter: blur(16px);
}
.site-brand { display: flex; gap: 12px; align-items: center; font: 800 15px/1.1 var(--font-en); letter-spacing: -.02em; }
.site-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.site-brand span { max-width: 110px; }
.site-nav { display: flex; gap: 34px; align-items: center; }
.site-nav-list, .site-nav-list li { display: contents; }
.site-nav a { font-size: 14px; font-weight: 800; }
.site-nav a:not(.header-cta) { position: relative; }
.site-nav a:not(.header-cta)::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 5px; background: var(--banana); transform: scaleX(0); transition: transform .2s ease; transform-origin: left; }
.site-nav a:hover::after, .site-nav .current-menu-item a::after { transform: scaleX(1); }
.header-cta { padding: 14px 22px; border-radius: 14px; background: var(--ink); color: #fff; }
.menu-toggle { display: none; width: 52px; height: 52px; padding: 0; border: 0; border-radius: 14px; background: var(--banana); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); transition: .25s; }
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  min-height: 940px;
  padding: 154px 0 72px;
  background: var(--banana);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(41,35,31,.18) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000 15%, transparent 75%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero-copy { padding: 58px 0 20px; }
.hero-kicker { display: flex; gap: 14px; align-items: center; margin: 0 0 30px; font-weight: 800; }
.hero-kicker::before { content: "2026"; padding: 5px 11px; border: 1px solid; border-radius: 999px; font: 700 11px/1 var(--font-en); }
.hero-title { max-width: 760px; }
.hero-title .line { display: block; white-space: nowrap; }
.hero-title .line:nth-child(2) { margin-left: .4em; }
.hero-title small { display: block; margin: 28px 0 0; font-size: clamp(16px, 1.7vw, 23px); line-height: 1.7; letter-spacing: .02em; }
.hero-actions { display: flex; gap: 16px; margin-top: 42px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}
.hero-logo-disc {
  width: min(500px, 44vw);
  aspect-ratio: 1;
  padding: 42px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 28px 28px 0 var(--ink);
  transform: rotate(4deg);
}
.hero-logo-disc img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.orbit-copy { position: absolute; inset: 0; animation: spin 28s linear infinite; }
.orbit-copy::before { content: "WEB DESIGN • APP DEVELOPMENT • OBIHIRO • "; position: absolute; top: 0; left: 50%; font: 700 13px/1 var(--font-en); letter-spacing: .16em; transform: translateX(-50%); white-space: nowrap; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-note { position: absolute; right: -10px; bottom: 40px; width: 210px; padding: 20px; border: 2px solid var(--ink); border-radius: 18px; background: #fff; font-size: 13px; font-weight: 700; transform: rotate(-5deg); }
.hero-note strong { display: block; margin-bottom: 5px; font: 900 28px/1 var(--font-en); }
.marquee { position: absolute; right: 0; bottom: 0; left: 0; overflow: hidden; border-block: 2px solid var(--ink); background: var(--paper); }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { padding: 17px 32px; font: 800 15px/1 var(--font-en); letter-spacing: .08em; }
.marquee-track span::after { content: "✦"; margin-left: 64px; color: var(--green); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Intro */
.intro-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.intro-sticky { position: sticky; top: 130px; }
.intro-sticky .section-title { white-space: nowrap; }
.intro-stamp { width: 150px; margin-top: 46px; padding: 20px; border: 2px solid var(--ink); border-radius: 50%; aspect-ratio: 1; display: grid; place-items: center; text-align: center; font: 800 12px/1.5 var(--font-en); transform: rotate(-8deg); }
.intro-copy { font-size: clamp(22px, 2.65vw, 38px); line-height: 1.7; font-weight: 700; letter-spacing: -.025em; }
.intro-copy p { margin: 0 0 42px; }
.intro-copy .small { max-width: 720px; font-size: 17px; font-weight: 500; line-height: 2; }

/* Services */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 58px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { position: relative; min-height: 560px; padding: 42px; overflow: hidden; border: 2px solid var(--ink); border-radius: var(--radius-xl); background: var(--paper); transition: transform .3s ease; }
.service-card:hover { transform: translateY(-8px) rotate(-.5deg); }
.service-card:nth-child(even):hover { transform: translateY(-8px) rotate(.5deg); }
.card-number { display: inline-grid; width: 46px; height: 46px; place-items: center; border: 1px solid; border-radius: 50%; font: 700 12px/1 var(--font-en); }
.service-card h2, .service-card h3 { max-width: 520px; margin: 80px 0 20px; font-size: clamp(34px, 4vw, 58px); line-height: 1.08; letter-spacing: -.05em; }
.service-card p { max-width: 520px; margin: 0; }
.service-card .text-link { position: absolute; bottom: 42px; left: 42px; }
.service-art { position: absolute; right: -70px; bottom: -95px; width: 280px; height: 280px; border: 30px solid var(--banana); border-radius: 50%; opacity: .75; }
.service-card:nth-child(2) .service-art { border-radius: 46px; transform: rotate(22deg); background: var(--banana); border: 0; }

/* Work */
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 28px; }
.work-card { grid-column: span 7; }
.work-card:nth-child(2n) { grid-column: 6 / span 7; margin-top: 90px; }
.work-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); background: #ded8ca; }
.work-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.work-card:hover .work-media img { transform: scale(1.035); }
.work-index { position: absolute; z-index: 2; top: 20px; left: 20px; padding: 9px 13px; color: #fff; background: var(--ink); border-radius: 999px; font: 800 10px/1 var(--font-en); letter-spacing: .12em; }
.work-card--seito .work-media::after { content: "SEITO ELECTRIC FACILITIES"; position: absolute; right: 20px; bottom: 20px; padding: 12px 16px; color: var(--ink); background: var(--banana); border: 2px solid var(--ink); border-radius: 12px; font: 900 11px/1 var(--font-en); letter-spacing: .08em; }
.work-card--app .work-media { display: grid; place-items: center; background: linear-gradient(145deg, #dcebf6, #f8f3e8); }
.work-card--app .work-media::before { content: ""; position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: #9ecbed; }
.work-card--app .work-media img { position: relative; width: 64%; height: 64%; object-fit: contain; filter: drop-shadow(20px 24px 0 rgba(41,35,31,.13)); }
.work-browser { position: absolute; inset: 13% 8%; overflow: hidden; padding-top: 36px; background: #fff; border: 3px solid var(--ink); border-radius: 18px; box-shadow: 18px 20px 0 rgba(41,35,31,.16); transform: rotate(-2deg); }
.work-browser > span { position: absolute; top: 0; right: 0; left: 0; height: 36px; background: var(--ink); }
.work-browser > span::before { content: "•••"; position: absolute; top: 2px; left: 14px; color: var(--banana); font: 900 18px/1 var(--font-en); letter-spacing: 4px; }
.work-browser img { width: 100%; height: 100%; object-fit: contain; background: #dff3fa; }
.work-card--webapp .work-media { background: linear-gradient(145deg, #fff0a5, #f8f3e8); }
.placeholder-art { width: 100%; height: 100%; display: grid; place-items: center; position: relative; background: linear-gradient(145deg, #efe7d7, #fff9e8); }
.placeholder-device { width: 58%; aspect-ratio: 16/10; border: 14px solid var(--ink); border-bottom-width: 26px; border-radius: 12px; background: var(--banana); box-shadow: 30px 34px 0 rgba(91,52,29,.18); transform: rotate(-4deg); }
.placeholder-device::before { content: "SUMMER / BANANA"; display: grid; height: 100%; place-items: center; font: 900 clamp(12px,2vw,28px)/1 var(--font-en); white-space: pre; text-align: center; }
.work-meta { display: flex; justify-content: space-between; gap: 20px; align-items: start; padding-top: 22px; }
.work-meta h3 { margin: 0; font-size: clamp(24px, 3vw, 40px); line-height: 1.25; }
.work-meta p { margin: 7px 0 0; color: rgba(41,35,31,.65); }
.work-tag { flex: none; padding: 8px 13px; border: 1px solid; border-radius: 999px; font: 700 11px/1 var(--font-en); }

/* Reasons */
.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reason-card { min-height: 380px; padding: 30px; border-radius: var(--radius-lg); background: var(--paper); color: var(--ink); }
.reason-icon { display: grid; width: 84px; height: 84px; place-items: center; border-radius: 24px; background: var(--banana); font: 900 24px/1 var(--font-en); transform: rotate(-3deg); }
.reason-card h3 { margin: 80px 0 16px; font-size: 24px; line-height: 1.35; }
.reason-card p { margin: 0; font-size: 14px; }

/* Process */
.process-list { margin: 60px 0 0; padding: 0; list-style: none; counter-reset: step; }
.process-list li { counter-increment: step; display: grid; grid-template-columns: 90px 1fr .8fr; gap: 32px; align-items: center; padding: 28px 0; border-top: 1px solid var(--line); }
.process-list li::before { content: "0" counter(step); font: 800 18px/1 var(--font-en); }
.process-list h3 { margin: 0; font-size: clamp(22px,3vw,38px); }
.process-list p { margin: 0; }

/* Note / CTA */
.note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.note-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.note-card .date { font: 700 11px/1 var(--font-en); letter-spacing: .1em; }
.note-card h3 { margin: 36px 0 12px; font-size: 20px; line-height: 1.5; }
.contact-panel { position: relative; padding: 90px clamp(28px,7vw,100px); overflow: hidden; border-radius: var(--radius-xl); background: var(--banana); color: var(--ink); }
.contact-panel::after { content: "☀"; position: absolute; right: 6%; bottom: -35%; font-size: 360px; line-height: 1; color: rgba(255,255,255,.45); }
.contact-panel .section-title { max-width: 760px; position: relative; z-index: 1; }
.contact-panel p { max-width: 610px; position: relative; z-index: 1; }
.contact-panel .button { position: relative; z-index: 1; margin-top: 24px; }

/* Inner pages */
.page-hero { padding: 190px 0 90px; background: var(--banana); }
.page-hero .display-title { max-width: 1000px; }
.page-content { width: min(840px, calc(100vw - 48px)); margin: 0 auto; padding: 90px 0 120px; }
.page-content h2 { margin-top: 70px; font-size: 36px; line-height: 1.35; }
.page-content a { text-decoration: underline; text-decoration-color: var(--banana); text-decoration-thickness: 4px; }
.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.archive-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.archive-card .work-media { margin-bottom: 24px; }
.archive-card h2 { margin: 0 0 8px; font-size: 28px; }
.single-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.single-meta span { padding: 8px 13px; border: 1px solid; border-radius: 999px; font-size: 13px; }

/* Works page */
.works-hero {
  position: relative;
  padding: 175px 0 105px;
  overflow: hidden;
  background: var(--banana);
}
.works-hero::before {
  content: "WORKS";
  position: absolute;
  right: -2vw;
  bottom: -8vw;
  color: rgba(255,255,255,.35);
  font: 900 clamp(150px, 26vw, 390px)/.7 var(--font-en);
  letter-spacing: -.1em;
}
.works-hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.works-hero-copy { position: relative; z-index: 2; }
.works-hero-copy .section-lead { max-width: 620px; }
.works-hero-copy .button { margin-top: 34px; }
.works-outline { color: transparent; -webkit-text-stroke: 2px var(--ink); text-stroke: 2px var(--ink); }
.works-hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.works-hero-image { width: min(510px, 42vw); overflow: hidden; border: 3px solid var(--ink); border-radius: 52% 48% 40% 60% / 45% 40% 60% 55%; background: #fff; box-shadow: 24px 28px 0 var(--ink); transform: rotate(3deg); }
.works-hero-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.works-count { position: absolute; right: -5px; bottom: 10px; display: flex; gap: 14px; align-items: end; padding: 18px 22px; border: 2px solid var(--ink); border-radius: 18px; background: var(--paper); transform: rotate(-5deg); }
.works-count strong { font: 900 62px/.8 var(--font-en); }
.works-count span { font: 800 10px/1.35 var(--font-en); letter-spacing: .1em; }
.works-intro { padding: 90px 0 0; }
.works-intro-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 70px; padding-bottom: 90px; border-bottom: 1px solid var(--line); }
.works-intro-lead { max-width: 800px; margin: 0; font-size: clamp(24px, 3.2vw, 44px); line-height: 1.65; font-weight: 700; letter-spacing: -.025em; }
.works-archive { padding-top: 80px; }
.works-toolbar { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 54px; }
.work-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; max-width: 590px; }
.work-filter { padding: 11px 16px; border: 1px solid var(--ink); border-radius: 999px; background: transparent; font: 800 11px/1 var(--font-en); letter-spacing: .06em; cursor: pointer; transition: .2s; }
.work-filter:hover, .work-filter.is-active { background: var(--ink); color: #fff; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px 28px; }
.portfolio-card { transition: opacity .25s ease, transform .35s ease; }
.portfolio-card[hidden] { display: none; }
.portfolio-card--featured { grid-column: 1 / -1; }
.portfolio-media { position: relative; overflow: hidden; aspect-ratio: 1 / 1; border: 2px solid var(--ink); border-radius: 36px; background: #f0e9dc; }
.portfolio-card--featured .portfolio-media { aspect-ratio: 2 / 1; }
.portfolio-card--yellow .portfolio-media { background: #f8dfa0; }
.portfolio-card--blue .portfolio-media { background: #c9dced; }
.portfolio-card--green .portfolio-media { background: #d5e0bf; }
.portfolio-card--peach .portfolio-media { background: #efd1ba; }
.portfolio-card--lavender .portfolio-media { background: #dcd4eb; }
.portfolio-media img { width: 100%; height: 100%; padding: 8%; object-fit: contain; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.portfolio-card--featured .portfolio-media img { padding: 3.5% 19%; }
.portfolio-card:hover .portfolio-media img { transform: scale(1.045) rotate(1deg); }
.portfolio-index { position: absolute; z-index: 2; top: 22px; left: 24px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: rgba(255,255,255,.75); font: 800 12px/1 var(--font-en); backdrop-filter: blur(8px); }
.portfolio-arrow { position: absolute; z-index: 2; right: 22px; bottom: 22px; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: 22px; transition: transform .25s ease; }
.portfolio-card:hover .portfolio-arrow { transform: rotate(45deg); }
.portfolio-copy { padding: 24px 6px 0; }
.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.portfolio-tags span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; font: 700 10px/1 var(--font-en); text-transform: uppercase; letter-spacing: .05em; }
.portfolio-copy h3 { margin: 18px 0 10px; font-size: clamp(28px, 3.4vw, 48px); line-height: 1.15; letter-spacing: -.045em; }
.portfolio-card--featured .portfolio-copy h3 { font-size: clamp(38px, 5vw, 70px); }
.portfolio-copy p { max-width: 650px; margin: 0; color: rgba(41,35,31,.68); }
.works-philosophy { overflow: hidden; }
.works-philosophy-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.works-philosophy .section-title span { color: var(--banana); }
.works-principles { border-top: 1px solid rgba(255,255,255,.25); }
.works-principles article { display: grid; grid-template-columns: 55px .7fr 1fr; gap: 28px; align-items: start; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.works-principles strong { color: var(--banana); font: 800 13px/1 var(--font-en); }
.works-principles h3 { margin: 0; font-size: 22px; line-height: 1.4; }
.works-principles p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; }

/* Service detail */
.service-detail { --service-accent: var(--banana); overflow: hidden; }
.service-detail--app { --service-accent: #9ed9ef; }
.service-detail-hero { min-height: 820px; padding: 165px 0 100px; background: var(--service-accent); }
.service-detail-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 7vw; align-items: center; }
.service-detail-lead { max-width: 720px; margin: 30px 0 0; font-size: clamp(24px, 2.5vw, 38px); font-weight: 900; line-height: 1.45; letter-spacing: -.035em; }
.service-detail-description { max-width: 650px; margin: 18px 0 34px; }
.service-detail-visual { position: relative; display: grid; min-height: 520px; place-items: center; }
.service-detail-visual::before { content: ""; position: absolute; inset: 3%; border: 2px dashed var(--ink); border-radius: 50%; animation: spin 35s linear infinite; }
.service-device { position: relative; z-index: 1; width: min(430px, 35vw); aspect-ratio: 4 / 3; background: var(--paper); border: 4px solid var(--ink); border-radius: 24px; box-shadow: 23px 25px 0 var(--ink); transform: rotate(-4deg); }
.service-device::before { content: ""; position: absolute; inset: 34px 22px 22px; background: linear-gradient(145deg, var(--service-accent), #fff); border: 2px solid var(--ink); }
.service-device::after { content: "WEB"; position: absolute; inset: 0; display: grid; place-items: center; font: 900 44px/1 var(--font-en); letter-spacing: -.05em; }
.service-device > span { position: absolute; top: 12px; left: 18px; width: 9px; height: 9px; z-index: 2; border-radius: 50%; background: var(--ink); box-shadow: 15px 0 var(--ink), 30px 0 var(--ink); }
.service-detail--app .service-device { width: min(285px, 24vw); aspect-ratio: 9 / 18; border-radius: 42px; transform: rotate(5deg); }
.service-detail--app .service-device::before { inset: 25px 14px; border-radius: 27px; }
.service-detail--app .service-device::after { content: "APP"; font-size: 38px; }
.service-detail--app .service-device > span { top: 13px; left: 50%; width: 70px; height: 8px; border-radius: 10px; box-shadow: none; transform: translateX(-50%); }
.service-detail-visual p { position: absolute; z-index: 2; right: 0; bottom: 18px; margin: 0; padding: 14px 18px; color: #fff; background: var(--ink); border-radius: 999px; font: 800 11px/1 var(--font-en); letter-spacing: .12em; transform: rotate(-5deg); }
.service-facts { color: #fff; background: var(--ink); }
.service-facts dl { display: grid; grid-template-columns: repeat(3,1fr); margin: 0; }
.service-facts dl > div { padding: 32px; border-right: 1px solid rgba(255,255,255,.2); }
.service-facts dl > div:first-child { border-left: 1px solid rgba(255,255,255,.2); }
.service-facts dt { color: var(--service-accent); font: 800 10px/1 var(--font-en); letter-spacing: .15em; }
.service-facts dd { margin: 12px 0 0; font-weight: 800; }
.service-section-head { display: grid; grid-template-columns: .38fr 1fr; gap: 50px; align-items: start; margin-bottom: 64px; }
.service-problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-problem { min-height: 330px; padding: 30px; border: 2px solid var(--ink); border-radius: 28px; background: #fff; box-shadow: 9px 9px 0 var(--service-accent); }
.service-problem span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--service-accent); font: 900 12px/1 var(--font-en); }
.service-problem h3 { margin: 68px 0 16px; font-size: 23px; line-height: 1.4; }
.service-problem p { margin: 0; color: rgba(41,35,31,.68); font-size: 14px; }
.service-scope-grid { display: grid; grid-template-columns: .75fr 1fr; gap: 10vw; }
.service-scope-grid > div > p:last-child { max-width: 500px; margin-top: 30px; }
.service-scope-list { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.service-scope-list li { display: grid; grid-template-columns: 54px 1fr; padding: 24px 0; align-items: center; border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 800; }
.service-scope-list span { font: 800 11px/1 var(--font-en); color: var(--green); }
.service-flow-list { border-top: 1px solid rgba(255,255,255,.25); }
.service-flow-list article { display: grid; grid-template-columns: 70px .75fr 1fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.service-flow-list strong { color: var(--service-accent); font: 900 13px/1 var(--font-en); }
.service-flow-list h3 { margin: 0; font-size: 24px; }
.service-flow-list p { margin: 0; color: rgba(255,255,255,.68); }
.service-faq-grid { display: grid; grid-template-columns: .65fr 1fr; gap: 9vw; }
.service-faq details { border-top: 1px solid var(--ink); }
.service-faq details:last-child { border-bottom: 1px solid var(--ink); }
.service-faq summary { position: relative; padding: 28px 50px 28px 0; cursor: pointer; font-size: 18px; font-weight: 800; list-style: none; }
.service-faq summary::after { content: "+"; position: absolute; right: 8px; font-size: 24px; }
.service-faq details[open] summary::after { content: "−"; }
.service-faq details p { margin: 0; padding: 0 50px 28px 0; color: rgba(41,35,31,.7); }

/* App detail */
.app-page { --app-accent: var(--banana); background: var(--cream); overflow: hidden; }
.app-accent--blue { --app-accent: #9ed9ef; }
.app-accent--green { --app-accent: #b9d59a; }
.app-accent--peach { --app-accent: #ffb58d; }
.app-accent--lavender { --app-accent: #c9b8ed; }
.app-accent--yellow { --app-accent: var(--banana); }
.app-hero { min-height: 850px; padding: 170px 0 100px; background: var(--app-accent); }
.app-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: center; }
.app-hero-copy { position: relative; z-index: 2; }
.app-back { display: inline-flex; margin-bottom: 48px; font: 800 12px/1 var(--font-en); letter-spacing: .14em; border-bottom: 2px solid; padding-bottom: 8px; }
.app-badges { display: flex; gap: 9px; margin-bottom: 22px; }
.app-badges span { padding: 7px 13px; border: 1px solid var(--ink); border-radius: 999px; font: 800 11px/1 var(--font-en); letter-spacing: .08em; text-transform: uppercase; }
.app-tagline { margin: 28px 0 0; font-size: clamp(22px, 2.2vw, 34px); font-weight: 800; line-height: 1.45; }
.app-description { max-width: 600px; margin: 18px 0 0; font-size: 16px; }
.app-store-actions { display: flex; gap: 24px; align-items: center; margin-top: 38px; }
.app-store-button { display: inline-flex; min-width: 212px; min-height: 66px; padding: 11px 22px; align-items: center; gap: 13px; color: #fff; background: var(--ink); border: 2px solid var(--ink); border-radius: 15px; box-shadow: 7px 7px 0 rgba(255,255,255,.75); font: 700 20px/1.05 var(--font-en); transition: transform .2s, box-shadow .2s; }
.app-store-button:hover { transform: translate(-2px,-2px); box-shadow: 10px 10px 0 rgba(255,255,255,.9); }
.app-store-button small { display: block; margin-bottom: 3px; font-size: 10px; font-weight: 500; }
.app-store-icon { display: grid; width: 34px; height: 34px; place-items: center; color: var(--app-accent); font-size: 16px; border: 2px solid currentColor; border-radius: 10px; }
.app-hero-visual { position: relative; display: grid; min-height: 570px; place-items: center; }
.app-hero-visual::before, .app-hero-visual::after { content: ""; position: absolute; border: 2px solid var(--ink); border-radius: 50%; }
.app-hero-visual::before { inset: 4%; }
.app-hero-visual::after { inset: 15%; border-style: dashed; }
.app-icon-card { position: relative; z-index: 1; width: min(430px, 36vw); aspect-ratio: 1; padding: 10%; background: var(--paper); border: 3px solid var(--ink); border-radius: 31% 69% 63% 37% / 39% 35% 65% 61%; box-shadow: 22px 25px 0 var(--ink); transform: rotate(3deg); }
.app-icon-card img { width: 100%; height: 100%; object-fit: contain; transform: rotate(-3deg); }
.app-orbit { position: absolute; z-index: 2; right: -20px; bottom: 24px; max-width: 220px; padding: 16px 20px; color: #fff; background: var(--ink); border-radius: 50%; font: 800 11px/1.5 var(--font-en); letter-spacing: .1em; text-align: center; transform: rotate(-6deg); }
.app-marquee { overflow: hidden; padding: 17px 0; color: #fff; background: var(--ink); transform: rotate(-1.2deg) scale(1.03); }
.app-marquee div { display: flex; justify-content: space-around; min-width: 900px; }
.app-marquee span { display: flex; align-items: center; gap: 42px; font: 900 24px/1 var(--font-en); letter-spacing: .08em; }
.app-marquee span::after { content: "✦"; color: var(--app-accent); }
.app-overview-grid { display: grid; grid-template-columns: .34fr 1fr; gap: 70px; align-items: start; }
.app-overview h2 { max-width: 850px; margin: 0; font-size: clamp(34px, 5vw, 68px); line-height: 1.35; letter-spacing: -.045em; }
.app-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 64px; }
.app-feature-card { min-height: 360px; padding: 32px; border: 2px solid var(--ink); border-radius: 28px; background: var(--paper); box-shadow: 10px 10px 0 var(--app-accent); }
.app-feature-card > span { display: inline-grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--app-accent); font: 900 13px/1 var(--font-en); }
.app-feature-card h3 { margin: 82px 0 16px; font-size: 24px; line-height: 1.4; }
.app-feature-card p { margin: 0; color: rgba(41,35,31,.68); font-size: 14px; }
.app-screens-section .eyebrow, .app-screens-section .section-title { color: #fff; }
.app-screen-grid { display: grid; grid-template-columns: 1fr 1fr .8fr; gap: 6vw; align-items: center; margin-top: 72px; }
.app-phone { margin: 0; }
.app-phone:nth-child(2) { transform: translateY(70px); }
.app-phone > div { padding: 13px; background: #111; border: 2px solid rgba(255,255,255,.35); border-radius: 44px; box-shadow: 0 28px 60px rgba(0,0,0,.35); }
.app-phone img { width: 100%; aspect-ratio: 9 / 19.5; object-fit: cover; object-position: top; border-radius: 32px; }
.app-phone figcaption { margin-top: 16px; color: rgba(255,255,255,.55); font: 700 11px/1 var(--font-en); letter-spacing: .16em; text-align: center; }
.app-screen-message { align-self: end; padding: 34px; border: 1px solid rgba(255,255,255,.3); border-radius: 28px; }
.app-screen-message span { color: var(--app-accent); font: 900 12px/1 var(--font-en); letter-spacing: .16em; }
.app-screen-message p { margin: 20px 0 0; color: rgba(255,255,255,.72); font-size: 14px; }
.app-spec-grid { display: grid; grid-template-columns: .7fr 1fr; gap: 10vw; }
.app-spec-list { margin: 0; border-top: 2px solid var(--ink); }
.app-spec-list div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.app-spec-list dt { font: 800 12px/1.6 var(--font-en); letter-spacing: .08em; text-transform: uppercase; }
.app-spec-list dd { margin: 0; font-weight: 700; }
.app-download-card { display: flex; min-height: 390px; padding: 64px; align-items: center; justify-content: space-between; gap: 50px; background: var(--app-accent); border: 3px solid var(--ink); border-radius: var(--radius-xl); box-shadow: 16px 16px 0 var(--ink); }
.app-next { display: grid; grid-template-columns: .3fr 1fr auto; gap: 36px; align-items: center; padding: 54px max(24px, calc((100vw - 1180px)/2)); color: #fff; background: var(--ink); border-top: 1px solid rgba(255,255,255,.2); }
.app-next span { color: var(--app-accent); font: 800 11px/1 var(--font-en); letter-spacing: .15em; }
.app-next strong { font-size: clamp(28px, 4vw, 54px); line-height: 1; }
.app-next i { font-style: normal; font-size: 44px; transition: transform .2s; }
.app-next:hover i { transform: translateX(10px); }

/* Contact Form 7 */
.contact-page { overflow: hidden; }
.contact-hero { padding: 180px 0 105px; background: var(--banana); }
.contact-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 9vw; align-items: end; }
.contact-hero h1 span { -webkit-text-stroke: 2px var(--ink); color: transparent; }
.contact-hero-lead { margin: 0 0 20px; font-size: clamp(24px, 2.6vw, 38px); font-weight: 900; line-height: 1.5; letter-spacing: -.035em; }
.contact-hero-grid > div:last-child > p:last-child { max-width: 580px; margin-bottom: 0; }
.contact-ticker { overflow: hidden; color: #fff; background: var(--ink); }
.contact-ticker div { display: flex; min-width: 1000px; justify-content: space-around; padding: 17px 0; }
.contact-ticker span { display: flex; gap: 38px; align-items: center; font: 800 13px/1 var(--font-en); letter-spacing: .12em; }
.contact-ticker span::after { content: "✦"; color: var(--banana); }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; align-items: start; }
.contact-guide { position: sticky; top: 130px; }
.contact-guide h2 { margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1.25; letter-spacing: -.045em; }
.contact-guide ul { margin: 42px 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.contact-guide li { padding: 17px 0 17px 30px; border-bottom: 1px solid var(--line); position: relative; font-weight: 700; }
.contact-guide li::before { content: "✓"; position: absolute; left: 2px; color: var(--green); font-weight: 900; }
.contact-response { display: inline-flex; padding: 20px 24px; flex-direction: column; background: var(--banana); border: 2px solid var(--ink); border-radius: 18px; box-shadow: 7px 7px 0 var(--ink); transform: rotate(-2deg); }
.contact-response strong { font-size: 20px; }
.contact-response span { font-size: 13px; }
.contact-form-card { padding: 46px; background: var(--cream); border: 2px solid var(--ink); border-radius: 32px; box-shadow: 13px 13px 0 var(--banana); }
.contact-form-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 38px; padding-bottom: 20px; border-bottom: 1px solid var(--ink); }
.contact-form-head > span { font: 900 12px/1 var(--font-en); letter-spacing: .15em; }
.contact-form-head p { margin: 0; font-size: 13px; }
.contact-form-head b, .required { display: inline-block; margin-right: 5px; padding: 4px 7px; color: #fff; background: var(--ink); border-radius: 5px; font-size: 10px; }
.modern-contact-form .form-group { margin-bottom: 25px; }
.modern-contact-form label { display: block; font-weight: 800; }
.modern-contact-form input, .modern-contact-form textarea { margin-top: 9px; }
.contact-privacy { margin: 25px 0 0; color: rgba(41,35,31,.6); font-size: 12px; }
.contact-form-missing { padding: 28px; border: 1px dashed var(--ink); border-radius: 14px; }
.contact-form-missing p { margin: 0 0 8px; }
.contact-after { background: var(--green); color: #fff; }
.contact-after-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.contact-after-grid article { min-height: 290px; padding: 28px; border: 1px solid rgba(255,255,255,.35); border-radius: 24px; }
.contact-after-grid span { color: var(--banana); font: 900 12px/1 var(--font-en); }
.contact-after-grid h3 { margin: 70px 0 14px; font-size: 23px; }
.contact-after-grid p { margin: 0; color: rgba(255,255,255,.75); font-size: 14px; }
.wpcf7-form p { margin: 0 0 26px; }
.wpcf7-form label { display: block; font-weight: 800; }
.wpcf7-form-control-wrap { display: block; margin-top: 9px; }
.wpcf7 input:not([type="submit"]), .wpcf7 textarea, .wpcf7 select { width: 100%; padding: 17px 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.wpcf7 textarea { min-height: 180px; resize: vertical; }
.wpcf7-submit { min-height: 58px; padding: 0 34px; border: 2px solid var(--ink); border-radius: 999px; background: var(--banana); font-weight: 800; cursor: pointer; }

/* Privacy policy */
.policy-page { overflow: hidden; }
.policy-hero { padding: 180px 0 105px; color: #fff; background: var(--ink); }
.policy-hero h1 span { color: var(--banana); }
.policy-hero-meta { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; margin-top: 55px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.28); }
.policy-hero-meta p { max-width: 710px; margin: 0; color: rgba(255,255,255,.7); }
.policy-hero-meta time { color: var(--banana); font: 700 12px/1.5 var(--font-en); letter-spacing: .08em; }
.policy-layout { display: grid; grid-template-columns: 280px 1fr; gap: 9vw; align-items: start; }
.policy-toc { position: sticky; top: 130px; padding: 26px; background: var(--banana); border: 2px solid var(--ink); border-radius: 24px; box-shadow: 8px 8px 0 var(--ink); }
.policy-toc nav { display: grid; }
.policy-toc nav a { padding: 12px 0; border-bottom: 1px solid rgba(41,35,31,.22); font-size: 13px; font-weight: 800; }
.policy-toc nav a::after { content: "↓"; float: right; }
.policy-content { max-width: 780px; }
.policy-content > section { scroll-margin-top: 130px; padding: 0 0 70px; margin: 0 0 70px; border-bottom: 1px solid var(--line); }
.policy-content > section:last-child { margin-bottom: 0; }
.policy-content > section > span { display: inline-grid; width: 46px; height: 46px; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; font: 900 11px/1 var(--font-en); }
.policy-content h2 { margin: 24px 0; font-size: clamp(28px, 3vw, 42px); line-height: 1.35; letter-spacing: -.035em; }
.policy-content p { margin: 0 0 20px; color: rgba(41,35,31,.76); }
.policy-content ul { margin: 24px 0; padding: 22px 26px 22px 50px; background: var(--cream); border-radius: 18px; }
.policy-content li { margin: 8px 0; }
.policy-contact { margin-top: 34px; padding: 30px; background: var(--banana); border: 2px solid var(--ink); border-radius: 24px; }
.policy-contact p { color: var(--ink); }

/* Footer */
.site-footer { padding: 72px 0 28px; background: var(--ink); color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; padding-bottom: 70px; }
.footer-brand { font: 800 clamp(34px,5vw,70px)/.95 var(--font-en); letter-spacing: -.06em; }
.footer-brand span { color: var(--banana); }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 28px; align-content: start; }
.footer-nav a { padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.22); font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); font: 500 12px/1.5 var(--font-en); }

/* Motion */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (min-width: 681px) {
  .hero-title { font-size: 72px; }
  .intro-sticky .section-title { font-size: 48px; }
}

@media (max-width: 960px) {
  :root { --container: min(100% - 32px, 740px); --radius-xl: 32px; }
  .section { padding: 84px 0; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; top: 92px; right: 18px; left: 18px; display: grid; gap: 0; padding: 22px; border-radius: 24px; background: var(--paper); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s; }
  .menu-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 16px 6px; border-bottom: 1px solid var(--line); font-size: 17px; }
  .header-cta { margin-top: 10px; text-align: center; border-bottom: 0 !important; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 20px; }
  .hero-title .line:nth-child(2) { margin-left: 0; }
  .hero-visual { min-height: 500px; }
  .hero-logo-disc { width: min(430px, 78vw); }
  .intro-grid, .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .intro-sticky { position: static; }
  .service-card { min-height: 520px; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list li { grid-template-columns: 60px 1fr; }
  .process-list p { grid-column: 2; }
  .works-hero-grid, .works-philosophy-grid { grid-template-columns: 1fr; }
  .works-hero-visual { min-height: 480px; }
  .works-hero-image { width: min(520px, 72vw); }
  .works-intro-grid { grid-template-columns: 1fr; gap: 22px; }
  .works-toolbar { display: block; }
  .work-filters { justify-content: flex-start; margin-top: 28px; }
  .service-detail-hero-grid, .service-scope-grid { grid-template-columns: 1fr; }
  .service-detail-visual { min-height: 480px; }
  .service-device { width: min(430px, 62vw); }
  .service-detail--app .service-device { width: min(270px, 38vw); }
  .service-problem-grid { grid-template-columns: 1fr; }
  .service-problem { min-height: 250px; }
  .service-problem h3 { margin-top: 42px; }
  .service-faq-grid { grid-template-columns: 1fr; }
  .contact-hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .contact-guide { position: static; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; }
  .policy-toc nav { grid-template-columns: repeat(2,1fr); gap: 0 20px; }
  .app-hero-grid { grid-template-columns: 1fr; }
  .app-hero-visual { min-height: 500px; }
  .app-icon-card { width: min(430px, 62vw); }
  .app-feature-grid { grid-template-columns: 1fr; }
  .app-feature-card { min-height: 280px; }
  .app-feature-card h3 { margin-top: 50px; }
  .app-screen-grid { gap: 28px; }
  .app-spec-grid { gap: 50px; }
}

@media (max-width: 680px) {
  :root { --container: calc(100vw - 28px); }
  body { font-size: 15px; }
  .site-header { top: 10px; width: calc(100vw - 20px); }
  .header-inner { min-height: 66px; border-radius: 18px; }
  .site-brand img { width: 42px; height: 42px; }
  .hero { padding: 112px 0 58px; }
  .hero-copy { order: 2; }
  .hero-visual { min-height: 390px; order: 1; }
  .hero-logo-disc { width: min(310px, 80vw); padding: 24px; box-shadow: 16px 16px 0 var(--ink); }
  .hero-note { right: 0; bottom: 12px; width: 170px; padding: 14px; }
  .hero-title { font-size: clamp(44px, 13.5vw, 60px); }
  .hero-title small { font-size: 15px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .section-head { display: block; }
  .section-head .text-link { margin-top: 20px; }
  .service-grid, .archive-grid, .note-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 460px; padding: 28px; }
  .service-card h3 { margin-top: 58px; }
  .service-card .text-link { left: 28px; bottom: 28px; }
  .work-grid { display: block; }
  .work-card, .work-card:nth-child(2n) { margin: 0 0 58px; }
  .work-meta { display: block; }
  .work-tag { display: inline-block; margin-top: 14px; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-card { min-height: 320px; }
  .reason-card h3 { margin-top: 48px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 18px; }
  .contact-panel { border-radius: 28px; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom p { margin: 8px 0; }
  .works-hero { padding: 126px 0 76px; }
  .works-hero-grid { gap: 28px; }
  .works-hero-copy { order: 2; }
  .works-hero-visual { order: 1; min-height: 330px; }
  .works-hero-image { width: min(310px, 78vw); border-radius: 42% 58% 54% 46% / 48% 42% 58% 52%; box-shadow: 14px 16px 0 var(--ink); }
  .works-count { right: 0; bottom: 0; padding: 13px 15px; }
  .works-count strong { font-size: 44px; }
  .works-outline { -webkit-text-stroke-width: 1px; }
  .works-intro { padding-top: 64px; }
  .works-intro-grid { padding-bottom: 64px; }
  .works-archive { padding-top: 62px; }
  .work-filters { flex-wrap: nowrap; overflow-x: auto; margin-right: -14px; padding: 0 14px 10px 0; justify-content: flex-start; }
  .work-filter { flex: none; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 56px; }
  .portfolio-card--featured { grid-column: auto; }
  .portfolio-card--featured .portfolio-media, .portfolio-media { aspect-ratio: 1 / 1; }
  .portfolio-card--featured .portfolio-media img, .portfolio-media img { padding: 9%; }
  .portfolio-card--featured .portfolio-copy h3 { font-size: clamp(30px, 10vw, 44px); }
  .portfolio-arrow { width: 50px; height: 50px; }
  .works-philosophy-grid { gap: 54px; }
  .works-principles article { grid-template-columns: 36px 1fr; gap: 18px; }
  .works-principles p { grid-column: 2; }
  .service-detail-hero { min-height: auto; padding: 116px 0 70px; }
  .service-detail-hero-grid { gap: 40px; }
  .service-detail-lead { font-size: 24px; }
  .service-detail-visual { min-height: 360px; }
  .service-device { width: min(280px, 72vw); box-shadow: 13px 15px 0 var(--ink); }
  .service-detail--app .service-device { width: min(190px, 49vw); }
  .service-detail-visual p { right: 0; font-size: 9px; }
  .service-facts dl { grid-template-columns: 1fr; }
  .service-facts dl > div, .service-facts dl > div:first-child { padding: 22px 4px; border-right: 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .service-section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 42px; }
  .service-problem { min-height: 280px; padding: 26px; box-shadow: 7px 7px 0 var(--service-accent); }
  .service-scope-grid { gap: 44px; }
  .service-scope-list li { grid-template-columns: 42px 1fr; font-size: 17px; }
  .service-flow-list article { grid-template-columns: 42px 1fr; gap: 18px; }
  .service-flow-list p { grid-column: 2; }
  .service-faq-grid { gap: 42px; }
  .service-faq summary { font-size: 16px; }
  .contact-hero { padding: 120px 0 70px; }
  .contact-hero-grid { gap: 34px; }
  .contact-hero h1 span { -webkit-text-stroke-width: 1px; }
  .contact-hero-lead { font-size: 23px; }
  .contact-form-card { padding: 28px 20px; border-radius: 24px; box-shadow: 8px 8px 0 var(--banana); }
  .contact-form-head { display: block; }
  .contact-form-head p { margin-top: 12px; }
  .contact-after-grid { grid-template-columns: 1fr; }
  .contact-after-grid article { min-height: 250px; }
  .policy-hero { padding: 120px 0 70px; }
  .policy-hero-meta { grid-template-columns: 1fr; gap: 18px; margin-top: 35px; }
  .policy-toc nav { grid-template-columns: 1fr; }
  .policy-content > section { padding-bottom: 48px; margin-bottom: 48px; }
  .policy-contact { padding: 24px 20px; }
  .app-hero { min-height: auto; padding: 116px 0 76px; }
  .app-hero-grid { gap: 50px; }
  .app-back { margin-bottom: 32px; }
  .app-badges { flex-wrap: wrap; }
  .app-tagline { font-size: 22px; }
  .app-store-actions { align-items: flex-start; flex-direction: column; }
  .app-store-button { width: 100%; justify-content: center; }
  .app-hero-visual { min-height: 360px; }
  .app-icon-card { width: min(280px, 73vw); box-shadow: 14px 16px 0 var(--ink); }
  .app-orbit { right: 0; bottom: 0; max-width: 165px; padding: 12px; font-size: 9px; }
  .app-marquee span { font-size: 18px; }
  .app-overview-grid { grid-template-columns: 1fr; gap: 12px; }
  .app-overview h2 { font-size: 34px; }
  .app-feature-grid { margin-top: 42px; }
  .app-feature-card { min-height: 300px; padding: 26px; box-shadow: 7px 7px 0 var(--app-accent); }
  .app-screen-grid { grid-template-columns: 1fr; margin-top: 48px; padding: 0 10vw; }
  .app-phone:nth-child(2) { transform: none; }
  .app-screen-message { margin-top: 18px; }
  .app-spec-grid { grid-template-columns: 1fr; }
  .app-spec-list div { grid-template-columns: 105px 1fr; gap: 14px; }
  .app-download-card { min-height: 440px; padding: 34px 26px; flex-direction: column; align-items: stretch; justify-content: center; box-shadow: 10px 10px 0 var(--ink); }
  .app-next { grid-template-columns: 1fr auto; gap: 16px; padding: 40px 20px; }
  .app-next span { grid-column: 1 / -1; }
}
