:root {
  --red: #b8121d;
  --red-dark: #8f0d16;
  --black: #111111;
  --charcoal: #1d1f1f;
  --cream: #f4efe7;
  --cream-light: #faf7f1;
  --sand: #e8dfd2;
  --white: #ffffff;
  --muted: #6a6259;

  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;

  --max-width: 1440px;
  --content-width: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--cream-light);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

a:hover,
a:focus {
  color: var(--red);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 999;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  left: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.9rem 1.4rem;
  border: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus {
  background: var(--red-dark);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--red);
}

.button-light:hover,
.button-light:focus {
  background: var(--black);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus {
  color: var(--black);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.1rem;
  color: var(--red-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 48px;
  height: 2px;
  background: currentColor;
}

.eyebrow.centred {
  justify-content: center;
}

.red-rule {
  width: 60px;
  height: 4px;
  margin: 1.2rem 0 1.4rem;
  background: var(--red);
}

/* Header */

.site-header {
  position: relative;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.top-header {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  width: min(250px, 48vw);
  max-height: 86px;
  object-fit: contain;
}

.top-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.3rem;
}

.appointment-note {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.social-links,
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.social-links a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  font-weight: 800;
}

.main-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.main-nav ul {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.2rem);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0;
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--red);
}

.search-link {
  font-size: 1.35rem !important;
}

/* Hero */

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.62) 32%,
      rgba(0, 0, 0, 0.18) 70%,
      rgba(0, 0, 0, 0.12) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 7rem 1.5rem 5.5rem;
  color: var(--white);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.04;
  font-weight: 500;
}

