 :root {
   --ink: #1b1b1b;
   --muted: #5b5f66;
   --accent: #1f5b8f;
   --accent-soft: #e4eef6;
   --sand: #f6f2ec;
   --sage: #e8efea;
   --rose: #f3e9eb;
   --border: #d9dde3;
   --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   display: block;
 }
 
 a {
   color: var(--ink);
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   color: var(--accent);
 }
 
 .site-header {
   padding: 28px 6vw 18px;
   border-bottom: 1px solid var(--border);
   background: #ffffff;
 }
 
 .brand-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .brand-name {
   font-size: 1.4rem;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .brand-tag {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   border: 1px solid var(--border);
   padding: 6px 10px;
   border-radius: 999px;
   background: #ffffff;
 }
 
 .main-nav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 16px;
   font-size: 0.95rem;
 }
 
 .main-nav a {
   padding-bottom: 3px;
   border-bottom: 2px solid transparent;
 }
 
 .main-nav a:hover,
 .main-nav a:focus {
   border-color: var(--accent);
 }
 
 .section {
   padding: 64px 6vw;
 }
 
 .section.alt {
   background: var(--sand);
 }
 
 .section.muted {
   background: var(--sage);
 }
 
 .section.rose {
   background: var(--rose);
 }
 
.section.bg-campus {
  position: relative;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1504384764586-bb4cdc1707b0?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.bg-campus::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 30, 0.65);
}

.section.bg-campus .split,
.section.bg-campus .content,
.section.bg-campus .section-title,
.section.bg-campus .lead,
.section.bg-campus .pill {
  position: relative;
  z-index: 1;
}

.section.bg-campus .pill {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.section.bg-campus .link-inline,
.section.bg-campus .button-link {
  color: #ffffff;
}

 .section-title {
   font-size: 2rem;
   margin-bottom: 16px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 0.75rem;
   color: var(--muted);
   margin-bottom: 8px;
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
   justify-content: space-between;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .content,
 .split .media {
   flex: 1 1 0;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
   margin-bottom: 20px;
 }
 
 .button-link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 18px;
   background: var(--accent);
   color: #ffffff;
   border-radius: 6px;
   font-weight: 600;
 }
 
 .button-link:hover,
 .button-link:focus {
   background: #174772;
   color: #ffffff;
 }
 
 .link-inline {
   font-weight: 600;
   color: var(--accent);
 }
 
 .link-inline:hover,
 .link-inline:focus {
   color: #174772;
 }
 
 .img-frame {
   background-color: #e4e8ee;
   border-radius: 18px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
.frame-hero {
  height: 420px;
}

.frame-tall {
  height: 360px;
}

.frame-card {
  height: 200px;
}

 .img-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .card {
   flex: 1 1 240px;
   background: #ffffff;
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .stacked {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .pill {
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--accent-soft);
   color: var(--accent);
   font-weight: 600;
   font-size: 0.9rem;
 }
 
 .form-block {
   background: #ffffff;
   border-radius: 16px;
   padding: 24px;
   border: 1px solid var(--border);
 }
 
 .enquiry-form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 8px;
   border: 1px solid var(--border);
   font-size: 1rem;
   font-family: inherit;
 }
 
 button {
   padding: 12px 16px;
   border-radius: 8px;
   border: none;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   cursor: pointer;
 }
 
 button:hover,
 button:focus {
   background: #174772;
 }
 
 .meta-list {
   display: flex;
   flex-direction: column;
   gap: 8px;
   font-size: 0.95rem;
 }
 
 .footer {
   padding: 40px 6vw;
   border-top: 1px solid var(--border);
   background: #ffffff;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .disclaimer {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: #0f3b63;
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: var(--shadow);
 }
 
 .sticky-cta:hover,
 .sticky-cta:focus {
   background: #0b2d4b;
   color: #ffffff;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   right: 24px;
   bottom: 24px;
   background: #ffffff;
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 16px 20px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   box-shadow: var(--shadow);
   z-index: 10;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .section-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .hero-note {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 @media (max-width: 900px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 
   .site-header,
   .section,
   .footer {
     padding-left: 6vw;
     padding-right: 6vw;
   }
 }
