:root {
  --ink: #16221f;
  --muted: #66736f;
  --paper: #f6f8f5;
  --surface: #ffffff;
  --forest: #0f5f55;
  --forest-dark: #083f3a;
  --sage: #dfeae3;
  --mist: #eef4f0;
  --gold: #d89b35;
  --coral: #d96b57;
  --blue: #416f8f;
  --line: #dce3dd;
  --shadow: 0 22px 70px rgba(22, 34, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  line-height: 1.65;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
}

h1 {
  max-width: 860px;
  font-size: clamp(44px, 7.6vw, 86px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  letter-spacing: 0;
}

h3 {
  font-size: 23px;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(246, 248, 245, 0.92);
  border-bottom: 1px solid rgba(220, 227, 221, 0.86);
  backdrop-filter: blur(18px);
}

.site-header[data-elevated="true"] {
  box-shadow: 0 12px 30px rgba(22, 34, 31, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}

.brand-logo {
  width: 188px;
  height: 52px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #33433e;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(640px, 88vh, 880px);
  overflow: hidden;
  background: #0e2d2c;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 31, 31, 0.88) 0%, rgba(9, 31, 31, 0.64) 50%, rgba(9, 31, 31, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 20, 22, 0.26), rgba(4, 20, 22, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 100px);
  padding: 46px 0 64px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.partner-hero .eyebrow {
  color: #f1c46f;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: var(--forest);
  box-shadow: 0 14px 30px rgba(15, 95, 85, 0.28);
}

.hero .button.primary,
.partner-hero .button.primary {
  background: var(--gold);
  color: #1e211a;
  box-shadow: 0 16px 34px rgba(216, 155, 53, 0.25);
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.outline {
  color: var(--forest-dark);
  background: transparent;
  border-color: rgba(15, 95, 85, 0.34);
}

.button.full {
  width: 100%;
}

.notice-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -54px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.notice-band div {
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
}

.notice-band strong,
.notice-band span {
  display: block;
}

.notice-band strong {
  color: var(--forest-dark);
  font-size: 16px;
}

.notice-band span {
  margin-top: 6px;
  color: var(--muted);
}

.section,
.split-section,
.signup-section,
.models-section,
.proposal-band,
.cred-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section.soft {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--mist);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.cred-copy p:not(.eyebrow),
.split-copy p:not(.eyebrow),
.partner-hero-copy p:not(.eyebrow),
.signup-copy p {
  color: var(--muted);
  font-size: 18px;
}

.cred-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 96px 0 44px;
}

.brand-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.brand-stats div,
.metric-row div,
.info-stack div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.brand-stats div {
  padding: 18px;
}

.brand-stats strong,
.brand-stats span {
  display: block;
}

.brand-stats strong {
  color: var(--forest-dark);
  font-size: 28px;
  line-height: 1;
}

.brand-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.focus-note {
  margin-top: 18px;
  padding: 22px;
  color: white;
  background: linear-gradient(135deg, var(--forest-dark), #1e596e);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(22, 34, 31, 0.1);
}

.focus-note strong {
  display: block;
  color: #f1c46f;
  font-size: 18px;
}

.focus-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.cred-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cred-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.location-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 5px;
  padding: 22px;
  color: white;
  background: rgba(8, 63, 58, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.location-card span {
  color: #f1c46f;
  font-weight: 900;
}

.location-card strong {
  font-size: 18px;
}

.location-card a {
  color: white;
  font-weight: 900;
}

.program-grid,
.parent-grid,
.model-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.program-card,
.model-card,
.partner-type-grid article,
.form-card,
.parent-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(22, 34, 31, 0.07);
}

.program-card {
  overflow: hidden;
}

.program-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.program-card div {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.program-card p,
.program-card li,
.parent-item p,
.model-card p,
.partner-type-grid p {
  color: var(--muted);
}

.program-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 78px 0 96px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.metric-row div {
  padding: 18px;
  background: var(--sage);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--forest-dark);
  font-size: 26px;
}

.metric-row span {
  color: #33433e;
}

.method-panel {
  padding: 34px;
  color: white;
  background: linear-gradient(135deg, var(--forest-dark), #174d62);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.check-list p {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.check-list span {
  width: 15px;
  height: 15px;
  margin-top: 6px;
  background: var(--gold);
  border-radius: 50%;
}

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

.parent-item {
  padding: 28px;
  border-top: 5px solid var(--forest);
}

.parent-item:nth-child(2) {
  border-top-color: var(--blue);
}

.parent-item:nth-child(3) {
  border-top-color: var(--coral);
}

.parent-item strong {
  display: block;
  font-size: 19px;
}

.signup-section {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 44px;
  align-items: start;
  padding: 96px 0;
}

.signup-copy {
  position: sticky;
  top: 110px;
}

.info-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.info-stack div {
  padding: 18px;
}

.info-stack span,
.info-stack strong {
  display: block;
}

.info-stack span {
  color: var(--muted);
  font-size: 14px;
}

.info-stack strong {
  margin-top: 4px;
}

.form-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

label,
legend {
  color: #33433e;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid #cfd8d2;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 95, 85, 0.18);
  border-color: var(--forest);
}

fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 16px;
  border: 1px solid #cfd8d2;
  border-radius: 8px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.choice input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest-dark);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 4vw, 58px);
  color: white;
  background: #0d2928;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.partner-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 680px;
  color: white;
  background: var(--forest-dark);
}

.partner-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 7vw, 92px);
}

.partner-hero-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.partner-visual {
  min-height: 460px;
}

.partner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.partner-type-grid article {
  padding: 24px;
}

.partner-type-grid span {
  color: var(--coral);
  font-weight: 900;
}

.models-section {
  padding: 86px 0;
}

.model-card {
  padding: 28px;
}

.model-card strong {
  color: var(--forest);
  font-size: 34px;
}

.proposal-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 42px;
  color: white;
  background: linear-gradient(135deg, var(--forest-dark), #1e596e);
  border-radius: 8px;
}

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

.proposal-points p {
  margin: 0;
  padding: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.partner-form-section {
  padding-top: 78px;
}

.ai-hero {
  position: relative;
  min-height: clamp(700px, 92vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #071716;
}

.ai-hero-media,
.ai-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ai-hero-media img {
  object-fit: cover;
}

.ai-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 16, 18, 0.92) 0%, rgba(4, 16, 18, 0.76) 46%, rgba(4, 16, 18, 0.28) 100%),
    linear-gradient(0deg, rgba(4, 16, 18, 0.28), rgba(4, 16, 18, 0));
}

