:root {
  --midnight: #101c27;
  --midnight-soft: #182b39;
  --ink: #17202a;
  --saffron: #d89b41;
  --saffron-light: #efc77c;
  --terracotta: #a94f32;
  --ivory: #f6f0e5;
  --paper: #fbf8f2;
  --line: rgba(23, 32, 42, 0.15);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 5vw, 5.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 220;
  height: 2.2rem;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(7, 15, 22, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  inset: 2.2rem 0 auto;
  z-index: 200;
  height: 6rem;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  transition: background 0.4s, color 0.4s, transform 0.4s;
}

.site-header.is-scrolled {
  position: fixed;
  inset: 0 0 auto;
  height: 4.8rem;
  color: var(--ink);
  background: rgba(251, 248, 242, 0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-self: start;
}

.brand img {
  width: 3rem;
  height: auto;
  background: white;
  padding: 0.2rem;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand small {
  margin-top: 0.25rem;
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.68;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.5vw, 2.7rem);
}

.nav a {
  position: relative;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.45rem;
  height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.nav a:hover {
  opacity: 1;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.is-scrolled .header-cta {
  border-color: var(--ink);
}

.header-cta span {
  color: var(--saffron-light);
  margin-left: 0.5rem;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.5rem 0;
  background: currentColor;
  transition: transform 0.35s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.1rem;
  padding: 6rem var(--pad) 3rem;
  color: var(--ivory);
  background: var(--midnight);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1;
}

.mobile-nav .mobile-nav-cta {
  margin-top: 1.5rem;
  padding: 1rem 1.4rem;
  color: var(--midnight);
  background: var(--saffron-light);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 10rem var(--pad) 8.5rem;
  color: white;
  overflow: hidden;
  background: var(--midnight);
}

.hero-media,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-media img {
  transform: scale(1.04);
  animation: heroDrift 24s var(--ease) infinite alternate;
}

.hero-veil {
  background:
    linear-gradient(90deg, rgba(8, 17, 24, 0.94) 0%, rgba(8, 17, 24, 0.7) 43%, rgba(8, 17, 24, 0.22) 78%),
    linear-gradient(0deg, rgba(8, 17, 24, 0.77) 0%, transparent 48%);
}

.hero-arch {
  position: absolute;
  right: -3vw;
  bottom: -15vh;
  width: min(50vw, 48rem);
  height: 86vh;
  border: 1px solid rgba(239, 199, 124, 0.38);
  border-radius: 50% 50% 0 0;
  box-shadow: 0 0 0 3rem rgba(216, 155, 65, 0.035), 0 0 0 6rem rgba(216, 155, 65, 0.025);
}

@keyframes heroDrift {
  to { transform: scale(1.1) translateX(-1.5%); }
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(56rem, 72vw);
}

.kicker,
.overline {
  margin-bottom: 1.3rem;
  color: var(--saffron-light);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7.9vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.83;
}

.hero h1 em,
h2 em {
  color: var(--saffron-light);
  font-weight: 400;
}

.hero-text {
  max-width: 38rem;
  margin: 2.1rem 0 2.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--saffron);
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-width: 14rem;
  padding: 1.05rem 1.3rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.35s;
}

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

.btn-gold {
  color: #17202a;
  background: var(--saffron-light);
}

.btn-gold:hover {
  background: #f5d99e;
}

.text-link,
.arrow-link {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link span,
.arrow-link span {
  margin-left: 1rem;
  color: var(--saffron-light);
}

.hero-stats {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 2.3rem;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  width: clamp(8.5rem, 13vw, 12rem);
  padding: 1rem 1rem 0;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--saffron-light);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 2.2rem;
  height: 1px;
  background: var(--saffron-light);
}

.reveal-hero {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: rise 1.1s var(--ease) forwards;
}

.reveal-hero:nth-child(1) { animation-delay: 0.15s; }
.reveal-hero:nth-child(2) { animation-delay: 0.3s; }
.reveal-hero:nth-child(3) { animation-delay: 0.45s; }
.reveal-hero:nth-child(4) { animation-delay: 0.6s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--terracotta);
}

.section-label.light {
  color: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.15);
}

.section-label.light span {
  color: var(--saffron-light);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(10rem, 0.4fr) 1.25fr 0.35fr;
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(6rem, 12vw, 11rem) var(--pad);
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(169, 79, 50, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(169, 79, 50, 0.025), 0 0 0 8rem rgba(169, 79, 50, 0.02);
}

.intro-copy h2,
.section-title h2,
.services-head h2,
.visit-copy h2,
.enquire-intro h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.intro-copy h2 em,
.section-title h2 em,
.visit-copy h2 em {
  color: var(--terracotta);
}

.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin: 2.8rem 0 2.2rem;
}

.intro-columns p,
.section-title > p:last-child,
.visit-copy > p,
.enquire-intro > p {
  color: #65707a;
  font-size: 0.95rem;
}

.heritage-mark {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid rgba(169, 79, 50, 0.28);
  border-radius: 50%;
  text-align: center;
}

.heritage-mark span {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--terracotta);
}

