@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;700;800;900&display=swap');

:root {
  --ink: #303b35;
  --muted: #58655f;
  --cream: #fff8e9;
  --paper: #fffcf4;
  --blue: #156ca6;
  --blue-dark: #0e507e;
  --green: #80b638;
  --pink: #e77c90;
  --yellow: #f8c747;
  --font: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.wrap { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.sr-only, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 9px;
  color: #fff;
  background: var(--blue-dark);
}
:focus-visible { outline: 3px solid #be4b69; outline-offset: 4px; }

/* A warm frame around the tactile illustration. */
.site-header {
  position: relative;
  z-index: 20;
  background: #fffcf4;
  box-shadow: 0 3px 0 #e6dcc4;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 92px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-art {
  display: grid;
  place-items: center;
  flex: none;
  width: 61px;
  height: 61px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 3px 0 #d8cfb9, 0 7px 12px #4b55221c;
  transform: rotate(-4deg);
}
.brand-art img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { display: grid; gap: 0; line-height: 1.15; white-space: nowrap; }
.brand-name small { color: #496c5a; font-size: 10px; font-weight: 800; }
.brand-name strong { color: var(--blue-dark); font-size: 29px; font-weight: 900; letter-spacing: .06em; }
.site-nav { display: flex; align-items: center; gap: clamp(12px, 1.8vw, 27px); }
.site-nav > a { font-size: 12px; font-weight: 800; white-space: nowrap; transition: color .15s, transform .15s; }
.site-nav > a:hover { color: var(--blue); transform: translateY(-2px); }
.site-nav .nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 19px;
  border: 2px solid #0e598c;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 4px 0 #0e598c;
}
.site-nav .nav-contact:hover { color: #fff; }
.menu-toggle { display: none; }

.hero { padding: 22px 22px 0; background: linear-gradient(#c3edfa 0, #dff4e0 80%, #fffcf4 100%); }
.hero-scene {
  position: relative;
  max-width: 1500px;
  min-height: clamp(560px, 49vw, 680px);
  margin-inline: auto;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 39px;
  background: #82c8e8;
  box-shadow: 0 8px 0 #b4d7a7, 0 24px 35px #426c6929;
}
.hero-scene > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 49%);
  margin: clamp(54px, 6vw, 94px) 0 60px clamp(25px, 5vw, 77px);
  padding: clamp(27px, 3.2vw, 45px);
  border: 7px solid #fff;
  border-radius: 35px 44px 31px 43px;
  background: rgba(255, 250, 235, .96);
  box-shadow: 0 9px 0 #e2cda3, 0 18px 26px #314d2d3b;
  transform: rotate(-1.3deg);
}
.hero-panel > * { transform: rotate(1.3deg); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 8px 15px;
  border-radius: 999px;
  color: #fff;
  background: #2e8bba;
  box-shadow: 0 4px 0 #1e668e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}
.hero-eyebrow span { color: #ffda68; font-size: 20px; line-height: 1; }
.hero h1 {
  margin: 0;
  color: #554024;
  font-size: clamp(31px, 3.7vw, 52px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.42;
  text-shadow: 1px 2px 0 #fff;
}
.hero h1 span { font-size: .68em; letter-spacing: .02em; }
.hero h1 em {
  color: #1579bb;
  font-style: normal;
  text-shadow: 1px 2px 0 #d0eafa, 2px 3px 0 #8bbbd3;
  white-space: nowrap;
}
.hero-lead { max-width: 430px; margin: 23px 0 0; color: #555645; font-size: 14px; font-weight: 700; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.clay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 47px;
  padding: 10px 18px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  transition: transform .16s, box-shadow .16s;
}
.clay-button:hover { transform: translateY(-3px); }
.clay-button span { font-size: 18px; line-height: 1; }
.button-blue { border-color: #0f5a8a; color: #fff; background: var(--blue); box-shadow: 0 5px 0 #0f5a8a; }
.button-blue:hover { box-shadow: 0 8px 0 #0f5a8a; }
.button-white { border-color: #d6be92; background: #fff; box-shadow: 0 5px 0 #d6be92; }
.button-white:hover { box-shadow: 0 8px 0 #d6be92; }
.button-yellow { border-color: #be8324; background: #ffda64; box-shadow: 0 5px 0 #be8324; }
.button-yellow:hover { box-shadow: 0 8px 0 #be8324; }
.hero-caption {
  position: relative;
  width: fit-content;
  max-width: calc(100% - 30px);
  margin: -15px auto 0;
  padding: 13px 27px;
  border: 4px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #126da7;
  box-shadow: 0 5px 0 #0c4c75, 0 11px 18px #335a5455;
  font-size: clamp(13px, 1.65vw, 21px);
  font-weight: 900;
  letter-spacing: .07em;
  text-align: center;
}
.hero-caption span { color: #ffdc67; }

.quick-section { padding-block: 95px 110px; }
.section-heading { margin-bottom: 33px; text-align: center; }
.section-kicker { margin: 0 0 9px; color: #247bae; font-size: 11px; font-weight: 900; letter-spacing: .19em; }
.section-heading h2 { margin: 0; color: #3c4734; font-size: clamp(25px, 3.1vw, 40px); font-weight: 900; letter-spacing: -.035em; line-height: 1.35; }
.section-heading > p:last-child { margin: 11px 0 0; color: #5c645a; font-size: 13px; font-weight: 700; }
.quick-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 15px; }
.quick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 209px;
  padding: 26px 13px 18px;
  border: 4px solid #fff;
  border-radius: 26px;
  background: #fffaf0;
  box-shadow: 0 0 0 2px var(--edge), 0 8px 0 var(--edge), 0 16px 18px #56492618;
  text-align: center;
  transition: transform .18s, box-shadow .18s;
}
.quick-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 0 0 2px var(--edge), 0 14px 0 var(--edge), 0 22px 22px #56492624; }
.quick-green { --edge: #75a346; --blob: #9aca65; }
.quick-pink { --edge: #cc7e8c; --blob: #f4aebd; }
.quick-yellow { --edge: #dba947; --blob: #f8d470; }
.quick-blue { --edge: #78a9c8; --blob: #9bd2eb; }
.quick-purple { --edge: #a197bb; --blob: #c0b4dc; }
.quick-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 15px;
  border: 3px solid #ffffffa6;
  border-radius: 22px 24px 20px 26px;
  background: var(--blob);
  box-shadow: 0 5px 0 var(--edge), inset 0 3px 8px #ffffffa6;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 1px #0002;
  transform: rotate(-6deg);
}
.quick-number { color: var(--edge); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.quick-card strong { margin-top: 2px; font-size: 15px; font-weight: 900; line-height: 1.4; }
.quick-arrow { position: absolute; right: 15px; bottom: 9px; color: var(--edge); font-size: 18px; font-weight: 900; }

.values-section {
  padding: 88px 0 95px;
  background:
    radial-gradient(circle at 8% 18%, #ffe6a9 0 9px, transparent 10px),
    radial-gradient(circle at 91% 75%, #b0dced 0 9px, transparent 10px),
    #f0f7e5;
  border-block: 6px solid #e0eccb;
}
.values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 23px; }
.value-card {
  position: relative;
  min-height: 255px;
  padding: 30px 30px 26px;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 31px;
  background: var(--card);
  box-shadow: 0 6px 0 var(--edge), 0 15px 18px #33532416;
}
.value-green { --card: #dcefb8; --edge: #a4c579; --symbol: #7daa3c; }
.value-pink { --card: #ffe0de; --edge: #e7a6a7; --symbol: #e17c86; }
.value-blue { --card: #d8eef9; --edge: #96c5dc; --symbol: #5fa5ca; }
.value-symbol { position: absolute; top: 4px; right: 20px; color: var(--symbol); font-size: 104px; font-weight: 900; line-height: 1; opacity: .18; transform: rotate(-16deg); }
.value-number { position: relative; z-index: 1; display: inline-block; padding: 5px 11px; border-radius: 999px; color: #fff; background: var(--symbol); font-size: 11px; font-weight: 900; }
.value-card h3 { position: relative; z-index: 1; margin: 19px 0 13px; font-size: clamp(22px, 2.3vw, 30px); font-weight: 900; line-height: 1.45; }
.value-card p { position: relative; z-index: 1; max-width: 275px; margin: 0; color: #4a554b; font-size: 12px; font-weight: 700; line-height: 1.85; }
.text-link { display: table; margin: 38px auto 0; padding-bottom: 6px; border-bottom: 3px solid var(--blue); color: var(--blue-dark); font-size: 14px; font-weight: 900; }
.text-link span { margin-left: 10px; }

.place-section { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(35px, 6vw, 80px); padding-block: 112px 118px; }
.place-copy h2 { margin: 0 0 23px; font-size: clamp(27px, 3.4vw, 43px); font-weight: 900; letter-spacing: -.04em; line-height: 1.45; }
.place-copy > p:not(.section-kicker) { max-width: 390px; margin: 0 0 28px; color: var(--muted); font-size: 14px; font-weight: 700; line-height: 1.9; }
.place-photo-wrap { position: relative; transform: none; }
.place-photo-wrap img { width: 100%; height: clamp(310px, 33vw, 440px); border: 10px solid #fff; border-radius: 28px; object-fit: cover; box-shadow: 0 8px 0 #f0c369, 0 20px 35px #43564c25; }
.photo-sticker { position: absolute; z-index: 1; top: -20px; left: -25px; display: grid; place-items: center; width: 90px; height: 90px; border: 4px dashed #e1a536; border-radius: 50%; color: #6b4b1c; background: #ffdf73; box-shadow: 0 5px 0 #d8ad45; font-size: 13px; font-weight: 900; transform: rotate(-14deg); }

.contact-section { overflow: hidden; border-top: 6px solid #c9e4a2; background: linear-gradient(105deg, #d7edaf, #b7de8d 55%, #e2f3c5); }
.contact-inner { display: flex; align-items: center; gap: 25px; min-height: 218px; }
.contact-mascot { align-self: end; width: 165px; max-height: 208px; object-fit: contain; object-position: bottom; filter: drop-shadow(0 7px 4px #64883a44); }
.contact-copy { flex: 1; padding-block: 28px; }
.contact-copy .section-kicker { color: #397350; }
.contact-copy h2 { margin: 0 0 7px; font-size: clamp(22px, 2.5vw, 32px); font-weight: 900; line-height: 1.4; }
.contact-copy > p:last-child { margin: 0; color: #4e6043; font-size: 12px; font-weight: 700; }
.contact-inner > .clay-button { flex: none; }

.site-footer { padding: 46px 0 22px; background: #fff8e9; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; }
.footer-name { color: var(--blue-dark); font-size: 25px; font-weight: 900; }
.footer-inner p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.footer-inner nav { display: flex; flex-wrap: wrap; align-content: start; justify-content: end; gap: 10px 22px; max-width: 530px; padding-top: 7px; }
.footer-inner nav a { font-size: 12px; font-weight: 800; }
.footer-inner nav a:hover, .footer-inner p a:hover { color: var(--blue); text-decoration: underline; }
.copyright { width: min(1200px, calc(100% - 48px)); margin: 28px auto 0; padding-top: 15px; border-top: 1px solid #e9dec6; color: #7a8075; font-size: 11px; }

@media (max-width: 1050px) {
  .brand-name small { font-size: 9px; }
  .brand-name strong { font-size: 25px; }
  .site-nav { gap: 11px; }
  .site-nav > a { font-size: 10px; }
  .site-nav .nav-contact { padding-inline: 13px; }
  .hero-panel { width: min(550px, 55%); }
  .hero h1 { font-size: clamp(30px, 4vw, 44px); }
  .quick-grid { gap: 11px; }
  .quick-card strong { font-size: 13px; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 30px, 600px); }
  .header-inner { min-height: 76px; }
  .brand-art { width: 51px; height: 51px; border-radius: 14px; }
  .brand-name small { font-size: 8px; }
  .brand-name strong { font-size: 23px; }
  .menu-toggle { display: grid; gap: 5px; align-content: center; flex: none; width: 47px; height: 43px; padding: 8px 10px; border: 2px solid #0f5a8a; border-radius: 13px; background: #fff; box-shadow: 0 4px 0 #0f5a8a; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { height: 3px; border-radius: 5px; background: var(--blue-dark); }
  .site-nav { position: absolute; top: calc(100% + 2px); right: 15px; left: 15px; display: grid; gap: 0; padding: 10px; border: 3px solid #fff; border-radius: 20px; background: #fffaf0; box-shadow: 0 5px 0 #c6d9c1, 0 12px 25px #3548302b; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .16s, visibility .16s, transform .16s; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a { padding: 11px 14px; font-size: 13px; }
  .site-nav .nav-contact { justify-content: center; margin-top: 5px; }
  .hero { padding: 12px 12px 0; }
  .hero-scene { display: flex; flex-direction: column; min-height: 0; overflow: visible; border-width: 5px; border-radius: 28px; background: #dff2df; }
  .hero-scene > img { position: relative; height: 350px; border-radius: 23px 23px 0 0; object-position: 68% center; }
  .hero-panel { width: min(100% - 24px, 570px); margin: -24px auto 26px; padding: 27px; border-width: 5px; border-radius: 28px; transform: rotate(-.8deg); }
  .hero-panel > * { transform: rotate(.8deg); }
  .hero h1 { font-size: clamp(30px, 6.4vw, 43px); }
  .hero-caption { margin-top: -14px; padding: 10px 17px; }
  .quick-section { padding-block: 75px 82px; }
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
  .quick-card { min-height: 170px; }
  .quick-card:last-child { grid-column: span 2; min-height: 125px; display: grid; grid-template-columns: 70px 1fr auto; align-items: center; column-gap: 15px; padding-inline: 23px; text-align: left; }
  .quick-card:last-child .quick-icon { grid-row: span 2; margin: 0; }
  .quick-card:last-child .quick-number { align-self: end; }
  .quick-card:last-child strong { align-self: start; }
  .quick-card:last-child strong br { display: none; }
  .quick-card:last-child .quick-arrow { position: static; grid-column: 3; grid-row: 1 / span 2; }
  .values-grid { grid-template-columns: 1fr; gap: 17px; }
  .value-card { min-height: 0; padding: 23px 27px; }
  .value-card h3 br { display: none; }
  .value-card h3 { margin-block: 12px; font-size: 25px; }
  .value-card p { max-width: none; }
  .place-section { grid-template-columns: 1fr; gap: 40px; padding-block: 85px; }
  .place-photo-wrap { margin-inline: 15px; }
  .contact-inner { display: grid; grid-template-columns: 100px 1fr; gap: 10px 15px; padding-top: 25px; }
  .contact-mascot { grid-row: 1 / span 2; width: 100px; }
  .contact-copy { padding: 0; }
  .contact-inner > .clay-button { justify-self: start; margin-bottom: 28px; }
  .footer-inner { display: grid; }
  .footer-inner nav { justify-content: start; }
  .copyright { width: min(100% - 30px, 600px); }
}

@media (max-width: 430px) {
  .brand-name small { max-width: 210px; white-space: normal; line-height: 1.25; }
  .hero-scene > img { height: 275px; object-position: 68% center; }
  .hero-panel { padding: 23px 20px 27px; }
  .hero-eyebrow { margin-bottom: 17px; font-size: 11px; }
  .hero h1 { font-size: clamp(27px, 7.4vw, 33px); }
  .hero-lead { margin-top: 15px; font-size: 12px; }
  .hero-actions { gap: 10px; }
  .clay-button { font-size: 11px; }
  .hero-caption { font-size: 11px; letter-spacing: .01em; }
  .quick-card { min-height: 162px; padding: 19px 7px 15px; }
  .quick-icon { width: 56px; height: 56px; margin-bottom: 10px; font-size: 27px; }
  .quick-card strong { font-size: 12px; }
  .quick-card:last-child { padding-inline: 16px; grid-template-columns: 60px 1fr auto; }
  .contact-inner { grid-template-columns: 78px 1fr; }
  .contact-mascot { width: 78px; }
  .contact-copy h2 { font-size: 19px; }
  .contact-copy > p:last-child { font-size: 11px; }
  .contact-inner > .clay-button { padding-inline: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
