:root {
  --green-950: #17372c;
  --green-900: #20483a;
  --green-800: #2c5b49;
  --green-700: #39705a;
  --green-600: #4c826b;
  --green-500: #6d9b7d;
  --green-200: #cddfcf;
  --green-100: #e7efe5;
  --green-50: #f2f6ef;

  --cream: #fbf8f0;
  --cream-dark: #f2ebdc;
  --white: #ffffff;

  --gold: #d8a856;
  --gold-soft: #f2dfb7;

  --text: #26372f;
  --muted: #68756d;

  --shadow:
    0 20px 60px rgba(31, 67, 53, 0.10);

  --shadow-small:
    0 10px 30px rgba(31, 67, 53, 0.08);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;

  --max-width: 1180px;
}


/* =========================================
   RESET
   ========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}


/* =========================================
   HEADER / NAVIGATION
   ========================================= */

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;

  width: 100%;

  background:
    rgba(251, 248, 240, 0.92);

  border-bottom:
    1px solid rgba(44, 91, 73, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
  width:
    min(calc(100% - 40px), var(--max-width));

  min-height: 82px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      var(--green-100),
      #ffffff
    );

  box-shadow:
    inset 0 0 0 1px rgba(44, 91, 73, 0.08);

  font-size: 23px;
}

.brand-copy {
  display: flex;
  flex-direction: column;

  line-height: 1.1;
}

.brand-copy strong {
  color: var(--green-900);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 20px;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 5px;

  color: var(--green-600);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;

  color: #45574e;

  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:not(.nav-tour) {
  position: relative;
}

.site-nav > a:not(.nav-tour)::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  border-radius: 999px;

  background: var(--green-600);

  transition: width 180ms ease;
}

.site-nav > a:not(.nav-tour):hover::after {
  width: 100%;
}

.nav-tour {
  padding: 12px 18px;

  border-radius: 999px;

  background: var(--green-800);
  color: white;

  box-shadow:
    0 8px 20px rgba(44, 91, 73, 0.18);

  transition:
    transform 180ms ease,
    background 180ms ease;
}

.nav-tour:hover {
  transform: translateY(-2px);
  background: var(--green-900);
}

.menu-button {
  display: none;

  width: 45px;
  height: 45px;

  padding: 10px;

  border: 0;
  border-radius: 14px;

  background: var(--green-100);

  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  border-radius: 99px;

  background: var(--green-900);

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-button.active span:nth-child(1) {
  transform:
    translateY(7px)
    rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:nth-child(3) {
  transform:
    translateY(-7px)
    rotate(-45deg);
}


/* =========================================
   TYPOGRAPHY
   ========================================= */

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;

  color: var(--green-700);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: var(--gold-soft);
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.section-heading h2,
.care-copy h2,
.why-copy h2,
.tour-copy h2 {
  margin:
    15px 0 18px;

  color: var(--green-950);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(38px, 5vw, 58px);

  font-weight: 600;

  line-height: 1.04;
  letter-spacing: -0.035em;
}

.section-heading h2 em,
.care-copy h2 em,
.why-copy h2 em {
  display: block;

  color: var(--green-600);

  font-weight: 400;
}

.section-heading p,
.care-copy > p,
.why-copy > p,
.tour-copy > p {
  margin: 0;

  color: var(--muted);

  font-size: 17px;
  line-height: 1.8;
}


/* =========================================
   BUTTONS
   ========================================= */

.button {
  min-height: 52px;

  padding: 14px 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 800;

  text-align: center;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--green-800);
  color: white;

  box-shadow:
    0 12px 28px rgba(44, 91, 73, 0.20);
}

.button-primary:hover {
  background: var(--green-900);
}

.button-secondary {
  border:
    1px solid rgba(44, 91, 73, 0.18);

  background:
    rgba(255, 255, 255, 0.62);

  color: var(--green-800);
}

.button-white {
  background: white;
  color: var(--green-900);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.12);
}


/* =========================================
   HERO
   ========================================= */

.hero {
  position: relative;
  overflow: hidden;

  min-height: 690px;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(205, 223, 207, 0.7),
      transparent 30%
    ),
    radial-gradient(
      circle at 4% 90%,
      rgba(242, 223, 183, 0.55),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #fbf8f0 0%,
      #f5f3e8 52%,
      #edf4e9 100%
    );
}

