:root {
  --ink: #083f38;
  --ink-deep: #052f2b;
  --orange: #eb6b32;
  --sand: #f5f2ec;
  --cream: #fcfaf6;
  --line: #d7e0d9;
  --muted: #527069;
  --white: #fff;
  --shadow: 0 18px 50px rgba(8, 63, 56, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

button,
input { font: inherit; }

button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: .7rem 1rem;
  border-radius: .6rem;
}

.skip-link:focus { left: 1rem; }

.shell {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 250, 246, .96);
  border-bottom: 1px solid rgba(8, 63, 56, .1);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: .6rem;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: .025em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.menu-button {
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: .7rem;
  background: var(--white);
  color: var(--ink);
  padding: .5rem .7rem;
  font-weight: 750;
}

.main-nav {
  display: none;
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  padding: .8rem 16px 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.main-nav.is-open { display: grid; gap: .15rem; }

.main-nav a {
  padding: .65rem .4rem;
  color: var(--ink);
  font-weight: 730;
  text-decoration: none;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: .8rem;
  margin-left: auto;
}

.text-link {
  color: var(--ink);
  font-weight: 740;
  text-decoration: none;
}

.button {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: 1px solid var(--ink);
  border-radius: .7rem;
  background: var(--ink);
  color: var(--white);
  padding: .7rem 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: var(--ink-deep);
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: #e9f0eb;
}

.button-small {
  min-height: 39px;
  padding: .55rem .75rem;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(235, 107, 50, .24), transparent 27rem),
    radial-gradient(circle at 15% 100%, rgba(32, 129, 112, .2), transparent 26rem),
    var(--ink);
  color: var(--white);
}

.hero-grid {
  display: grid;
  gap: 2.3rem;
  padding: 4rem 0 3.3rem;
}

.kicker {
  margin: 0 0 .65rem;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.3;
}

.hero h1,
.section-heading h2,
.transfer-grid h2,
.confidence-grid h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.45rem, 10vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.052em;
}

.hero h1 em { color: #ffc468; font-style: normal; }

.hero-lead {
  max-width: 60ch;
  margin: 1.4rem 0 0;
  color: #d5e5df;
  font-size: 1.08rem;
}

.hero-actions {
  display: grid;
  gap: .75rem;
  margin-top: 1.7rem;
}

.hero .button-outline {
  border-color: #a8c5bb;
  color: var(--white);
}

.hero .button-outline:hover { color: var(--ink); }

.hero-points {
  display: grid;
  gap: .55rem;
  margin: 1.7rem 0 0;
  padding: 0;
  color: #d5e5df;
  list-style: none;
  font-size: .92rem;
}

.hero-points li::before {
  content: "✓";
  margin-right: .55rem;
  color: #ffc468;
  font-weight: 900;
}

.tracking-panel {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, .1);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  backdrop-filter: blur(12px);
}

.tracking-panel h2 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.1;
}

.tracking-panel > p:not(.kicker):not(.panel-note) {
  color: #d5e5df;
  font-size: .95rem;
}

.tracking-panel label {
  display: block;
  margin: 1.1rem 0 .45rem;
  color: #dcebe6;
  font-size: .9rem;
  font-weight: 780;
}

.tracking-fields {
  display: grid;
  gap: .65rem;
}

.tracking-fields input {
  min-width: 0;
  width: 100%;
  border: 1px solid #c7d8d1;
  border-radius: .7rem;
  background: var(--white);
  color: var(--ink);
  padding: .8rem .85rem;
}

.form-message {
  min-height: 1.4rem;
  margin: .6rem 0 0;
  color: #ffd6c6;
  font-size: .88rem;
}

.panel-note {
  margin: 1rem 0 0;
  color: #c8ddd6;
  font-size: .84rem;
}

.section { padding: 4.2rem 0; }

.service-section { background: var(--sand); }

.section-heading { max-width: 690px; }

.section-heading h2,
.transfer-grid h2,
.confidence-grid h2 {
  max-width: 19ch;
  font-size: clamp(2rem, 7vw, 3.8rem);
}

.section-heading > p:not(.kicker),
.section-copy {
  max-width: 63ch;
  color: var(--muted);
}

.service-grid,
.category-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.service-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--white);
  padding: 1.35rem;
}

.service-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8efe9;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 850;
}

.service-card h3 { margin: 1rem 0 .45rem; font-size: 1.35rem; }
.service-card p { color: var(--muted); }
.service-card a { color: var(--ink); font-weight: 800; text-decoration-thickness: 1px; }

.sugu-section { background: var(--cream); }

.split-heading {
  display: grid;
  gap: 1rem;
  align-items: end;
}

.category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.category-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: .95rem;
  background: var(--white);
  padding: 1rem;
  text-decoration: none;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.category-card span {
  display: block;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.category-card strong {
  display: block;
  margin-top: .35rem;
  font-size: .98rem;
  line-height: 1.2;
}

.category-card small {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
}

.loading-note,
.empty-note { color: var(--muted); }

.shops-strip {
  display: grid;
  gap: .75rem;
  margin-top: 1.2rem;
}

.shop-note {
  border-left: 3px solid var(--orange);
  padding: .5rem 0 .5rem .85rem;
  color: var(--muted);
  font-size: .92rem;
}

.shop-note strong { color: var(--ink); }

.transfer-section {
  background: var(--ink);
  color: var(--white);
}

.transfer-grid { display: grid; gap: 1.5rem; }

.transfer-grid > div > p:not(.kicker) { color: #d2e2dc; }

.transfer-notice {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, .07);
  padding: 1.3rem;
}

.transfer-notice h3 { margin-top: 0; font-size: 1.2rem; }
.transfer-notice ul { margin: 0 0 1.2rem; padding-left: 1.2rem; color: #d2e2dc; }
.transfer-notice li + li { margin-top: .45rem; }
.transfer-notice .button-outline { border-color: #b7d2c8; color: var(--white); }

.confidence-section { background: #e7eee9; }

.confidence-grid {
  display: grid;
  gap: 1.3rem;
}

.confidence-grid p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.site-footer {
  background: var(--ink-deep);
  color: #d5e5df;
  padding: 3rem 0 1.3rem;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.footer-grid .brand { color: var(--white); }

.footer-grid h2 {
  margin: 0 0 .55rem;
  color: #ffc468;
  font-size: .75rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: .35rem 0;
  color: #d5e5df;
}

.footer-grid p { max-width: 32ch; margin-bottom: 0; }

.footer-legal {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #a8c4ba;
  font-size: .84rem;
}

@media (min-width: 720px) {
  .hero-actions { display: flex; flex-wrap: wrap; }
  .tracking-fields { grid-template-columns: minmax(0, 1fr) auto; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .transfer-grid,
  .confidence-grid { grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: start; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
}

@media (min-width: 980px) {
  .menu-button { display: none; }
  .main-nav {
    display: flex;
    position: static;
    gap: .1rem;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .main-nav a { padding: .5rem .6rem; font-size: .9rem; }
  .nav-actions { display: flex; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, .75fr);
    align-items: center;
    min-height: 650px;
    padding: 5rem 0;
  }
  .hero-copy { padding-right: 1rem; }
  .category-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .split-heading { grid-template-columns: 1fr auto; }
}
