@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  /* Brand palette sampled from the official Honestwell logo
     (orange + pink intertwined hearts on a warm off-white ground). */
  --teal-dark: #2f2419;   /* headings / dark surfaces (was teal, now warm charcoal) */
  --teal: #d9642f;        /* primary accent (logo orange) */
  --teal-light: #f4ece1;  /* warm section background */
  --pink: #dd5f78;        /* secondary accent (logo pink) */
  --pink-soft: #f0aebb;
  --bg: #faf7f1;
  --text: #3d342b;
  --text-soft: #7a6d5e;
  --border: #e8ddd0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(47, 36, 25, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'BIZ UDPGothic', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

/* ===== High contrast mode (accessibility toggle) ===== */
html.high-contrast {
  --teal-dark: #ffffff;
  --teal: #ffe600;
  --teal-light: #000000;
  --pink: #ffe600;
  --pink-soft: #ffe600;
  --bg: #000000;
  --text: #ffffff;
  --text-soft: #ffffff;
  --border: #ffffff;
  --shadow: none;
}

html.high-contrast body { background: #000; color: #fff; }
html.high-contrast .card,
html.high-contrast .link-card,
html.high-contrast .banner-square,
html.high-contrast .form-panel,
html.high-contrast table.info-table,
html.high-contrast .overview-panel,
html.high-contrast .business-detail,
html.high-contrast .route {
  background: #000 !important;
  border: 2px solid #ffe600 !important;
}
html.high-contrast .site-header { background: #000 !important; border-bottom: 2px solid #ffe600; }
html.high-contrast a { text-decoration: underline; }
html.high-contrast .btn-primary,
html.high-contrast .nav-cta { background: #ffe600 !important; color: #000 !important; }
html.high-contrast .btn-outline { background: #000 !important; color: #ffe600 !important; border: 2px solid #ffe600 !important; }
html.high-contrast nav.main-nav a:hover,
html.high-contrast nav.main-nav a.active { background: #ffe600 !important; color: #000 !important; }
html.high-contrast footer.site-footer,
html.high-contrast .page-hero,
html.high-contrast .section-alt,
html.high-contrast .hero-calm { background: #000 !important; }
html.high-contrast *:focus-visible { outline: 3px solid #ffe600 !important; outline-offset: 2px; }
html.high-contrast .im-toc,
html.high-contrast .closing-banner,
html.high-contrast .guide-callout,
html.high-contrast .im-section.alt { background: #000 !important; }
html.high-contrast .im-toc a,
html.high-contrast .step,
html.high-contrast .compare-2 .card,
html.high-contrast .highlight-box { background: #000 !important; border: 2px solid #ffe600 !important; color: #fff !important; }
html.high-contrast .badge-circle,
html.high-contrast .step .step-num { background: #ffe600 !important; color: #000 !important; }
html.high-contrast .im-progress-bar { background: #ffe600 !important; }
html.high-contrast .closing-banner p,
html.high-contrast .closing-contact { color: #fff !important; }
html.high-contrast .closing-banner .btn-primary { background: #ffe600 !important; color: #000 !important; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* The logo image itself carries the "Honestwell" wordmark and tagline —
   it is shown as a single unit, without a separately-typed company name
   beside it, to avoid duplicating what the logo already says. */
.brand img {
  height: 52px;
  width: auto;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav.main-nav a {
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--teal);
  color: #fff;
}

.nav-cta {
  background: var(--pink) !important;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  display: block;
}

/* ===== Contrast toggle ===== */
.contrast-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--teal-dark);
  background: #fff;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  flex: none;
}

.contrast-toggle .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(90deg, #000 50%, #fff 50%);
  border: 1px solid var(--text-soft);
  flex: none;
}

html.high-contrast .contrast-toggle { background: #000; color: #ffe600; border-color: #ffe600; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}

.narration-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--teal);
  background: #fff;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  flex: none;
}

.narration-toggle:hover { background: var(--teal-light); }

.narration-toggle.is-playing {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

html.high-contrast .narration-toggle { background: #000; color: #ffe600; border-color: #ffe600; }
html.high-contrast .narration-toggle.is-playing { background: #ffe600; color: #000; }

/* Generic "currently being read aloud" highlight — applies to whichever
   content block the narration feature is reading, on any page. */
.is-narrating {
  outline: 3px solid var(--pink);
  outline-offset: -3px;
  border-radius: var(--radius);
}

html.high-contrast .is-narrating { outline-color: #ffe600; }

/* ===== Hero (calm / TOP page) ===== */
.hero-calm {
  padding: 100px 0 80px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--teal-light), var(--bg) 65%);
}

.hero-calm .hero-kicker {
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero-calm h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--teal-dark);
  font-weight: 700;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 22px;
}

.hero-calm .hero-sub {
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.98rem;
}

/* ===== Banner squares (TOP page) ===== */
.banner-section { padding: 20px 0 90px; }

.banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.banner-square {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 24px;
  gap: 18px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.banner-square:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: 0 16px 36px rgba(47, 36, 25, 0.14);
}

.banner-square .icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.banner-square h2 {
  font-size: 1.08rem;
  color: var(--teal-dark);
  margin: 0;
  line-height: 1.55;
}

.banner-square p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ===== Slim footer (TOP page) ===== */
.slim-footer {
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.8rem;
}

/* =========================================================
   重要事項説明 (Important Matters guide) page
   ========================================================= */

.im-progress {
  position: sticky;
  top: 0;
  z-index: 110;
  height: 4px;
  background: transparent;
}

.im-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  transition: width 0.1s linear;
}

.im-hero {
  padding: 72px 0 44px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--teal-light), var(--bg) 70%);
}

.im-hero img.mark,
.hero-calm img.mark {
  width: auto;
  height: 120px;
  margin: 0 auto 22px;
}

.im-hero .eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
  background: #fff;
}

.im-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--teal-dark);
  margin: 0 0 10px;
}

.im-hero .im-lead {
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.98rem;
}


/* Table of contents chip row */
.im-toc {
  position: sticky;
  top: 4px;
  z-index: 90;
  background: rgba(250, 247, 241, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow-x: auto;
}

.im-toc-inner {
  display: flex;
  gap: 8px;
  width: max-content;
  margin: 0 auto;
  padding: 0 6px;
}

.im-toc a {
  flex: none;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.im-toc a:hover { border-color: var(--teal); color: var(--teal-dark); }

/* Guide sections */
.im-section { padding: 64px 0; }
.im-section.alt { background: var(--teal-light); }

.im-section-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.badge-circle {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
}

.im-section-head h2 {
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: var(--teal-dark);
  margin: 6px 0 0;
}

.im-body { max-width: 760px; }
.im-body p { color: var(--text); }
.im-body ul { padding-left: 22px; color: var(--text); }
.im-body ul li { margin-bottom: 8px; }

.highlight-box {
  background: #fff;
  border-left: 4px solid var(--pink);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 22px;
  font-weight: 700;
  color: var(--teal-dark);
  box-shadow: var(--shadow);
}

/* 4-step process */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
  position: relative;
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
}

.step .step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.step h3 { font-size: 0.98rem; color: var(--teal-dark); margin: 0 0 8px; }
.step p { font-size: 0.85rem; color: var(--text-soft); margin: 0; }

/* 2-column compare cards */
.compare-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.compare-2 .card h3 {
  color: var(--teal-dark);
  font-size: 1rem;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.compare-2 .card p { color: var(--text-soft); font-size: 0.9rem; margin: 0; }

/* Contact card inside guide */
.im-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Closing banner */
.closing-banner {
  background: linear-gradient(135deg, var(--teal-dark), #4a3524);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.closing-banner h2 {
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  margin: 0 0 18px;
}

.closing-banner p {
  color: #e9ddd0;
  max-width: 560px;
  margin: 0 auto 30px;
}

.closing-banner .btn-primary {
  background: var(--pink);
}

.closing-contact {
  margin-top: 34px;
  font-size: 0.92rem;
  color: #f3ece2;
}

.closing-contact a { color: #fff; text-decoration: underline; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Callout linking to the guide, used on business.html */
.guide-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--teal-light), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 34px;
  box-shadow: var(--shadow);
  margin-bottom: 44px;
}

.guide-callout .gc-text h2 {
  color: var(--teal-dark);
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.guide-callout .gc-text p {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 860px) {
  .steps-row, .compare-2, .im-contact-grid { grid-template-columns: 1fr; }
  .im-section { padding: 48px 0; }
  .guide-callout { text-align: center; justify-content: center; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, var(--teal-light) 0%, var(--bg) 100%);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,84,107,0.10), transparent 70%);
}

.hero .eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 22px;
  background: #fff;
}

.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--teal-dark);
  margin: 0 0 20px;
  line-height: 1.55;
}

.hero p.lead {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--text-soft);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-outline {
  background: #fff;
  color: var(--teal-dark);
  border: 1px solid var(--teal);
}

.btn:hover { transform: translateY(-2px); opacity: 0.92; }

/* ===== Sections ===== */
section { padding: 76px 0; }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .tag {
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--teal-dark);
  margin: 10px 0 14px;
}

.section-head p {
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
}

.section-alt { background: var(--teal-light); }

/* ===== Cards / Grid ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.card:hover { transform: translateY(-4px); }

.card .num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.card h3 {
  font-size: 1.05rem;
  color: var(--teal-dark);
  margin: 0 0 10px;
}

.card p {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin: 0;
}

.link-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
}

.link-card:hover { transform: translateY(-4px); border-color: var(--teal); }

.link-card .arrow {
  color: var(--pink);
  font-weight: 700;
}

.link-card h3 {
  color: var(--teal-dark);
  margin: 12px 0 8px;
  font-size: 1.1rem;
}

.link-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Feature list ===== */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.92rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 8px;
}

/* ===== Quote / message ===== */
.message-block {
  text-align: center;
  padding: 64px 0;
}

.message-block p {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--teal-dark);
  font-weight: 700;
  line-height: 2;
}