.hero::after {
  content: "";

  position: absolute;
  right: -180px;
  top: 80px;

  width: 500px;
  height: 500px;

  border:
    1px solid rgba(76, 130, 107, 0.12);

  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;

  width:
    min(calc(100% - 40px), var(--max-width));

  min-height: 690px;

  margin: 0 auto;

  padding:
    70px 0 80px;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(420px, 0.88fr);

  align-items: center;

  gap: 70px;
}

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

.eyebrow {
  margin-bottom: 22px;

  padding: 8px 13px;

  border:
    1px solid rgba(76, 130, 107, 0.13);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.62);

  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;

  color: var(--green-950);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(48px, 6.3vw, 77px);

  font-weight: 600;

  line-height: 0.99;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;

  margin-top: 9px;

  color: var(--green-600);

  font-style: italic;
  font-weight: 400;
}

.hero-intro {
  max-width: 600px;

  margin:
    27px 0 0;

  color: #596960;

  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 30px;

  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}

.hero-highlights {
  margin-top: 43px;

  display: grid;
  grid-template-columns:
    repeat(3, 1fr);

  max-width: 610px;

  border-top:
    1px solid rgba(44, 91, 73, 0.13);

  padding-top: 24px;
}

.hero-highlights > div {
  padding:
    0 17px;

  border-right:
    1px solid rgba(44, 91, 73, 0.12);
}

.hero-highlights > div:first-child {
  padding-left: 0;
}

.hero-highlights > div:last-child {
  border-right: 0;
}

.hero-highlights strong,
.hero-highlights span {
  display: block;
}

.hero-highlights strong {
  color: var(--green-900);

  font-size: 14px;
}

.hero-highlights span {
  margin-top: 3px;

  color: var(--muted);

  font-size: 12px;
}

.hero-visual {
  position: relative;

  min-height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  position: relative;
  overflow: hidden;

  width: 100%;
  min-height: 500px;

  padding: 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border:
    10px solid rgba(255, 255, 255, 0.72);

  border-radius:
    46% 54% 47% 53% /
    55% 43% 57% 45%;

  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(255,255,255,0.8),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #dce9d8,
      #f4e6c8
    );

  box-shadow:
    0 30px 80px rgba(36, 73, 58, 0.16);

  text-align: center;
}

.hero-image-placeholder::before,
.care-image-placeholder::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.25;

  background-image:
    radial-gradient(
      rgba(44, 91, 73, 0.3) 1px,
      transparent 1px
    );

  background-size: 18px 18px;
}

.placeholder-icon {
  position: relative;

  margin-bottom: 15px;

  font-size: 100px;
}

.hero-image-placeholder strong,
.hero-image-placeholder span {
  position: relative;
}

.hero-image-placeholder strong {
  color: var(--green-900);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 28px;
}

.hero-image-placeholder span {
  margin-top: 5px;

  color: var(--green-700);
}

.floating-card {
  position: absolute;

  padding: 13px 16px;

  display: flex;
  align-items: center;

  gap: 11px;

  border:
    1px solid rgba(44, 91, 73, 0.08);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 15px 40px rgba(31, 67, 53, 0.13);

  backdrop-filter: blur(10px);
}

.floating-card > span {
  font-size: 25px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: var(--green-900);

  font-size: 13px;
}

.floating-card small {
  margin-top: 2px;

  color: var(--muted);

  font-size: 10px;
}

.floating-card-one {
  left: -28px;
  top: 90px;
}

.floating-card-two {
  right: -25px;
  bottom: 75px;
}

.hero-decoration {
  position: absolute;

  z-index: 1;

  opacity: 0.16;

  pointer-events: none;
}

.hero-leaf-one {
  left: 2%;
  bottom: 3%;

  transform: rotate(-25deg);

  font-size: 90px;
}

.hero-leaf-two {
  right: 3%;
  top: 5%;

  transform: rotate(18deg);

  font-size: 80px;
}


/* =========================================
   WELCOME / FEATURES
   ========================================= */

.welcome-section {
  padding:
    105px 20px 115px;

  background: white;
}

.feature-grid {
  width:
    min(100%, var(--max-width));

  margin:
    55px auto 0;

  display: grid;
  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}

.feature-card {
  min-height: 280px;

  padding: 30px 26px;

  border:
    1px solid rgba(44, 91, 73, 0.09);

  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      155deg,
      #ffffff,
      #f8faf5
    );

  box-shadow: var(--shadow-small);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow);
}

.feature-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border-radius: 18px;

  background: var(--green-100);

  font-size: 27px;
}