.heritage-mark small {
  font-size: 0.48rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.campus-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 48rem;
  color: white;
  background: var(--midnight);
}

.campus-image {
  min-height: 40rem;
  overflow: hidden;
}

.campus-image img {
  filter: saturate(0.7) contrast(1.08);
  transition: transform 1.5s var(--ease);
}

.campus-image:hover img {
  transform: scale(1.035);
}

.campus-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
  background:
    linear-gradient(rgba(239, 199, 124, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 199, 124, 0.06) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.campus-copy::before {
  content: "";
  position: absolute;
  inset: 12% 10% auto auto;
  width: 6rem;
  height: 8rem;
  border: 1px solid rgba(239, 199, 124, 0.35);
  border-radius: 50% 50% 0 0;
}

.campus-copy h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.9;
}

.campus-copy p:not(.overline) {
  max-width: 32rem;
  margin: 2rem 0 3rem;
  color: rgba(255, 255, 255, 0.62);
}

.metric {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.metric strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 500;
  color: var(--saffron-light);
  line-height: 1;
}

.metric span {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
}

.spaces,
.events,
.visit {
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
}

.section-title {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.42fr);
  gap: 2rem 5rem;
  align-items: end;
  max-width: 80rem;
  margin: 4.5rem 0;
}

.section-title .overline {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.space-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 50rem;
}

.space-card {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  color: white;
  background: var(--midnight);
}

.space-card-featured {
  grid-row: 1 / 3;
}

.space-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(8, 17, 24, 0.9) 100%);
}

.space-card img {
  transition: transform 1.2s var(--ease), filter 0.6s;
}

.space-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.1);
}

