:root {
  --bg: #ffffff;
  --bg-elevated: rgba(255, 255, 255, 0.74);
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-dark: #121914;
  --surface-olive: #1d281d;
  --line: rgba(18, 25, 20, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #101712;
  --text-muted: #576258;
  --text-soft: rgba(255, 255, 255, 0.72);
  --accent: #b9ef52;
  --accent-strong: #8ac826;
  --accent-soft: rgba(185, 239, 82, 0.18);
  --accent-glow: rgba(203, 255, 111, 0.6);
  --stone: #d7dbc9;
  --shadow-lg: 0 30px 90px rgba(17, 26, 20, 0.14);
  --shadow-md: 0 16px 40px rgba(17, 26, 20, 0.09);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 3rem));
  --transition: 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.02), transparent 24%),
    radial-gradient(circle at 80% 8%, rgba(0, 0, 0, 0.03), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 25, 20, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 25, 20, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 70%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 70%);
  z-index: -2;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.5) 0.7px, transparent 0.8px),
    radial-gradient(circle at 80% 30%, rgba(18, 25, 20, 0.2) 0.7px, transparent 0.8px),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.55) 0.7px, transparent 0.8px);
  background-size: 24px 24px;
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.5rem 0;
  scroll-margin-top: 6rem;
}

.section-heading,
.impact-head,
.credibility-copy,
.contact-copy,
.hero-copy,
.hero-visual,
.page-hero-copy,
.page-summary,
.portal-card,
.page-cta,
.about-video-block,
.about-note,
.about-copy,
.panel,
.feature-card,
.quality-copy,
.quality-visual,
.process-card,
.authority-band,
.info-card,
.contact-form {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  color: #4b5a48;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.85rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 6.3rem);
  line-height: 0.92;
  max-width: 12ch;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  max-width: 13ch;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0;
}

.site-header.is-scrolled {
  padding-top: 0.5rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(16, 23, 18, 0.06);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(17, 26, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #e7ffad, #afd84e 65%, #789a2b 100%);
  color: #0e170f;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 24px rgba(140, 196, 41, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 0.96rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: #2e3b31;
  font-size: 0.92rem;
}

.nav-menu a {
  transition: color var(--transition), opacity var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #0c130d;
}

.nav-menu a[aria-current="page"] {
  color: #0c130d;
  font-weight: 600;
}

.nav-cta {
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  background: #111914;
  color: #f6f8f0;
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(17, 25, 20, 0.08);
  color: var(--text);
}

.hero {
  padding-top: 4rem;
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 39rem;
}

.hero-lead {
  max-width: 37rem;
  margin-top: 1.5rem;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #d8ff90 0%, #aee44d 52%, #87c128 100%);
  color: #111811;
  box-shadow: 0 14px 30px rgba(158, 208, 50, 0.24);
}

.button-secondary {
  border-color: rgba(16, 23, 18, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
}

.button-full {
  width: 100%;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin-top: 2rem;
  list-style: none;
}

.hero-highlights li {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 23, 18, 0.08);
  background: rgba(255, 255, 255, 0.55);
  color: #253227;
  font-size: 0.87rem;
}

.hero-visual {
  position: relative;
}

.visual-shell {
  position: relative;
  min-height: 42rem;
  border-radius: 3rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.visual-shell::after {
  content: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  filter: none;
  z-index: 0;
}

.page-hero {
  padding-top: 3.2rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: end;
}

.page-hero-copy {
  max-width: 46rem;
}

.page-lead {
  max-width: 40rem;
  margin-top: 1.35rem;
  font-size: 1.04rem;
}

.page-summary {
  display: grid;
  gap: 1rem;
}

.page-summary-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 23, 18, 0.08);
  box-shadow: var(--shadow-md);
}