.feature-card h3 {
  margin:
    0 0 11px;

  color: var(--green-900);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 21px;
}

.feature-card p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.75;
}


/* =========================================
   CARE SECTION
   ========================================= */

.care-section {
  padding:
    105px 20px;

  background: var(--green-50);
}

.care-inner {
  width:
    min(100%, var(--max-width));

  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1fr);

  align-items: center;

  gap: 85px;
}

.care-visual {
  position: relative;
}

.care-image-placeholder {
  position: relative;
  overflow: hidden;

  min-height: 560px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius:
    45px 130px 45px 45px;

  background:
    linear-gradient(
      145deg,
      #d6e5d4,
      #f2dfb7
    );

  box-shadow: var(--shadow);
}

.care-image-placeholder span,
.care-image-placeholder strong {
  position: relative;
}

.care-image-placeholder span {
  font-size: 90px;
}

.care-image-placeholder strong {
  margin-top: 15px;

  color: var(--green-900);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 27px;
}

.care-points {
  margin-top: 32px;

  display: grid;

  gap: 15px;
}

.care-points > div {
  padding:
    15px 17px;

  display: flex;
  align-items: flex-start;

  gap: 14px;

  border:
    1px solid rgba(44, 91, 73, 0.08);

  border-radius: 17px;

  background:
    rgba(255, 255, 255, 0.72);
}

.care-points > div > span {
  flex: 0 0 auto;

  width: 29px;
  height: 29px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--green-700);
  color: white;

  font-size: 13px;
  font-weight: 900;
}

.care-points p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
}

.care-points strong {
  display: block;

  margin-bottom: 2px;

  color: var(--green-900);

  font-size: 14px;
}


/* =========================================
   CURRICULUM
   ========================================= */

.curriculum-section {
  padding:
    110px 20px;

  background: white;
}

.curriculum-grid {
  width:
    min(100%, var(--max-width));

  margin:
    55px auto 0;

  display: grid;
  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.curriculum-grid article {
  padding: 28px;

  border:
    1px solid rgba(44, 91, 73, 0.08);

  border-radius: 22px;

  background: var(--cream);

  transition:
    transform 180ms ease,
    background 180ms ease;
}

.curriculum-grid article:hover {
  transform: translateY(-4px);

  background: var(--green-50);
}

.curriculum-grid article > span {
  font-size: 32px;
}

.curriculum-grid h3 {
  margin:
    15px 0 8px;

  color: var(--green-900);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 21px;
}

.curriculum-grid p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
}


/* =========================================
   WHY SECTION
   ========================================= */

.why-section {
  padding:
    105px 20px;

  background:
    linear-gradient(
      145deg,
      var(--green-950),
      var(--green-800)
    );

  color: white;
}

.why-inner {
  width:
    min(100%, var(--max-width));

  margin: 0 auto;

  display: grid;
  grid-template-columns:
    0.9fr 1.1fr;

  gap: 90px;
}

.why-copy h2 {
  color: white;
}

.why-copy h2 em {
  color: var(--gold-soft);
}

.why-copy > p {
  color:
    rgba(255, 255, 255, 0.72);
}

.why-list {
  display: grid;

  gap: 13px;
}

.why-list > div {
  padding:
    20px;

  display: flex;
  align-items: center;

  gap: 18px;

  border:
    1px solid rgba(255,255,255,0.10);

  border-radius: 19px;

  background:
    rgba(255,255,255,0.06);
}

.why-list > div > span {
  color: var(--gold-soft);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 24px;
}

.why-list p {
  margin: 0;

  color:
    rgba(255,255,255,0.72);

  font-size: 13px;
}

.why-list strong {
  display: block;

  margin-bottom: 3px;

  color: white;

  font-size: 15px;
}


/* =========================================
   GALLERY
   ========================================= */

.gallery-section {
  padding:
    110px 20px;

  background: var(--cream);
}

.gallery-grid {
  width:
    min(100%, var(--max-width));

  margin:
    55px auto 0;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  grid-auto-rows: 220px;

  gap: 15px;
}

.gallery-placeholder {
  position: relative;
  overflow: hidden;

  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      var(--green-100),
      #f1e5c9
    );

  text-align: center;
}

.gallery-placeholder:nth-child(3) {
  background:
    linear-gradient(
      145deg,
      #f2e5cc,
      #e5efdF
    );
}

.gallery-placeholder:nth-child(4) {
  background:
    linear-gradient(
      145deg,
      #e1ecdd,
      #d7e6d6
    );
}