.ai-hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 100px);
  padding: 56px 0;
}

.ai-hero-content .eyebrow,
.ai-dark-section .eyebrow {
  color: #f1c46f;
}

.ai-hero-content p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 23px);
}

.ai-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ai-proof span {
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 900;
}

.ai-statement,
.ai-requirements,
.ai-instructor,
.ai-format {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.ai-statement {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 82px 0 62px;
}

.ai-statement p:not(.eyebrow),
.ai-instructor p,
.ai-format p {
  color: var(--muted);
  font-size: 18px;
}

.ai-requirements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 0 82px;
}

.ai-requirements article {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(22, 34, 31, 0.07);
}

.ai-requirements span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-requirements h3 {
  margin-top: 8px;
}

.ai-requirements p {
  color: var(--muted);
}

.ai-dark-section {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  color: white;
  background: #071716;
}

.ai-dark-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.ai-skill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ai-skill-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.ai-skill-grid span {
  color: #f1c46f;
  font-size: 30px;
  font-weight: 900;
}

.ai-skill-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.ai-instructor {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 42px;
  align-items: center;
  padding: 92px 0 46px;
}

.instructor-card {
  padding: 30px;
  color: white;
  background: linear-gradient(135deg, var(--forest-dark), #1e596e);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.instructor-card strong {
  display: block;
  color: #f1c46f;
  font-size: 22px;
}

.instructor-card p {
  color: rgba(255, 255, 255, 0.86);
}

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

.ai-curriculum {
  padding-top: 72px;
}

.curriculum-list {
  display: grid;
  gap: 14px;
}

.curriculum-list article {
  display: grid;
  grid-template-columns: 120px 0.8fr 1.2fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(22, 34, 31, 0.06);
}

.curriculum-list span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.curriculum-list p {
  margin: 0;
  color: var(--muted);
}

.curriculum-list strong {
  color: var(--forest-dark);
}

.ai-outcomes {
  width: 100%;
  padding: 92px max(18px, calc((100vw - 1180px) / 2));
  background: #eef4f0;
}

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

.outcome-grid article {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(22, 34, 31, 0.08);
}

.outcome-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.outcome-grid div {
  padding: 24px;
}

.outcome-grid span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.outcome-grid p {
  color: var(--muted);
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(22, 34, 31, 0.07);
}

.pricing-card.featured {
  border-color: rgba(216, 155, 53, 0.62);
  box-shadow: 0 24px 70px rgba(216, 155, 53, 0.16);
}

.pricing-card.elite {
  background: #0d2928;
  color: white;
}

.pricing-label {
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.pricing-card h3 {
  font-size: clamp(34px, 4vw, 48px);
}

.pricing-card p,
.pricing-card li {
  color: var(--muted);
}

.pricing-card.elite p,
.pricing-card.elite li {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.ai-format {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 34px 0 82px;
}

.format-list {
  display: grid;
  gap: 12px;
}

.format-list p {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 0;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.format-list span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  background: var(--gold);
  border-radius: 50%;
}

@media (max-width: 980px) {
  .notice-band,
  .cred-section,
  .program-grid,
  .parent-grid,
  .model-list,
  .signup-section,
  .split-section,
  .partner-hero,
  .proposal-band,
  .ai-statement,
  .ai-instructor,
  .pricing-grid,
  .ai-requirements,
  .outcome-grid,
  .ai-format {
    grid-template-columns: 1fr;
  }

  .curriculum-list article {
    grid-template-columns: 1fr;
  }

  .partner-type-grid,
  .ai-skill-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signup-copy {
    position: static;
  }

  .notice-band {
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    display: none;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(9, 31, 31, 0.88), rgba(9, 31, 31, 0.62));
  }

  .hero-content {
    margin-inline: 18px;
  }

  .ai-hero {
    min-height: 720px;
  }

  .ai-hero::after {
    background: linear-gradient(90deg, rgba(4, 16, 18, 0.92), rgba(4, 16, 18, 0.66));
  }

  .ai-hero-content {
    margin-inline: 18px;
  }

  .section,
  .split-section,
  .signup-section,
  .models-section {
    padding: 68px 0;
  }

  .brand-stats,
  .metric-row,
  .partner-type-grid,
  .proposal-points,
  .ai-skill-grid {
    grid-template-columns: 1fr;
  }

  .cred-visual,
  .cred-visual img {
    min-height: 430px;
  }

  .location-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .site-footer {
    display: grid;
  }
}