.hero p {
  max-width: 520px;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-button {
  margin-top: 2rem;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.1rem !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Feature grid */

.feature-grid {
  max-width: var(--content-width);
  margin: 1.2rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.feature-card {
  min-height: 340px;
  background: var(--cream);
  overflow: hidden;
}

.image-card img,
.image-panel img,
.governance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-card {
  padding: clamp(2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-card h2,
.story-panel h2,
.governance-section h2,
.support-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
}

.text-card h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.text-card p:not(.eyebrow) {
  margin: 1.4rem 0 1.8rem;
  color: #34302d;
}

/* Story grid */

.story-grid {
  max-width: var(--content-width);
  margin: 1.2rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: 0;
}

.story-panel {
  min-height: 430px;
}

.text-panel {
  padding: clamp(2rem, 4vw, 3.6rem);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-panel h2 {
  max-width: 500px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.story-panel p:not(.eyebrow) {
  max-width: 510px;
  margin: 1.4rem 0 2rem;
  color: #34302d;
}

.image-panel {
  overflow: hidden;
}

/* Governance */

.governance-section {
  max-width: var(--content-width);
  margin: 2rem auto 0;
  padding: 0 1.5rem 1.2rem;
  text-align: center;
}

.governance-section h2 {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
}

.governance-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr 0.9fr;
  gap: 1rem;
  text-align: left;
}

.governance-image,
.governance-card {
  min-height: 260px;
  background: var(--cream);
  overflow: hidden;
}

.governance-card {
  padding: clamp(1.8rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.governance-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 500;
}

.governance-card p {
  margin: 1rem 0 1.5rem;
  color: #34302d;
}

/* Support band */

.support-band {
  margin-top: 1.2rem;
  padding: 2.4rem max(1.5rem, calc((100vw - var(--content-width)) / 2));
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 2rem;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(184, 18, 29, 0.95), rgba(184, 18, 29, 0.95)),
    var(--red);
}

.support-copy {
  padding-left: 1.5rem;
}

.support-copy h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.support-copy p {
  max-width: 500px;
  margin: 0.8rem 0 1.5rem;
  font-weight: 600;
}

.support-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.support-values article {
  padding: 1rem;
}

.support-icon {
  margin-bottom: 0.7rem;
  font-size: 2.4rem;
  line-height: 1;
}

.support-values h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
  font-weight: 500;
}

/* Footer */

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
    var(--charcoal);
}

.footer-grid {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.8fr repeat(5, 1fr);
  gap: 2rem;
}

.footer-logo {
  width: 210px;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.footer-brand address {
  margin: 0 0 1rem;
  font-style: normal;
}

.footer-brand p {
  margin: 0 0 1rem;
}

.site-footer h2 {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.55rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 1.3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

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

/* Responsive */

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .story-panel {
    min-height: auto;
  }

  .image-panel {
    min-height: 360px;
  }

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

  .support-band {
    grid-template-columns: 1fr;
  }

  .support-copy {
    padding-left: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  .top-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .main-nav ul {
    justify-content: flex-start;
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .main-nav a {
    padding: 0.35rem 0;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding-top: 5rem;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .feature-grid,
  .governance-grid,
  .support-values,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .governance-image,
  .governance-card {
    min-height: auto;
  }

  .image-card,
  .governance-image {
    min-height: 260px;
  }

  .text-card,
  .text-panel,
  .governance-card {
    padding: 2rem;
  }

  .support-band {
    padding: 2.2rem 1.5rem;
  }

  .support-values {
    gap: 0.5rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .appointment-note {
    white-space: normal;
  }

  .site-logo {
    width: 220px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.68);
  }

  .top-header-actions .button {
    width: 100%;
  }
}
/* =========================================================
   Interior / Visit Page Layout
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.62) 42%,
      rgba(0, 0, 0, 0.18) 100%
    );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 7rem 1.5rem 6rem;
  color: var(--white);
}

.page-hero-content .eyebrow {
  color: var(--white);
}

.page-hero-content h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.05;
  font-weight: 500;
}

.page-hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
  font-weight: 600;
}


/* Main visit introduction */

.visit-intro {
  max-width: var(--content-width);
  margin: 1.2rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 1.2rem;
}

.visit-intro-copy,
.visit-info-card,
.visit-feature-card {
  background: var(--cream);
}

.visit-intro-copy {
  padding: clamp(2.4rem, 5vw, 4.5rem);
}

.visit-intro-copy h2,
.visit-steps-section h2,
.visit-feature-card h2,
.visit-request-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
}

.visit-intro-copy h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.visit-intro-copy p:not(.eyebrow) {
  max-width: 850px;
  margin: 1.35rem 0;
  color: #34302d;
}

.visit-intro-copy .button {
  margin-top: 1rem;
}


/* Visit information card */

.visit-info-card {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid var(--red);
}

.visit-info-card h2 {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
}

.visit-info-card dl {
  margin: 0;
}

.visit-info-card div {
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.visit-info-card div:first-child {
  border-top: 0;
  padding-top: 0;
}

.visit-info-card dt {
  margin-bottom: 0.25rem;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-info-card dd {
  margin: 0;
  color: #34302d;
}

.visit-info-card a {
  color: var(--red-dark);
  font-weight: 700;
}


/* Visit steps */

.visit-steps-section {
  max-width: var(--content-width);
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  text-align: center;
}

.visit-steps-section h2 {
  max-width: 840px;
  margin: 0 auto 2rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.visit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  text-align: left;
}

.visit-steps article {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border-top: 5px solid var(--red);
}

.step-number {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--red);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.visit-steps h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.15;
}

.visit-steps p {
  margin: 1rem 0 0;
  color: #34302d;
}


/* Types of visits */

.visit-feature-grid {
  max-width: var(--content-width);
  margin: 1.2rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.visit-feature-card {
  min-height: 330px;
  padding: clamp(2rem, 4vw, 3rem);
}

.visit-feature-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.visit-feature-card p:not(.eyebrow) {
  margin: 1.3rem 0 0;
  color: #34302d;
}


/* Final call-to-action */

.visit-request-band {
  max-width: var(--content-width);
  margin: 1.2rem auto;
  padding: clamp(2.4rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
  background: var(--red);
}

.visit-request-band .eyebrow {
  color: var(--white);
}

.visit-request-band h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.visit-request-band p:not(.eyebrow) {
  max-width: 760px;
  margin: 1rem 0 0;
  font-weight: 600;
}

.visit-request-band .button {
  flex: 0 0 auto;
}


/* Active navigation */

.main-nav a[aria-current="page"] {
  color: var(--red);
}


/* Responsive visit page */

@media (max-width: 1000px) {
  .visit-intro,
  .visit-steps,
  .visit-feature-grid {
    grid-template-columns: 1fr;
  }

  .visit-info-card {
    border-left: 0;
    border-top: 5px solid var(--red);
  }

  .visit-request-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .page-hero {
    min-height: 430px;
  }

  .page-hero-content {
    padding: 4.5rem 1.5rem 4rem;
  }

  .visit-intro-copy,
  .visit-info-card,
  .visit-steps article,
  .visit-feature-card,
  .visit-request-band {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .page-hero-content h1 {
    font-size: 2.45rem;
  }

  .page-hero-overlay {
    background: rgba(0, 0, 0, 0.68);
  }
}
.construction-banner {
  width: 100%;
  padding: 0.7rem 1rem;
  background: #ffd84d;
  color: #111111;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  z-index: 9999;
}