.gallery-placeholder:nth-child(5) {
  background:
    linear-gradient(
      145deg,
      #f4e4ce,
      #e7eedf
    );
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-placeholder span {
  font-size: 48px;
}

.gallery-large span {
  font-size: 90px;
}

.gallery-placeholder strong {
  margin-top: 12px;

  color: var(--green-900);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 18px;
}

.gallery-large strong {
  font-size: 28px;
}


/* =========================================
   CONTACT / TOUR
   ========================================= */

.tour-section {
  padding:
    80px 20px;

  background: white;
}

.tour-card {
  width:
    min(100%, var(--max-width));

  margin: 0 auto;

  padding:
    58px;

  display: grid;
  grid-template-columns:
    1fr 0.8fr;

  align-items: center;

  gap: 70px;

  border-radius: 35px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(255,255,255,0.12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--green-800),
      var(--green-950)
    );

  box-shadow:
    0 30px 80px rgba(31, 67, 53, 0.18);
}

.tour-copy h2 {
  color: white;
}

.tour-copy > p {
  margin-bottom: 27px;

  color:
    rgba(255,255,255,0.74);
}

.contact-details {
  display: grid;

  gap: 12px;
}

.contact-details > a,
.contact-details > div {
  padding:
    17px 18px;

  display: flex;
  align-items: center;

  gap: 15px;

  border:
    1px solid rgba(255,255,255,0.10);

  border-radius: 18px;

  background:
    rgba(255,255,255,0.07);

  color: white;
}

.contact-details > a > span,
.contact-details > div > span {
  font-size: 24px;
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  margin-bottom: 3px;

  color:
    rgba(255,255,255,0.55);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.13em;
}

.contact-details strong {
  font-size: 14px;

  overflow-wrap: anywhere;
}


/* =========================================
   SOCIAL
   ========================================= */

.social-section {
  padding:
    90px 20px 100px;

  background: var(--green-50);

  text-align: center;
}

.social-section h2 {
  margin:
    10px 0;

  color: var(--green-950);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(34px, 4vw, 48px);
}

.social-section p {
  max-width: 620px;

  margin:
    0 auto;

  color: var(--muted);
}

.social-buttons {
  margin-top: 27px;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 12px;
}

.social-button {
  min-width: 155px;

  padding:
    13px 19px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  border:
    1px solid rgba(44, 91, 73, 0.10);

  border-radius: 999px;

  background: white;

  color: var(--green-900);

  box-shadow: var(--shadow-small);

  font-size: 14px;
  font-weight: 800;

  transition: transform 180ms ease;
}

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

.social-button span {
  font-size: 21px;
}


/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  padding:
    55px 20px 120px;

  background: var(--green-950);
  color: white;

  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 12px;
}

.footer-brand > span {
  font-size: 35px;
}

.footer-brand strong,
.footer-brand small {
  display: block;

  text-align: left;
}

.footer-brand strong {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 18px;
}

.footer-brand small {
  color:
    rgba(255,255,255,0.55);

  font-size: 11px;
}

.site-footer > p {
  margin:
    20px auto;

  color:
    rgba(255,255,255,0.63);

  font-size: 13px;
}

.copyright {
  color:
    rgba(255,255,255,0.42);

  font-size: 11px;
}


/* =========================================
   MOBILE TEXT CTA
   ========================================= */