.page-summary-card span {
  display: block;
  color: #5a675c;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-summary-card strong {
  display: block;
  margin-top: 0.8rem;
  line-height: 1.4;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.section-heading p,
.impact-head p {
  max-width: 42rem;
}

.about-layout,
.quality-layout,
.credibility-layout,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.about-video-block {
  position: relative;
}

.about-video-shell {
  position: relative;
  min-height: 36rem;
  border-radius: 2.6rem;
  overflow: hidden;
  background: #060806;
}

.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.about-video-overlay h2 {
  max-width: none;
  color: #ffffff;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.about-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.about-note {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 23, 18, 0.08);
  box-shadow: var(--shadow-md);
}

.about-note p {
  margin-top: 0.7rem;
}

.portal-section .section-heading p {
  max-width: 46rem;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.portal-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.7rem;
  border-radius: 1.85rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 23, 18, 0.08);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.portal-card:hover,
.portal-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(138, 200, 38, 0.24);
}

.portal-card-wide {
  grid-column: span 2;
}

.portal-label {
  color: #61705f;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portal-card h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.portal-link {
  margin-top: auto;
  color: #31412f;
  font-size: 0.9rem;
  font-weight: 600;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  margin-top: 1.25rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 23, 18, 0.08);
  box-shadow: var(--shadow-lg);
}

.page-cta h3 {
  margin-top: 0.4rem;
  max-width: 32rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.about-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: start;
}

.about-copy {
  padding-right: 2rem;
}

.about-copy p + p {
  margin-top: 1.4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.panel {
  position: relative;
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(16, 23, 18, 0.08);
  box-shadow: var(--shadow-md);
}

.panel-dark {
  grid-column: span 7;
  min-height: 15rem;
  background:
    linear-gradient(180deg, rgba(239, 248, 220, 0.9), rgba(255, 255, 255, 0.96)),
    var(--surface);
  color: var(--text);
  border: 1px solid rgba(16, 23, 18, 0.08);
}

.panel-dark p {
  color: var(--text-muted);
}

.panel-accent {
  grid-column: span 8;
  background:
    linear-gradient(180deg, rgba(212, 249, 124, 0.42), rgba(255, 255, 255, 0.92)),
    var(--surface);
}

.about-grid .panel:nth-child(2) {
  grid-column: span 5;
}

.panel-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  background: rgba(17, 25, 20, 0.07);
  color: #324036;
  font-size: 0.82rem;
  font-weight: 600;
}

.panel-dark .panel-index {
  background: rgba(17, 25, 20, 0.07);
  color: #324036;
}

.panel p {
  margin-top: 0.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.process-card,
.info-card,
.contact-card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 23, 18, 0.08);
  box-shadow: var(--shadow-md);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #daff94, #8bc82a);
  box-shadow: 0 0 0 0.45rem rgba(185, 239, 82, 0.12);
}

.feature-card p,
.process-card p {
  margin-top: 0.9rem;
}

.quality-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.quality-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.quality-item {
  padding: 1.2rem 1.25rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(16, 23, 18, 0.08);
}

