:root {
  --ink: #193026;
  --forest: #244a36;
  --leaf: #6f7f32;
  --moss: #a9ad67;
  --cream: #f6f0df;
  --paper: #fffdf6;
  --terracotta: #b85c3c;
  --sun: #eca82c;
  --water: #6aa9bb;
  --line: rgba(25, 48, 38, 0.18);
  --shadow: 0 24px 70px rgba(42, 51, 34, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 246, 0.92);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(25, 48, 38, 0.06);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  line-height: 1.15;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
}

.brand small {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav > a,
.nav-dropdown-toggle {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-nav > a:not(.button):hover,
.nav-dropdown-toggle:hover {
  color: var(--terracotta);
}

.site-nav > a[aria-current="page"] {
  color: var(--terracotta);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav-group,
.account-menu {
  position: relative;
}

.nav-dropdown-toggle,
.account-menu-toggle,
.account-logout {
  width: auto;
  min-height: 42px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-toggle span {
  font-size: 0.9rem;
  transition: transform 160ms ease;
}

.nav-group.open .nav-dropdown-toggle span {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: -1.25rem;
  width: min(430px, calc(100vw - 32px));
  padding: 0.7rem;
  display: none;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.nav-group.open .nav-dropdown {
  display: grid;
}

.nav-dropdown-compact {
  width: 350px;
}

.nav-dropdown a {
  padding: 0.8rem 0.9rem;
  display: block;
  text-decoration: none;
}

.nav-dropdown a:hover {
  background: var(--cream);
}

.nav-dropdown strong,
.nav-dropdown small {
  display: block;
}

.nav-dropdown strong {
  font-family: var(--sans);
  font-size: 0.82rem;
}

.nav-dropdown small {
  margin-top: 0.18rem;
  color: #526158;
  font-size: 0.72rem;
  line-height: 1.4;
}

.account-menu-toggle {
  position: relative;
  padding: 0 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.account-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
}

.account-avatar > * {
  grid-area: 1 / 1;
}

.account-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-initials {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.account-notification {
  position: absolute;
  top: -2px;
  left: 29px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 10px;
  color: white;
  background: var(--terracotta);
  font-size: 0.58rem;
}

.account-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 270px;
  padding: 0.75rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.account-summary {
  padding: 0.7rem 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
}

.account-summary strong,
.account-summary small {
  display: block;
}

.account-summary small {
  margin-top: 0.25rem;
  color: #526158;
  font-size: 0.68rem;
  line-height: 1.4;
}

.account-links {
  display: grid;
}

.account-links a,
.account-logout {
  min-height: 42px;
  padding: 0.65rem 0.75rem;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
  text-align: left;
  text-decoration: none;
}

.account-links a:hover,
.account-logout:hover {
  color: var(--terracotta);
  background: var(--cream);
}

.account-logout {
  border-top: 1px solid var(--line);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--terracotta);
  border-radius: 3px;
  color: white;
  background: var(--terracotta);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: #98472f;
  box-shadow: 0 10px 26px rgba(134, 62, 39, 0.22);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0.6rem 1.05rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 80px max(40px, calc((100vw - 1180px) / 2)) 88px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 32%, rgba(236, 168, 44, 0.15) 0 15%, transparent 15.2%),
    linear-gradient(120deg, var(--paper) 0 58%, var(--cream) 58%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -270px;
  bottom: -310px;
  border: 55px solid rgba(106, 169, 187, 0.15);
  border-radius: 50%;
}

.learning-zone-hero {
  min-height: 700px;
  padding: 90px max(40px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  background: linear-gradient(128deg, var(--paper) 0 62%, var(--cream) 62%);
}

.learning-zone-hero h1 {
  max-width: 850px;
}

.learning-zone-promise {
  padding: clamp(2.2rem, 5vw, 4.5rem);
  background: var(--forest);
  box-shadow: 24px 24px 0 var(--moss);
}

.learning-zone-promise h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

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

.learning-pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.learning-pathway-grid article {
  min-height: 390px;
  padding: clamp(1.7rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.learning-pathway-grid article.surface-dark {
  background: var(--forest);
}

.learning-pathway-grid h3 {
  margin: 2.2rem 0 1rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.learning-pathway-grid .text-link {
  margin-top: auto;
}

.learning-cycle-list {
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.learning-cycle-list li {
  min-height: 190px;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.learning-cycle-list strong,
.learning-cycle-list span {
  display: block;
}

.learning-cycle-list strong {
  margin-bottom: 2rem;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.hybrid-learning-zone {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: #edf0dc;
}

.hybrid-learning-zone h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.012em;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.7rem;
  font-size: clamp(4.2rem, 7.8vw, 7.8rem);
}

h1 em {
  color: var(--leaf);
  font-weight: 400;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 2rem;
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.text-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--terracotta);
}

.hero-facts {
  margin-top: 4rem;
  padding-top: 1.4rem;
  display: flex;
  gap: clamp(2rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.hero-facts div {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.hero-facts span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.logo-frame {
  position: relative;
  z-index: 2;
  width: min(480px, 90%);
  padding: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.logo-frame img {
  border-radius: 50%;
}

.sun-mark {
  position: absolute;
  z-index: 1;
  top: -3%;
  right: -4%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 26px rgba(236, 168, 44, 0.11), 0 0 0 52px rgba(236, 168, 44, 0.07);
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: -1.5rem;
  bottom: 2.5rem;
  padding: 1rem 1.2rem;
  color: white;
  background: var(--forest);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.4;
  transform: rotate(2deg);
}

.ethics-bar {
  min-height: 82px;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 4rem);
  color: white;
  background: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.04em;
}

.ethics-symbol {
  color: var(--sun);
  font-family: var(--sans);
}

.section {
  padding: 120px max(40px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 4rem;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
}

.programme-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.programme-copy {
  max-width: 640px;
}

.programme-copy p {
  color: #3e4e45;
}

.programme-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.45;
}

.programme-intro {
  max-width: 780px;
  margin: -1.5rem 0 3.5rem;
  color: #3e4e45;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.5;
}

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

.course-card {
  padding: clamp(2rem, 4vw, 3.8rem);
  color: white;
  background: var(--forest);
  box-shadow: 22px 22px 0 var(--moss);
}

.route-card {
  display: flex;
  flex-direction: column;
}

.route-card-in-person {
  background: #294f3e;
  box-shadow: 22px 22px 0 #d7a74d;
}

.route-card > p:not(.card-kicker) {
  min-height: 7.2rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.route-card dl {
  flex: 1;
}

.route-button {
  align-self: flex-start;
  margin-top: 2rem;
}

.route-enquiry-link {
  align-self: flex-start;
  margin-top: 1rem;
  color: #f5e8bd;
  font-size: 0.82rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.route-enquiry-link:hover {
  color: white;
}

.hybrid-note {
  margin-top: 4rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  border: 1px solid rgba(25, 48, 38, 0.2);
  background: var(--cream);
}

.hybrid-note h3 {
  margin: 0 0 0.65rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 500;
}

.hybrid-note p:not(.card-kicker) {
  max-width: 720px;
  margin-bottom: 0;
  color: #3e4e45;
}

.curriculum-link {
  margin: 2.25rem 0 0;
}

.card-kicker {
  color: #d9ddaa;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.course-card h3 {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
}

.course-card dl {
  margin: 0;
}

.course-card dl div {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.course-card dt {
  color: #d9ddaa;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-card dd {
  margin: 0;
}

.curriculum {
  background: var(--cream);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.65fr;
  gap: 5rem;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.module-grid article {
  min-height: 270px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.module-grid article:hover {
  z-index: 1;
  color: white;
  background: var(--forest);
  transform: translateY(-5px);
}

.module-grid article > span {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.module-grid article:hover > span {
  color: var(--sun);
}

.module-grid h3 {
  margin: 3rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
}

.module-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.module-feature {
  grid-column: span 2;
  color: white;
  background: var(--terracotta);
}

.module-feature > span {
  color: #ffe5a7 !important;
}

.experience {
  padding-top: 0;
  padding-bottom: 0;
}

.experience-panel {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: white;
  background: var(--forest);
}

.experience-copy {
  padding: clamp(3rem, 7vw, 7rem);
  align-self: center;
}

.experience-copy .eyebrow {
  color: #d9ddaa;
}

.experience-copy h2 {
  font-size: clamp(3.2rem, 5vw, 5rem);
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.landscape-art {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    linear-gradient(rgba(25, 48, 38, 0.04), rgba(25, 48, 38, 0.04)),
    url("assets/vila-pinheiro-farming-logo.jpg") center / cover no-repeat;
}

.check-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sun);
  font-weight: 900;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.outcome-grid article {
  padding: 2rem;
  border: 1px solid var(--line);
}

.outcome-icon {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 2.7rem;
}

.outcome-grid h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.outcome-grid p {
  margin-bottom: 0;
  color: #536159;
  font-size: 0.92rem;
}

.quote-section {
  padding-top: 60px;
  padding-bottom: 110px;
  text-align: center;
}

blockquote {
  max-width: 950px;
  margin: 0 auto;
}

blockquote p {
  margin-bottom: 1.8rem;
  color: var(--leaf);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.18;
}

blockquote cite {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--cream);
}

.faq .section-heading h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 1.6rem 3rem 1.6rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 1.6rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 680px;
  padding: 0 2rem 1.6rem 0;
  color: #4b5b52;
}

.enquiry {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 9vw, 9rem);
  color: white;
  background: var(--terracotta);
}

.enquiry .eyebrow {
  color: #ffe0a1;
}

.enquiry h2 {
  font-size: clamp(3.5rem, 6vw, 6.2rem);
}

.enquiry-copy > p:last-child {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
}

.interest-form {
  --surface-heading-color: #193026;
  --surface-text-color: #32473c;
  --surface-accent-color: #8f3f27;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.interest-form label {
  color: #294036 !important;
}

.interest-form .consent-row label,
.interest-form .form-note {
  color: #4c5b53 !important;
}

.interest-form .form-status {
  color: #214a35 !important;
}

.form-row {
  margin-bottom: 1.25rem;
}

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

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.consent-row {
  margin: 1.4rem 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.consent-row input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  accent-color: var(--terracotta);
}

.consent-row label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid #a9aa9f;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 2px 0 var(--terracotta);
}

select {
  cursor: pointer;
}

.button-light {
  margin-top: 1rem;
}

.form-note,
.form-status {
  margin: 1rem 0 0;
  color: #687269;
  font-size: 0.78rem;
}

.form-status {
  color: var(--forest);
  font-weight: 800;
}

.site-footer {
  padding: 55px max(40px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  color: white;
  background: #13261e;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  border-radius: 50%;
}

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

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-brand span,
.copyright {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--sun);
}

.connected-sites {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

.connected-sites span {
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.connected-sites a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration-color: rgba(255, 255, 255, 0.26);
  text-underline-offset: 4px;
}

.connected-sites a:hover {
  color: var(--sun);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tutor-hero {
  min-height: 690px;
  padding: 90px max(40px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, var(--paper) 0 62%, var(--cream) 62%);
}

.tutor-hero h1 {
  margin-bottom: 1.8rem;
}

.tutor-hero-mark {
  position: relative;
  width: min(360px, 86%);
  aspect-ratio: 1;
  justify-self: center;
}

.tutor-hero-mark::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -30px;
  border: 2px solid var(--sun);
  border-radius: 50%;
}

.tutor-hero-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
  image-rendering: auto;
}

.tutor-hero-mark p {
  position: absolute;
  z-index: 2;
  right: -2rem;
  bottom: 1rem;
  margin: 0;
  padding: 1rem 1.2rem;
  color: white;
  background: var(--forest);
  font-family: var(--serif);
  line-height: 1.4;
}

.tutor-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.tutor-intro-grid .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1.4;
}

.tutor-intro-grid > div {
  color: #46564d;
}

.tutor-path {
  background: var(--cream);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.credential-grid article {
  min-height: 360px;
  padding: 2.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credential-grid span {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.credential-grid h3 {
  margin: 4rem 0 1.2rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.credential-grid p {
  margin: 0;
  color: #4c5b53;
}

.tutor-philosophy {
  padding-top: 0;
  padding-bottom: 0;
}

.philosophy-panel {
  padding: clamp(3rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  color: white;
  background: var(--forest);
}

.philosophy-panel .eyebrow {
  color: #d9ddaa;
}

.philosophy-panel h2 {
  font-size: clamp(3.2rem, 5vw, 5.4rem);
}

.philosophy-copy > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.tutor-lab-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.tutor-lab-grid h2 {
  font-size: clamp(3.2rem, 5vw, 5.3rem);
}

.tutor-lab-grid .button {
  margin-top: 1rem;
}

.lab-photo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  box-shadow: 18px 18px 0 var(--cream);
}

.lab-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: 55% center;
}

.lab-photo p {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.7rem 0.9rem;
  color: white;
  background: rgba(25, 48, 38, 0.9);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tutor-quote {
  background: var(--cream);
}

.course-detail-hero {
  min-height: 720px;
  padding: 90px max(40px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  overflow: hidden;
}

.course-detail-online {
  background: linear-gradient(132deg, var(--paper) 0 63%, var(--cream) 63%);
}

.course-detail-in-person {
  background: linear-gradient(132deg, var(--paper) 0 61%, #edf0dc 61%);
}

.course-detail-copy h1 {
  max-width: 820px;
}

.detail-facts {
  margin-top: 3rem;
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.detail-facts div {
  display: grid;
  gap: 0.15rem;
}

.detail-facts strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.detail-facts span {
  color: #59675f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-summary-card {
  padding: clamp(2rem, 5vw, 4.5rem);
  color: white;
  background: var(--forest);
  box-shadow: 24px 24px 0 var(--moss);
}

.detail-summary-card img {
  width: 110px;
  height: 110px;
  margin-bottom: 2.5rem;
  border-radius: 50%;
}

.detail-summary-card h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.detail-summary-card > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.detail-landscape {
  position: relative;
  min-height: 520px;
  box-shadow: 24px 24px 0 rgba(169, 173, 103, 0.45);
}

.detail-landscape img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.detail-landscape p {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  margin: 0;
  padding: 0.8rem 1rem;
  color: white;
  background: rgba(25, 48, 38, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-availability {
  padding: 2rem max(40px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.75fr 1.2fr auto;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.route-availability .eyebrow {
  margin-bottom: 0.45rem;
}

.route-availability h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.route-availability > p {
  margin: 0;
  color: #46564d;
  line-height: 1.65;
}

.route-availability .text-link {
  white-space: nowrap;
}

.method-grid,
.rhythm-grid,
.curriculum-bands,
.preparation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.method-grid article,
.rhythm-grid article,
.preparation-grid article {
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-top: 3px solid var(--moss);
  background: var(--cream);
}

.method-grid span,
.curriculum-bands span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-grid h3,
.rhythm-grid h3,
.curriculum-bands h3,
.preparation-grid h3 {
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.2;
}

.method-grid p,
.rhythm-grid p,
.preparation-grid p {
  margin-bottom: 0;
  color: #4c5b53;
}

.learning-rhythm {
  background: var(--cream);
}

.workload-section,
.completion-requirements {
  background: var(--paper);
}

.workload-grid,
.service-grid,
.completion-grid {
  display: grid;
  gap: 1.2rem;
}

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

.workload-grid article,
.service-grid article,
.completion-grid article {
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-top: 3px solid var(--moss);
  background: var(--cream);
}

.workload-grid strong,
.service-grid strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--terracotta);
  font: 500 clamp(1.8rem, 3vw, 2.5rem)/1 var(--serif);
}

.workload-grid span {
  display: block;
  color: var(--forest);
  font-weight: 800;
}

.workload-grid p,
.service-grid p,
.completion-grid p {
  margin-bottom: 0;
  color: #46564d;
}

.information-note {
  margin: 1.2rem 0 0;
  padding: 1.1rem 1.3rem;
  border-left: 3px solid var(--terracotta);
  color: #46564d;
  background: var(--cream);
}

.support-expectations {
  background: var(--cream);
}

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

.service-grid article {
  border-top-color: var(--terracotta);
  background: var(--paper);
}

.service-grid strong {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid h3,
.completion-grid h3 {
  margin-bottom: 0.7rem;
  font: 500 1.4rem/1.2 var(--serif);
}

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

.completion-grid article {
  border-top-color: var(--water);
}

.completion-grid span {
  display: block;
  margin-bottom: 1rem;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.rhythm-grid article {
  border-top-color: var(--terracotta);
  background: var(--paper);
}

.rhythm-grid strong {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--terracotta);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-dark-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
  color: white;
  background: var(--forest);
}

.detail-dark-panel h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.detail-dark-panel > div:last-child > p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.course-fees {
  background: var(--cream);
}

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

.fee-grid article {
  min-height: 290px;
  padding: clamp(1.8rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--moss);
  background: var(--paper);
}

.fee-grid .fee-featured {
  color: white;
  border-top-color: var(--terracotta);
  background: var(--forest);
}

.fee-label {
  margin-bottom: 2rem;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fee-featured .fee-label {
  color: #eef2bd;
}

.fee-price {
  margin: 0 0 1.6rem;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.9;
}

.fee-price span {
  margin-right: 0.15em;
  font-size: 0.42em;
  vertical-align: top;
}

.fee-grid article > p:last-child {
  margin-top: auto;
  margin-bottom: 0;
  color: #46564d;
}

.fee-featured .fee-price,
.fee-featured > p:last-child {
  color: white;
}

.fee-details {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
}

.fee-details > div,
.fee-details > aside {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.fee-details > div {
  color: white;
  background: var(--forest);
}

.fee-details > aside {
  border: 1px solid var(--line);
  background: var(--paper);
}

.fee-details h3 {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.fee-details > div h3 {
  color: white;
}

.plain-list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: #46564d;
}

.plain-list li {
  margin-bottom: 0.65rem;
}

.fee-note {
  margin: 1.25rem 0 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--terracotta);
  color: #46564d;
  background: var(--paper);
}

.route-curriculum .text-link {
  display: inline-block;
  margin-top: 2rem;
}

.curriculum-bands article {
  min-height: 210px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.curriculum-bands article:last-child {
  color: white;
  background: var(--terracotta);
}

.curriculum-bands article:last-child span,
.curriculum-bands article:last-child h3 {
  color: white;
}

.preparation {
  background: var(--cream);
}

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

.preparation-grid article {
  border-top-color: var(--water);
  background: var(--paper);
}

.route-faq {
  border-top: 1px solid var(--line);
}

.route-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  color: white;
  background: var(--terracotta);
}

.route-cta h2 {
  max-width: 850px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
}

.route-cta p:not(.eyebrow) {
  max-width: 740px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.decision-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.decision-panel h2 {
  margin-bottom: 0;
}

.decision-panel > div:last-child {
  align-self: center;
}

.decision-panel > div:last-child p {
  color: #46564d;
}

.policy-hero {
  padding: clamp(6rem, 12vw, 10rem) max(40px, calc((100vw - 1180px) / 2));
  background: linear-gradient(132deg, var(--paper) 0 68%, var(--cream) 68%);
}

.policy-hero h1 {
  max-width: 900px;
}

.policy-hero > p:not(.eyebrow) {
  max-width: 760px;
  color: #46564d;
  font-size: 1.1rem;
  line-height: 1.7;
}

.policy-updated {
  margin-top: 2rem;
  font-size: 0.82rem !important;
  font-weight: 800;
}

.policy-navigation {
  padding: 1rem max(40px, calc((100vw - 1180px) / 2));
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--forest);
}

.policy-navigation a {
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.policy-layout {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.policy-layout > aside {
  position: sticky;
  top: 110px;
  padding: 1.5rem;
  border-left: 3px solid var(--terracotta);
  background: var(--cream);
}

.policy-layout > aside .eyebrow {
  margin-top: 0;
}

.policy-content {
  display: grid;
  gap: 3.5rem;
}

.policy-content section {
  scroll-margin-top: 110px;
}

.policy-content h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.policy-content h3 {
  margin: 1.6rem 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.policy-content p,
.policy-content li {
  color: #46564d;
  line-height: 1.75;
}

.policy-content a {
  color: var(--terracotta);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    background: linear-gradient(150deg, var(--paper) 0 68%, var(--cream) 68%);
  }

  .hero-visual {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
  }

  .programme-grid,
  .route-grid,
  .split-heading,
  .experience-panel,
  .faq,
  .enquiry,
  .tutor-hero,
  .course-detail-hero,
  .detail-dark-panel,
  .fee-details,
  .route-cta,
  .route-availability,
  .decision-panel,
  .policy-layout,
  .tutor-intro-grid,
  .philosophy-panel,
  .tutor-lab-grid {
    grid-template-columns: 1fr;
  }

  .tutor-hero-mark {
    width: min(520px, 88%);
  }

  .credential-grid {
    grid-template-columns: 1fr;
  }

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

  .module-feature {
    grid-column: span 2;
  }

  .experience-copy {
    order: -1;
  }

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

  .method-grid,
  .rhythm-grid,
  .curriculum-bands,
  .workload-grid,
  .completion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .policy-layout > aside {
    position: static;
  }

  .course-detail-hero {
    min-height: auto;
  }

  .detail-summary-card,
  .detail-landscape {
    width: min(680px, 100%);
  }

  .route-cta {
    align-items: start;
  }

  .faq .section-heading {
    margin-bottom: 0;
  }

  .hybrid-note {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .learning-zone-hero,
  .hybrid-learning-zone {
    grid-template-columns: 1fr;
  }

  .learning-pathway-grid {
    grid-template-columns: 1fr;
  }

  .learning-cycle-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    width: min(100% - 28px, 1180px);
    height: 70px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .route-availability {
    padding-inline: 24px;
  }

  .workload-grid,
  .service-grid,
  .completion-grid {
    grid-template-columns: 1fr;
  }

  .policy-navigation {
    padding-inline: 24px;
    gap: 0.8rem 1.1rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    padding: 1.5rem 22px 2rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.35rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 30px rgba(25, 48, 38, 0.1);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    text-align: left;
  }

  .site-nav > a {
    display: flex;
    align-items: center;
  }

  .site-nav > .button {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    padding: 0 0 0.6rem 0.7rem;
    border: 0;
    box-shadow: none;
  }

  .account-menu {
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
  }

  .account-menu-toggle {
    width: 100%;
    justify-content: flex-start;
  }

  .account-menu-panel {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
  }

  .hero,
  .section,
  .tutor-hero {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .tutor-hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .course-detail-hero {
    padding: 70px 22px 90px;
  }

  .learning-zone-hero {
    min-height: auto;
    padding: 70px 22px 90px;
  }

  .learning-cycle-list {
    grid-template-columns: 1fr;
  }

  .detail-facts {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.4rem;
  }

  .tutor-hero-mark p {
    right: -1rem;
    bottom: -1rem;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.3rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-facts {
    gap: 1.2rem;
    justify-content: space-between;
  }

  .hero-facts div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .hero-facts span {
    font-size: 0.62rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-note {
    right: 0;
    bottom: 0;
  }

  .sun-mark {
    width: 100px;
    height: 100px;
  }

  .ethics-bar {
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .ethics-symbol {
    font-size: 0.6rem;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-heading {
    margin-bottom: 2.8rem;
  }

  .section-heading h2,
  .experience-copy h2,
  .enquiry h2,
  .philosophy-panel h2,
  .tutor-lab-grid h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .credential-grid article {
    min-height: auto;
  }

  .credential-grid h3 {
    margin-top: 2.5rem;
  }

  .philosophy-panel {
    padding: 70px 22px;
  }

  .lab-photo {
    min-height: 360px;
    box-shadow: 10px 10px 0 var(--cream);
  }

  .lab-photo img {
    height: 360px;
  }

  .course-card {
    box-shadow: 12px 12px 0 var(--moss);
  }

  .module-grid {
    grid-template-columns: 1fr;
  }

  .module-feature {
    grid-column: auto;
  }

  .module-grid article {
    min-height: 230px;
  }

  .experience {
    padding-right: 0;
    padding-left: 0;
  }

  .experience-copy {
    padding: 70px 22px;
  }

  .landscape-art {
    min-height: 480px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .rhythm-grid,
  .fee-grid,
  .curriculum-bands,
  .preparation-grid {
    grid-template-columns: 1fr;
  }

  .detail-landscape,
  .detail-landscape img {
    min-height: 400px;
    height: 400px;
  }

  .outcome-icon {
    margin-bottom: 1.5rem;
  }

  .quote-section {
    padding-top: 20px;
  }

  .interest-form {
    padding: 1.5rem;
  }

  .site-footer {
    padding: 45px 22px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .connected-sites {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .connected-sites span {
    width: 100%;
  }

  .copyright {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