.mobile-text-button {
  display: none;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

  .site-nav {
    gap: 15px;
  }

  .site-nav > a:not(.nav-tour) {
    display: none;
  }

  .hero-inner {
    grid-template-columns:
      1fr 0.8fr;

    gap: 35px;
  }

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

  .care-inner {
    gap: 50px;
  }

  .why-inner {
    gap: 50px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 760px) {

  html {
    scroll-padding-top: 78px;
  }

  .nav-wrap {
    width:
      min(calc(100% - 28px), var(--max-width));

    min-height: 72px;
  }

  .brand-mark {
    width: 41px;
    height: 41px;

    font-size: 20px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;

    top: 72px;
    left: 14px;
    right: 14px;

    max-height:
      calc(100vh - 95px);

    padding: 17px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 3px;

    overflow-y: auto;

    border:
      1px solid rgba(44, 91, 73, 0.10);

    border-radius: 20px;

    background:
      rgba(255, 255, 255, 0.98);

    box-shadow:
      0 25px 70px rgba(31, 67, 53, 0.18);
  }

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

  .site-nav > a:not(.nav-tour) {
    display: block;

    padding: 13px 12px;

    border-radius: 11px;
  }

  .site-nav > a:not(.nav-tour):hover {
    background: var(--green-50);
  }

  .site-nav > a::after {
    display: none;
  }

  .nav-tour {
    margin-top: 7px;

    text-align: center;
  }


  /* HERO */

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    width:
      min(calc(100% - 30px), var(--max-width));

    padding:
      53px 0 65px;

    grid-template-columns: 1fr;

    gap: 45px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    margin-left: auto;
    margin-right: auto;

    font-size: 9px;
  }

  .hero h1 {
    font-size:
      clamp(44px, 13vw, 62px);
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-highlights {
    margin-top: 35px;

    padding-top: 20px;
  }

  .hero-highlights > div {
    padding:
      0 8px;
  }

  .hero-highlights strong {
    font-size: 11px;
  }

  .hero-highlights span {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 400px;

    padding:
      0 13px;
  }

  .hero-image-placeholder {
    min-height: 390px;

    padding: 30px;

    border-width: 7px;
  }

  .placeholder-icon {
    font-size: 75px;
  }

  .hero-image-placeholder strong {
    font-size: 23px;
  }

  .floating-card {
    padding:
      10px 12px;
  }

  .floating-card-one {
    left: 0;
    top: 50px;
  }

  .floating-card-two {
    right: 0;
    bottom: 35px;
  }


  /* GENERAL SECTIONS */

  .welcome-section,
  .care-section,
  .curriculum-section,
  .why-section,
  .gallery-section {
    padding:
      78px 16px;
  }

  .section-heading h2,
  .care-copy h2,
  .why-copy h2,
  .tour-copy h2 {
    font-size:
      clamp(36px, 11vw, 48px);
  }

  .section-heading p,
  .care-copy > p,
  .why-copy > p,
  .tour-copy > p {
    font-size: 15px;
  }


  /* FEATURES */

  .feature-grid {
    margin-top: 38px;

    grid-template-columns: 1fr;

    gap: 13px;
  }

  .feature-card {
    min-height: auto;

    padding: 24px;
  }


  /* CARE */

  .care-inner {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .care-image-placeholder {
    min-height: 390px;

    border-radius:
      30px 85px 30px 30px;
  }

  .care-copy {
    text-align: center;
  }

  .care-points {
    text-align: left;
  }


  /* CURRICULUM */

  .curriculum-grid {
    margin-top: 38px;

    grid-template-columns: 1fr;

    gap: 12px;
  }


  /* WHY */

  .why-inner {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .why-copy {
    text-align: center;
  }


  /* GALLERY */

  .gallery-grid {
    margin-top: 38px;

    grid-template-columns:
      repeat(2, 1fr);

    grid-auto-rows: 180px;

    gap: 10px;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: span 2;
  }


  /* TOUR */

  .tour-section {
    padding:
      60px 14px;
  }

  .tour-card {
    padding:
      38px 22px;

    grid-template-columns: 1fr;

    gap: 38px;

    border-radius: 27px;
  }

  .tour-copy {
    text-align: center;
  }

  .tour-copy .button {
    width: 100%;
  }


  /* SOCIAL */

  .social-section {
    padding:
      75px 16px 90px;
  }


  /* FOOTER */

  .site-footer {
    padding:
      48px 16px 115px;
  }


  /* FIXED CTA */

  .mobile-text-button {
    position: fixed;

    z-index: 950;

    left: 15px;
    right: 15px;

    bottom:
      max(
        14px,
        env(safe-area-inset-bottom)
      );

    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
      1px solid rgba(255,255,255,0.18);

    border-radius: 999px;

    background:
      rgba(32, 72, 58, 0.96);

    color: white;

    box-shadow:
      0 14px 40px rgba(19, 48, 37, 0.28);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    font-size: 14px;
    font-weight: 900;
  }

}


/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 390px) {

  .brand-copy strong {
    font-size: 15px;
  }

  .hero-inner {
    width:
      calc(100% - 24px);
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;

    gap: 13px;
  }

  .hero-highlights > div {
    padding:
      0 0 12px;

    border-right: 0;
    border-bottom:
      1px solid rgba(44, 91, 73, 0.10);
  }

  .hero-highlights > div:last-child {
    padding-bottom: 0;

    border-bottom: 0;
  }

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

  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

}


/* =========================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

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

}