.quality-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.quality-item span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.quality-frame {
  position: relative;
  min-height: 39rem;
  padding: 2rem;
  border-radius: 2.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 242, 0.92));
  border: 1px solid rgba(16, 23, 18, 0.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.quality-frame::before {
  content: "";
  position: absolute;
  inset: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(16, 23, 18, 0.06);
}

.quality-orb {
  position: absolute;
  inset: 11% 14% auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, #f4ffd8 0%, #d4fb7c 20%, #a6d63f 47%, #5d831b 78%, #23310f 100%);
  box-shadow:
    inset 0 6px 30px rgba(255, 255, 255, 0.3),
    0 22px 58px rgba(167, 214, 64, 0.18);
}

.quality-orb::before {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      rgba(255, 255, 255, 0.58) 0deg 12deg,
      rgba(148, 187, 49, 0.1) 12deg 24deg
    );
  -webkit-mask: radial-gradient(circle, transparent 0 31%, #000 32% 100%);
  mask: radial-gradient(circle, transparent 0 31%, #000 32% 100%);
}

.quality-overlay {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 8rem;
  padding: 1.6rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 23, 18, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.quality-overlay p {
  color: #5b685c;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quality-overlay h3 {
  margin-top: 0.85rem;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.quality-chip-group {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quality-chip-group span {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: 0.85rem;
  border: 1px solid rgba(16, 23, 18, 0.08);
}

.impact-head {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  min-height: 16rem;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(185, 239, 82, 0.18);
  color: #394637;
  font-size: 0.82rem;
  font-weight: 700;
}

.authority-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: end;
  margin-top: 1.4rem;
  padding: 2rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(205, 255, 123, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 242, 0.94));
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(16, 23, 18, 0.08);
}

.authority-band h3 {
  margin-top: 0.35rem;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.authority-band p {
  color: var(--text-muted);
}

.credibility-layout {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  min-height: 12.5rem;
}

.info-card span,
.contact-card span {
  display: block;
  color: #566356;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card strong,
.contact-card strong {
  display: block;
  margin-top: 1.05rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.72);
}

.map-frame {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(16, 23, 18, 0.08);
  box-shadow: var(--shadow-md);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 22rem;
  border: 0;
  filter: grayscale(1) contrast(1.08) brightness(1.02);
}

.contact-form {
  padding: 2rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 244, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-lg), var(--shadow-inset);
}

.form-intro {
  margin-bottom: 1.6rem;
}

.form-intro h3 {
  margin-top: 0.3rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.form-intro p {
  margin-top: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: #223024;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 23, 18, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(138, 200, 38, 0.65);
  box-shadow: 0 0 0 0.22rem rgba(185, 239, 82, 0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.form-feedback {
  min-height: 1.5rem;
  margin-top: 0.8rem;
  font-size: 0.92rem;
}

.form-feedback.is-success {
  color: #2d5420;
}

.form-feedback.is-error {
  color: #8a2929;
}

.site-footer {
  padding: 1rem 0 2rem;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border: 1px solid rgba(16, 23, 18, 0.08);
  box-shadow: var(--shadow-md);
}

.footer-layout strong {
  display: block;
  margin-bottom: 0.35rem;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-layout p {
  color: var(--text-muted);
}

@media (max-width: 1080px) {
  .hero-layout,
  .page-hero-grid,
  .about-layout,
  .quality-layout,
  .credibility-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-copy {
    max-width: none;
  }

  .about-copy {
    padding-right: 0;
  }

  .card-grid,
  .about-notes,
  .portal-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-top: 0.75rem;
  }

  .main-nav {
    border-radius: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding-top: 0.8rem;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .hero-layout {
    gap: 2rem;
  }

  .visual-shell {
    min-height: 34rem;
  }

  .page-cta,
  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-video-shell {
    min-height: 30rem;
  }

  .about-grid,
  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .about-grid .panel,
  .about-grid .panel:nth-child(2),
  .panel-accent {
    grid-column: auto;
  }

  .quality-frame {
    min-height: 31rem;
  }

  .authority-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 1.35rem, 100%);
  }

  .section {
    padding: 4.5rem 0;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  h2 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .main-nav {
    padding: 0.95rem;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 0.74rem;
  }

  .brand-text small {
    display: none;
  }

  .hero-actions,
  .hero-highlights,
  .quality-chip-group {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .visual-shell {
    min-height: 29rem;
    border-radius: 2rem;
  }

  .page-summary,
  .portal-grid,
  .about-notes {
    grid-template-columns: 1fr;
  }

  .about-video-shell {
    min-height: 23rem;
    border-radius: 1.75rem;
  }

  .page-cta {
    padding: 1.5rem;
  }

  .card-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .quality-frame,
  .contact-form {
    padding: 1.35rem;
  }

  .quality-overlay {
    left: 1.35rem;
    right: 1.35rem;
    bottom: 6.2rem;
  }

  .quality-chip-group {
    left: 1.35rem;
    right: 1.35rem;
    bottom: 1.35rem;
  }

  .map-frame iframe {
    min-height: 18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
