: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: 2rem;
}

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

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

.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%;
}

.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: 0.98;
  letter-spacing: -0.035em;
}

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;
}

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

.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 {
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.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,
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,
textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 2px 0 var(--terracotta);
}

.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);
}

@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,
  .split-heading,
  .experience-panel,
  .faq,
  .enquiry,
  .tutor-hero,
  .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);
  }

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

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

  .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: 1.2rem;
    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;
  }

  .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;
  }

  .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;
  }

  .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;
  }
}