.space-overlay {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.space-overlay > span {
  color: var(--saffron-light);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.space-overlay h3 {
  margin: 0.45rem 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.space-overlay p {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.space-overlay a {
  display: inline-block;
  margin-top: 1.1rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--saffron-light);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.services {
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
  color: white;
  background:
    radial-gradient(circle at 92% 10%, rgba(216, 155, 65, 0.13), transparent 26rem),
    var(--midnight);
}

.services-head {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.38fr);
  gap: 2rem 6rem;
  align-items: end;
  margin: 4.5rem 0;
}

.services-head .overline {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.services-head > p:last-child {
  color: rgba(255, 255, 255, 0.56);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.services-list article {
  min-height: 16rem;
  padding: 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.35s;
}

.services-list article:hover {
  background: rgba(216, 155, 65, 0.1);
}

.services-list span,
.event-types span {
  color: var(--saffron-light);
  font-size: 0.57rem;
  letter-spacing: 0.15em;
}

.services-list h3,
.event-types h3 {
  margin: 2.3rem 0 0.75rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.05;
}

.services-list p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.btn-outline {
  margin-top: 2.5rem;
  border-color: rgba(255, 255, 255, 0.4);
}

.events {
  background: var(--ivory);
}

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

.event-types article {
  min-height: 15rem;
  padding: 1.8rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s, color 0.35s;
}

.event-types article:hover {
  color: white;
  background: var(--terracotta);
}

.event-types article:hover span {
  color: var(--saffron-light);
}

.event-types p {
  color: #69737c;
  font-size: 0.82rem;
}

.event-types article:hover p {
  color: rgba(255, 255, 255, 0.65);
}

.legacy {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 6rem var(--pad);
  color: white;
  overflow: hidden;
}

.legacy-media,
.legacy-veil {
  position: absolute;
  inset: 0;
}

.legacy-media img {
  filter: saturate(0.55);
}

.legacy-veil {
  background: linear-gradient(90deg, rgba(8, 17, 24, 0.93), rgba(8, 17, 24, 0.45) 62%, rgba(8, 17, 24, 0.18));
}

.legacy-copy {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.legacy-copy h2 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.legacy-copy p:last-child {
  max-width: 36rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.visit {
  background: var(--paper);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 8vw, 8rem);
  margin-top: 4.5rem;
}

.visit-copy > p:not(.overline) {
  max-width: 34rem;
  margin: 2rem 0;
}

.visit-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.visit-facts strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--terracotta);
}

.visit-facts span {
  display: block;
  color: #7a8288;
  font-size: 0.58rem;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.map-card {
  position: relative;
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: white;
  background: var(--midnight-soft);
  overflow: hidden;
}

.map-lines {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(32deg, transparent 42%, var(--saffron-light) 43%, transparent 44%),
    linear-gradient(-24deg, transparent 56%, rgba(255, 255, 255, 0.4) 57%, transparent 58%),
    repeating-radial-gradient(circle at 80% 15%, transparent 0 2.9rem, rgba(255, 255, 255, 0.13) 3rem 3.05rem);
}

.map-pin {
  position: absolute;
  top: 25%;
  right: 24%;
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  color: var(--midnight);
  background: var(--saffron-light);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 1.2rem rgba(239, 199, 124, 0.11);
}

.map-pin span {
  transform: rotate(45deg);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.map-card p,
.map-card a {
  position: relative;
  z-index: 1;
}

.map-card p {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.25;
}

.map-card a {
  width: fit-content;
  margin-top: 1.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--saffron-light);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.enquire {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
  color: white;
  background: var(--terracotta);
}

.enquire-intro h2 em {
  color: var(--saffron-light);
}

.enquire-intro > p {
  max-width: 30rem;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.7);
}

.enquire-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 2rem;
}

.enquire-contact a:first-child {
  font-family: var(--serif);
  font-size: 1.8rem;
}

.enquire-contact a:last-child {
  width: fit-content;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

.enquire-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 1.3rem;
  align-self: start;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--ink);
  background: var(--paper);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--terracotta);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 32, 42, 0.28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  appearance: none;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--terracotta);
}

.enquire-form .btn {
  width: 100%;
  margin-top: 0.5rem;
  border: 0;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  font-size: 0.78rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 5rem var(--pad) 2rem;
  color: white;
  background: #09131c;
}

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

.footer-brand img {
  width: 3.7rem;
  height: auto;
  padding: 0.25rem;
  background: white;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.footer-brand span {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.53rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-nav p {
  margin-bottom: 0.6rem;
  color: var(--saffron-light);
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .topbar p:nth-child(2),
  .nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero-copy {
    width: 85vw;
  }

  .intro {
    grid-template-columns: 0.3fr 1fr;
  }

  .heritage-mark {
    display: none;
  }

  .services-list,
  .event-types {
    grid-template-columns: 1fr 1fr;
  }

  .services-head,
  .section-title {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    height: 2rem;
  }

  .topbar p {
    font-size: 0.48rem;
  }

  .site-header {
    top: 2rem;
    height: 5rem;
  }

  .site-header.is-scrolled {
    top: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    align-items: flex-end;
    min-height: 47rem;
    padding-top: 9rem;
    padding-bottom: 12rem;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-veil {
    background: linear-gradient(0deg, rgba(8, 17, 24, 0.97) 0%, rgba(8, 17, 24, 0.65) 64%, rgba(8, 17, 24, 0.4) 100%);
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .hero-text {
    font-size: 0.88rem;
  }

  .hero-arch {
    width: 70vw;
    height: 55vh;
    right: -20vw;
  }

  .hero-stats {
    right: var(--pad);
    left: var(--pad);
    bottom: 2rem;
    justify-content: space-between;
  }

  .hero-stats div {
    width: 33.333%;
    padding: 0.8rem 0.6rem 0;
  }

  .hero-stats strong {
    font-size: 1.45rem;
  }

  .scroll-cue {
    display: none;
  }

  .intro {
    display: block;
  }

  .intro .section-label {
    margin-bottom: 3rem;
  }

  .intro-columns,
  .campus-band,
  .visit-grid,
  .enquire {
    grid-template-columns: 1fr;
  }

  .intro-columns {
    gap: 1.2rem;
  }

  .campus-image {
    min-height: 28rem;
  }

  .campus-copy {
    padding: 4rem var(--pad);
  }

  .space-grid {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .space-card {
    min-height: 30rem;
  }

  .services-list,
  .event-types {
    grid-template-columns: 1fr;
  }

  .services-list article,
  .event-types article {
    min-height: 12rem;
  }

  .services-head,
  .section-title {
    margin: 3.5rem 0;
  }

  .legacy {
    min-height: 42rem;
  }

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

  .visit-facts {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 28rem;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 450px) {
  .topbar a {
    display: none;
  }

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

  .hero-stats span {
    font-size: 0.43rem;
  }

  .intro-copy h2,
  .section-title h2,
  .services-head h2,
  .visit-copy h2,
  .enquire-intro h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-hero {
    opacity: 1;
    transform: none;
  }
}