/* ===== Table (company info) ===== */
table.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

table.info-table th,
table.info-table td {
  text-align: left;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

table.info-table th {
  width: 30%;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 700;
  vertical-align: top;
}

table.info-table tr:last-child th,
table.info-table tr:last-child td { border-bottom: none; }

/* ===== Access ===== */
.access-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.access-block .map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.access-block .map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.route {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.route strong { color: var(--teal-dark); }

/* ===== Business detail ===== */
.business-detail {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.business-detail h3 {
  color: var(--teal-dark);
  font-size: 1.15rem;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.business-detail h3 .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex: none;
}

.business-detail ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.business-detail ul li { margin-bottom: 6px; }

.overview-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.overview-panel dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px 14px;
  margin: 0;
}

.overview-panel dt { color: var(--teal-dark); font-weight: 700; }
.overview-panel dd { margin: 0; color: var(--text-soft); }

/* ===== Contact form ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info .card { margin-bottom: 20px; }

.form-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.form-row label .req {
  color: var(--pink);
  font-size: 0.75rem;
  margin-left: 6px;
  font-weight: 700;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--bg);
}

.form-row textarea { min-height: 150px; resize: vertical; }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.checkbox-row a { color: var(--teal); text-decoration: underline; }

.form-submit {
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 14px;
}

/* ===== Footer ===== */
footer.site-footer {
  background: var(--teal-dark);
  color: #eef4f2;
  padding: 56px 0 28px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-grid h4 {
  font-size: 0.95rem;
  margin: 0 0 16px;
  color: #fff;
}

.footer-grid p, .footer-grid a {
  font-size: 0.86rem;
  color: #cfe1db;
}

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: #fff; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand img { height: 48px; width: auto; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
  text-align: center;
  font-size: 0.78rem;
  color: #9db8b0;
}

/* ===== Page header (inner pages) ===== */
.page-hero {
  padding: 56px 0 40px;
  background: var(--teal-light);
  text-align: center;
}

.page-hero .crumb {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.page-hero .crumb a { color: var(--teal); }

.page-hero h1 {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  color: var(--teal-dark);
  margin: 0 0 10px;
}

.page-hero p {
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  nav.main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 4px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { text-align: center; }
  .menu-toggle { display: flex; }

  .grid-3, .grid-2, .feature-list, .access-block, .contact-wrap, .footer-grid, .banner-grid {
    grid-template-columns: 1fr;
  }

  .banner-square { aspect-ratio: auto; padding: 34px 24px; }

  .contrast-toggle span.label { display: none; }
}
