:root {
  --ink: #202123;
  --muted: #68625d;
  --paper: #fbf8f1;
  --cream: #f1e9dc;
  --white: #fffdf8;
  --charcoal: #171b22;
  --navy: #202b38;
  --brick: #8a3f2d;
  --brick-dark: #5b2d22;
  --brass: #b5894d;
  --sage: #596b5f;
  --line: rgba(32, 33, 35, 0.14);
  --shadow: 0 22px 55px rgba(29, 24, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 238px;
  text-decoration: none;
}

.brand-logo {
  width: 88px;
  height: auto;
  max-height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.desktop-nav {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a {
  text-decoration: none;
}

.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.5rem 1rem;
  border: 1px solid #b8884a;
  border-radius: 2px;
  color: #0e1419 !important;
  background: #b8884a;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.menu-cta:hover,
.menu-cta:focus {
  border-color: #d4a463;
  background: #d4a463;
  transform: translateY(-1px);
}


.mobile-nav {
  position: relative;
  display: none;
  margin-left: auto;
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(91, 45, 34, 0.32);
  border-radius: 999px;
  color: var(--brick-dark);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  margin-left: 8px;
  content: "v";
  font-size: 11px;
}

.mobile-nav[open] summary::after {
  content: "^";
}

.mobile-nav div {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  display: grid;
  min-width: 210px;
  overflow: hidden;
  border: 1px solid rgba(32, 33, 35, 0.14);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(32, 33, 35, 0.08);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--brick-dark);
  background: var(--cream);
}

.mobile-nav .menu-cta {
  margin: 10px;
  color: #0e1419 !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button-dark {
  color: var(--white);
  background: var(--brick-dark);
}

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

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
}

.button-outline-dark {
  color: var(--brick-dark);
  border-color: rgba(91, 45, 34, 0.45);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(620px, 92vh, 820px);
  overflow: hidden;
  color: var(--white);
  background: #141414;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  border: 0;
  transform: translate(-50%, -50%) scale(1.08);
  pointer-events: none;
}
.foundation-photo-bg img {
  object-position: center center;
}
.foundation-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.92), rgba(8, 10, 13, 0.66) 46%, rgba(8, 10, 13, 0.2)),
    linear-gradient(0deg, rgba(8, 10, 13, 0.78), rgba(8, 10, 13, 0.08) 54%);
}

.hero-aca-logo {
  width: clamp(118px, 15vw, 178px);
  height: auto;
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  object-fit: contain;
}

.foundation-hero .eyebrow {
  color: #f1c77d;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.foundation-hero h1 {
  color: #fffdf8;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.78);
}

.foundation-hero .hero-copy {
  max-width: 700px;
  color: rgba(255, 253, 248, 0.94);
  font-weight: 800;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 15, 0.9), rgba(12, 13, 15, 0.58) 48%, rgba(12, 13, 15, 0.24)),
    linear-gradient(0deg, rgba(12, 13, 15, 0.76), rgba(12, 13, 15, 0.08) 48%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(46px, 10vh, 96px) clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--brick);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 86px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.6vw, 58px);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-location {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}



.why-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(17, 19, 22, 0.94), rgba(17, 19, 22, 0.68) 50%, rgba(17, 19, 22, 0.24)),
    linear-gradient(0deg, rgba(17, 19, 22, 0.8), rgba(17, 19, 22, 0.08) 54%);
}

.why-hero .hero-copy,
.why-hero .hero-location {
  max-width: 820px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.why-partnership-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #111316);
}

.why-partnership-section .section-heading h2,
.why-partnership-section .section-heading p {
  color: var(--white);
}

.why-proposal-list {
  max-width: 780px;
}

.why-proposal-list li {
  color: var(--white);
}

.offer-teaser-section {
  background: linear-gradient(135deg, var(--navy), #111316);
}

.offer-teaser-box {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 54px);
  border: 1px solid rgba(181, 137, 77, 0.38);
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(17, 19, 22, 0.9), rgba(17, 19, 22, 0.9)),
    repeating-linear-gradient(45deg, rgba(181, 137, 77, 0.22) 0 2px, transparent 2px 10px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.offer-teaser-box h2 {
  color: var(--white);
}

.offer-teaser-box p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.offer-teaser-box .button {
  margin-top: 14px;
}

.offer-page-section {
  min-height: 100vh;
  padding: clamp(72px, 10vw, 120px) clamp(18px, 7vw, 96px);
  color: #f4efe6;
  background:
    radial-gradient(ellipse at 12% 8%, rgba(184, 136, 74, 0.12) 0%, transparent 46%),
    radial-gradient(ellipse at 90% 88%, rgba(184, 136, 74, 0.08) 0%, transparent 48%),
    #0e1419;
}

.offer-page-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.offer-aca-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: clamp(46px, 7vw, 72px);
  padding: 22px;
  border: 1px solid rgba(184, 136, 74, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.offer-aca-card img {
  width: 150px;
  height: auto;
  padding: 16px;
  object-fit: contain;
  background: #f4efe6;
}

.offer-aca-card p {
  margin: 0;
  color: rgba(244, 239, 230, 0.76);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-style: italic;
}

.offer-aca-card strong,
.offer-kicker {
  display: block;
  color: #d4a463;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-kicker {
  margin: 0 0 18px;
}

.offer-page-section h1 {
  max-width: 900px;
  margin: 0;
  color: #f4efe6;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.98;
}

.offer-page-section h1 span {
  color: #d4a463;
  font-style: italic;
}

.offer-intro {
  max-width: 620px;
  margin: 24px 0 clamp(44px, 7vw, 76px);
  color: rgba(244, 239, 230, 0.76);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(21px, 3vw, 30px);
  font-style: italic;
  line-height: 1.35;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-grid article {
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(184, 136, 74, 0.25);
  background: rgba(255, 255, 255, 0.045);
}

.offer-grid img {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  object-fit: contain;
  background: transparent;
}

.offer-grid h2 {
  color: #f4efe6;
  font-size: clamp(26px, 3vw, 36px);
}

.offer-grid p,
.offer-grid li {
  color: rgba(244, 239, 230, 0.74);
  font-size: 16px;
}

.offer-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.offer-frame {
  margin-top: clamp(44px, 7vw, 72px);
  padding-top: clamp(34px, 5vw, 54px);
  border-top: 1px solid rgba(184, 136, 74, 0.25);
}

.offer-frame p {
  max-width: 760px;
  color: #f4efe6;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(27px, 4vw, 44px);
  font-style: italic;
  line-height: 1.18;
}

.offer-signature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: clamp(44px, 7vw, 72px);
  padding-top: 34px;
  border-top: 1px solid rgba(184, 136, 74, 0.25);
}

.offer-signature img {
  width: 112px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.offer-signature span {
  display: block;
  margin-bottom: 6px;
  color: rgba(244, 239, 230, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.offer-signature strong {
  display: block;
  color: #f4efe6;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
}

.offer-signature p {
  margin: 6px 0 0;
  color: rgba(244, 239, 230, 0.72);
}

.market-hero .hero-media img {
  opacity: 0.72;
  filter: saturate(0.88) contrast(0.96) brightness(0.68);
}

.market-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(17, 19, 22, 0.92), rgba(17, 19, 22, 0.62) 50%, rgba(17, 19, 22, 0.22)),
    linear-gradient(0deg, rgba(17, 19, 22, 0.82), rgba(17, 19, 22, 0.08) 54%);
}

.market-hero-content {
  text-align: left;
}

.market-intro-section {
  background: var(--white);
}

.market-intro-layout,
.market-compare-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.market-intro-layout p,
.market-compare-layout p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.market-texture {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(91, 45, 34, 0.16);
  background: var(--white);
  box-shadow: var(--shadow);
}

.market-texture img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.market-rate-section {
  background: #f8f8f8;
}

.rate-table-wrap {
  width: min(1060px, 100%);
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(38, 29, 23, 0.06);
}

.rate-table-wrap h3 {
  margin: 0;
  padding: 20px 22px;
  border-bottom: 1px solid #e0e0e0;
  background: rgba(241, 233, 220, 0.42);
}

.market-rate-table {
  width: 100%;
  border-collapse: collapse;
}

.market-rate-table th,
.market-rate-table td {
  padding: 18px 22px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: top;
}

.market-rate-table th {
  color: var(--brick-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.market-rate-table tr:last-child td {
  border-bottom: 0;
}

.market-rate-table td:nth-child(2) {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.rate-source {
  width: min(1060px, 100%);
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.market-compare-section {
  background: var(--paper);
}

.market-cta-section {
  position: relative;
  display: grid;
  min-height: 460px;
  overflow: hidden;
  place-items: center start;
  color: var(--white);
  background: var(--charcoal);
}

.market-cta-image {
  position: absolute;
  inset: 0;
}

.market-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  filter: saturate(0.9) brightness(0.72);
}

.market-cta-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 19, 22, 0.9), rgba(17, 19, 22, 0.48), rgba(17, 19, 22, 0.18));
}

.market-cta-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
}

.market-cta-content h2 {
  color: var(--white);
}

.aca-calendar-section {
  background: #f6f8fb;
  border-bottom: 1px solid rgba(32, 33, 35, 0.1);
}

.calendar-shell {
  overflow: hidden;
  border: 1px solid rgba(32, 33, 35, 0.12);
  background: #fff;
  box-shadow: 0 18px 48px rgba(29, 24, 20, 0.1);
}

.calendar-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid rgba(32, 33, 35, 0.1);
}

.calendar-toolbar h2 {
  margin-bottom: 8px;
}

.calendar-toolbar p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.calendar-controls {
  display: inline-flex;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(32, 33, 35, 0.16);
  border-radius: 999px;
  background: #fff;
}

.calendar-controls span {
  padding: 9px 14px;
  border-right: 1px solid rgba(32, 33, 35, 0.12);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.calendar-controls span:last-child {
  border-right: 0;
  color: var(--brick-dark);
  background: var(--cream);
}

.calendar-week-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid rgba(32, 33, 35, 0.1);
}

.calendar-week-grid article {
  min-height: 245px;
  padding: 14px;
  border-right: 1px solid rgba(32, 33, 35, 0.1);
  background: linear-gradient(180deg, #fff, #fbfcff);
}

.calendar-week-grid article:last-child {
  border-right: 0;
}

.calendar-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(32, 33, 35, 0.1);
}

.calendar-day span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-day strong {
  color: var(--navy);
  font-size: 18px;
}

.calendar-event {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
  padding: 10px;
  border-left: 4px solid #4285f4;
  border-radius: 4px;
  background: #eef4ff;
  color: #16365f;
  font-size: 13px;
  line-height: 1.3;
}

.calendar-event strong {
  font-size: 11px;
  text-transform: uppercase;
}

.calendar-event.liberty {
  border-left-color: var(--brass);
  background: #fbf4e7;
  color: var(--brick-dark);
}

.calendar-event.online {
  border-left-color: #0f9d58;
  background: #edf8f2;
  color: #0d5635;
}

.calendar-event.special {
  border-left-color: #db4437;
  background: #fff0ee;
  color: #7c2119;
}

.calendar-upcoming {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.calendar-upcoming article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid rgba(32, 33, 35, 0.1);
  border-bottom: 1px solid rgba(32, 33, 35, 0.1);
}

.calendar-upcoming time {
  display: grid;
  place-items: center;
  height: 52px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.calendar-upcoming strong,
.calendar-upcoming span {
  display: block;
}

.calendar-upcoming strong {
  color: var(--ink);
  line-height: 1.25;
}

.calendar-upcoming span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section-pad {
  padding: clamp(72px, 10vw, 126px) clamp(18px, 7vw, 96px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.section-heading p,
.story-copy p,
.business-copy p,
.inquiry-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}


.aca-leadership-section {
  background: var(--white);
}

.aca-leadership-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(210px, 0.7fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.aca-leadership-copy h2 {
  max-width: 700px;
}

.aca-leadership-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.manager-card {
  margin: 0;
  border: 1px solid rgba(91, 45, 34, 0.16);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.manager-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.manager-card figcaption {
  padding: 16px 18px 18px;
}

.manager-card strong,
.manager-card span {
  display: block;
}

.manager-card strong {
  color: var(--brick-dark);
  font-size: 18px;
}

.manager-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.snapshot {
  background: var(--white);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.snapshot-grid article,
.detail-cards article,
.media-card-grid article {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(38, 29, 23, 0.08);
}

.snapshot-grid article {
  min-height: 214px;
  padding: 26px;
}

.snapshot-grid p,
.detail-cards p,
.media-card-grid p {
  color: var(--muted);
}

.visual-snapshot-grid article {
  display: flex;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.visual-snapshot-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(38, 29, 23, 0.14);
}

.snapshot-card-image {
  width: 100%;
  height: clamp(150px, 18vw, 220px);
  object-fit: cover;
  background: #ddd3c6;
}

.snapshot-card-body {
  padding: 22px 26px 26px;
}

.snapshot-card-body h3 {
  margin-bottom: 8px;
}

.snapshot-card-body p {
  margin-bottom: 0;
}
.center-cta {
  margin-top: 28px;
}

.image-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.image-story-reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  background: var(--cream);
}

.image-story-reverse .story-copy {
  order: 2;
}

.story-copy .button {
  margin-top: 10px;
}

.venue-story-combo {
  display: grid;
  grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  background: var(--cream);
}

.history-mini-carousel {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(32, 33, 35, 0.1);
  background: #171512;
  box-shadow: var(--shadow);
}

.history-mini-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: historyMiniFade 9s infinite;
}

.history-mini-carousel img:nth-child(2) {
  animation-delay: 3s;
}

.history-mini-carousel img:nth-child(3) {
  animation-delay: 6s;
}

@keyframes historyMiniFade {
  0%,
  6% {
    opacity: 0;
    transform: scale(1.035);
  }

  12%,
  33% {
    opacity: 1;
    transform: scale(1);
  }

  39%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

.venue-story-copy {
  display: grid;
  gap: clamp(30px, 4vw, 52px);
}

.story-copy-block {
  max-width: 760px;
}

.story-copy-block .button {
  margin-top: 10px;
}

.event-style-combo {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  background: var(--paper);
}

.decor-parallax-carousel {
  position: relative;
  min-height: clamp(430px, 46vw, 620px);
  overflow: hidden;
}

.decor-parallax-carousel::before {
  position: absolute;
  inset: 12% 2% 8% 10%;
  content: "";
  background: rgba(181, 137, 77, 0.13);
  filter: blur(34px);
}

.decor-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: decorSlideFade 9s infinite;
}

.decor-slide:nth-child(2) {
  animation-delay: 3s;
}

.decor-slide:nth-child(3) {
  animation-delay: 6s;
}

.decor-layer {
  position: absolute;
  display: block;
  object-fit: cover;
  box-shadow: 0 24px 54px rgba(38, 29, 23, 0.2);
  animation: decorLayerDrift 9s ease-in-out infinite;
}

.decor-layer-wide {
  top: 9%;
  left: 2%;
  width: 60%;
  height: 64%;
}

.decor-layer-card {
  top: 26%;
  left: 35%;
  width: 34%;
  height: 50%;
  animation-name: decorLayerDriftReverse;
}

.decor-layer-tall {
  right: 1%;
  bottom: 6%;
  width: 38%;
  height: 72%;
  animation-duration: 10s;
}

.decor-slide:nth-child(2) .decor-layer,
.decor-slide:nth-child(3) .decor-layer {
  animation-delay: inherit;
}

@keyframes decorSlideFade {
  0%,
  5% {
    opacity: 0;
  }

  12%,
  34% {
    opacity: 1;
  }

  41%,
  100% {
    opacity: 0;
  }
}

@keyframes decorLayerDrift {
  0% {
    transform: translate3d(-18px, 16px, 0) scale(1.04);
  }

  48% {
    transform: translate3d(14px, -10px, 0) scale(1);
  }

  100% {
    transform: translate3d(22px, -14px, 0) scale(1.03);
  }
}

@keyframes decorLayerDriftReverse {
  0% {
    transform: translate3d(22px, -12px, 0) scale(1.03);
  }

  48% {
    transform: translate3d(-12px, 12px, 0) scale(1);
  }

  100% {
    transform: translate3d(-20px, 16px, 0) scale(1.04);
  }
}

.event-style-copy {
  display: grid;
  gap: clamp(30px, 4vw, 52px);
}

.compact-detail-cards {
  margin-top: 22px;
}

.compact-detail-cards article {
  padding: 18px 20px;
}

.feature-gallery {
  display: grid;
  gap: 14px;
}

.four-pack {
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 180px;
}

.four-pack img {
  box-shadow: var(--shadow);
}

.four-pack .large {
  grid-row: span 3;
}


.foundation-graphic-section {
  overflow: hidden;
}

.cost-section {
  background: var(--cream);
}

.flag-section {
  background: var(--paper);
}

.community-growth-section {
  background: var(--white);
}

.foundation-graphic-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.foundation-graphic-layout.reverse {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}

.foundation-graphic-copy .section-heading {
  margin-bottom: 24px;
}

.foundation-graphic-copy .section-heading,
.foundation-graphic-copy .section-heading p {
  max-width: 760px;
}

.foundation-section-graphic {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(91, 45, 34, 0.16);
  background: var(--white);
  box-shadow: var(--shadow);
}

.foundation-section-graphic img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.foundation-value-line {
  margin: 26px 0 0;
  color: var(--brick-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 11px;
  height: 11px;
  content: "";
  background: var(--brass);
}

.details-section {
  background: var(--white);
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.detail-images {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.detail-images img {
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.detail-images img:nth-child(2),
.detail-images img:nth-child(4) {
  margin-top: 42px;
}

.detail-cards {
  display: grid;
  gap: 14px;
}

.detail-cards article {
  padding: 24px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 9px 12px;
  border: 1px solid rgba(91, 45, 34, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
  font-size: 14px;
  font-weight: 800;
}

.history-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

.history-teaser-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.history-teaser-images {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.history-teaser-images img {
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.history-teaser-images img:nth-child(2) {
  margin-top: 54px;
}

.business-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  color: var(--white);
  background: var(--charcoal);
}

.business-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.list-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 28px 0;
}

.list-columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.business-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 14px;
}

.business-images img:first-child {
  grid-row: span 2;
}

.immersive-tour {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 120px) clamp(18px, 4vw, 42px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 137, 77, 0.22), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(0, 200, 83, 0.12), transparent 28%),
    #0d0d0d;
}

.tour-header {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto clamp(46px, 7vw, 80px);
  text-align: center;
}

.tour-header .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tour-header h2 {
  margin: 10px 0 16px;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 3rem);
  font-weight: 800;
}

.tour-header .subtext {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.tour-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: clamp(26px, 4vw, 50px);
}

.tour-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(181, 137, 77, 0.18), rgba(138, 63, 45, 0.18)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 10px);
  opacity: 0.08;
  pointer-events: none;
  transform: scale(1.2);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.tour-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(260px, 28vw, 420px);
  overflow: hidden;
  background: #111316;
}

.tour-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.tour-info {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.tour-info h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
}

.tour-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  color: var(--white);
  background: #00c853;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tour-btn:hover {
  background: #00a844;
  transform: translateY(-1px);
}

.tour-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.tour-card:hover .tour-bg {
  opacity: 0.14;
  transform: scale(1.35);
}

.full-gallery {
  background: var(--white);
}

.masonry-gallery {
  column-count: 4;
  column-gap: 14px;
}

.masonry-gallery img {
  height: auto;
  margin: 0 0 14px;
  break-inside: avoid;
  box-shadow: 0 12px 30px rgba(38, 29, 23, 0.12);
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(72px, 10vw, 128px) clamp(18px, 7vw, 96px);
  color: var(--white);
  background: var(--navy);
}

.inquiry-copy h2 {
  color: var(--white);
}

.inquiry-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-block {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-block strong {
  color: var(--white);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.ninja-form-panel {
  display: block;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
}

.ninja-form-panel iframe,
.event-request-modal iframe {
  display: block;
  width: 100%;
  border: 0;
}

.ninja-form-panel iframe {
  min-height: 960px;
}

.event-request-modal {
  width: min(940px, calc(100vw - 28px));
  max-height: min(92vh, 980px);
  padding: 0;
  border: 0;
  background: transparent;
}

.event-request-modal::backdrop {
  background: rgba(17, 19, 22, 0.74);
  backdrop-filter: blur(5px);
}

.event-request-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.event-request-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(32, 33, 35, 0.12);
  background: #fbf8f2;
}

.event-request-bar h2 {
  margin: 2px 0 0;
  font-size: clamp(26px, 3vw, 38px);
}

.event-request-close {
  min-height: 40px;
  border: 1px solid rgba(91, 45, 34, 0.28);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--brick-dark);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.event-request-modal iframe {
  height: min(78vh, 760px);
  background: var(--white);
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(32, 33, 35, 0.22);
  border-radius: 3px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 0.9fr;
  gap: 30px;
  padding: 50px clamp(18px, 7vw, 96px);
  color: rgba(255, 255, 255, 0.76);
  background: #111316;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.prep-secret-link {
  align-self: end;
  justify-self: end;
  width: auto;
  height: auto;
  margin: 0;
  color: #f28c28;
  opacity: 0.5;
  overflow: visible;
  border-radius: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.prep-secret-link:hover,
.prep-secret-link:focus {
  opacity: 0.85;
}

.prep-notes-page {
  min-height: 100vh;
  background: #f5f7fb;
}

.prep-notes-wrap {
  width: min(1040px, calc(100% - 24px));
  margin: 0 auto;
  padding: clamp(22px, 5vw, 56px) 0;
}

.prep-notes-wrap h1 {
  margin-bottom: 20px;
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(28px, 5vw, 44px);
}

.prep-notes-wrap img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(32, 33, 35, 0.12);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(17, 19, 22, 0.14);
}


.foundation-secret-link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.foundation-secret-link:hover,
.foundation-secret-link:focus-visible {
  color: var(--brass);
  opacity: 1;
  outline: none;
}

.history-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.history-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 27, 34, 0.96), rgba(23, 27, 34, 0.74) 42%, rgba(23, 27, 34, 0.18)),
    repeating-linear-gradient(45deg, rgba(181, 137, 77, 0.08) 0 2px, transparent 2px 9px);
}

.history-hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.history-hero-image img {
  opacity: 0.7;
  filter: sepia(0.22);
}

.history-hero-image iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  border: 0;
  opacity: 0.72;
  transform: translate(-50%, -50%) scale(1.08);
  pointer-events: none;
}

.history-hero-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 860px;
  padding: clamp(92px, 13vw, 150px) clamp(18px, 7vw, 96px);
}

.history-hero-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
}

.history-hero-copy .core-line {
  margin: 26px 0;
  color: var(--brass);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}

.history-hero img:not(.no-antique),
.archive-carousel img:not(.no-antique),
.origin-section img:not(.no-antique),
.history-story img:not(.no-antique),
.merchant-section img:not(.no-antique),
.castle-section img:not(.no-antique),
.then-now img:not(.no-antique) {
  filter: sepia(0.34) saturate(0.82) contrast(0.94) brightness(0.98);
}

.history-hero img:not(.no-antique),
.archive-carousel img:not(.no-antique),
.archive-wide img,
.castle-section img:not(.no-antique) {
  border-color: #e8dcc9;
}

.no-antique {
  filter: none;
}

.archive-carousel-section {
  padding: clamp(36px, 5vw, 64px) clamp(18px, 7vw, 96px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.restoration-roots {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background:
    linear-gradient(0deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.94)),
    repeating-linear-gradient(45deg, rgba(181, 137, 77, 0.13) 0 2px, transparent 2px 10px);
}

.restoration-roots-copy {
  max-width: 760px;
}

.restoration-roots-copy p {
  color: var(--muted);
  font-size: 18px;
}

.restoration-roots-copy .button {
  margin-top: 12px;
}

.restoration-roots-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: stretch;
}

.restoration-roots-media figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e8dcc9;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(38, 29, 23, 0.1);
}

.restoration-roots-media .roots-feature {
  grid-row: span 2;
}

.restoration-roots-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.34) saturate(0.82) contrast(0.94) brightness(0.98);
}

.restoration-roots-media figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 10px;
  color: var(--white);
  background: rgba(17, 19, 22, 0.74);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-carousel-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.archive-carousel-heading h2 {
  font-size: clamp(30px, 3.8vw, 48px);
}

.archive-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 46vw);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--brass) rgba(91, 45, 34, 0.16);
}

.archive-carousel figure {
  margin: 0;
  scroll-snap-align: start;
  background: var(--white);
  box-shadow: var(--shadow);
}

.archive-carousel img {
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
}

.archive-carousel figcaption {
  min-height: 92px;
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.origin-section,
.history-story,
.history-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.origin-section {
  background: var(--white);
}

.origin-visuals {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: end;
}

.origin-visuals img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.history-image-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: end;
}

.history-image-stack img {
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.history-image-stack img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.artifact-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(91, 45, 34, 0.18);
  color: var(--ink);
  background:
    linear-gradient(0deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.92)),
    repeating-linear-gradient(45deg, #b5894d 0 2px, transparent 2px 10px);
  box-shadow: 0 12px 34px rgba(38, 29, 23, 0.08);
}

.artifact-card span,
.timeline-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--brick);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.artifact-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 29px;
  line-height: 1.05;
}

.artifact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.merchant-section {
  background: var(--cream);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.timeline-grid article {
  min-height: 190px;
  padding: 22px;
  border-top: 5px solid var(--brass);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(38, 29, 23, 0.09);
}

.timeline-grid strong {
  display: block;
  line-height: 1.25;
}

.merchant-card-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.merchant-card-grid article {
  padding: 16px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.archive-wide {
  margin: 28px 0 0;
}

.archive-wide img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.archive-wide figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.castle-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  color: var(--white);
  background: var(--charcoal);
}

.castle-images {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
}

.castle-images img {
  aspect-ratio: 3 / 4;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.castle-images img:nth-child(2) {
  margin-top: 48px;
}

.castle-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

blockquote {
  margin: 28px 0;
  padding: 28px;
  border-left: 5px solid var(--brass);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}

.legends-section {
  background: var(--white);
}

.legend-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.wide-legends {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.legend-card-grid article {
  min-height: 250px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(32, 43, 56, 0.92), rgba(32, 43, 56, 0.92)),
    repeating-linear-gradient(135deg, #b5894d 0 2px, transparent 2px 12px);
}

.legend-card-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.historic-note {
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(91, 45, 34, 0.22);
  color: var(--muted);
  background: var(--paper);
  font-weight: 700;
}

.then-now {
  background: var(--cream);
}

.then-now-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 235px;
  gap: 14px;
}

.then-now-grid .artifact-card {
  min-height: auto;
}

.then-now-grid img {
  box-shadow: 0 12px 30px rgba(38, 29, 23, 0.12);
}

.then-now-grid img:nth-of-type(1) {
  grid-row: span 2;
}

.sepia-map {
  background:
    linear-gradient(0deg, rgba(241, 233, 220, 0.9), rgba(241, 233, 220, 0.9)),
    repeating-linear-gradient(0deg, #5b2d22 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, #5b2d22 0 1px, transparent 1px 18px);
}

.history-inquiry {
  color: var(--white);
  background: var(--navy);
}

.history-inquiry p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .foundation-graphic-layout,
  .foundation-graphic-layout.reverse,
  .aca-leadership-layout,
  .market-intro-layout,
  .market-compare-layout,
  .offer-grid,
  .snapshot-grid,
  .media-card-grid,
  .legend-card-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-grid,
  .merchant-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .masonry-gallery {
    column-count: 3;
  }
}

@media (max-width: 860px) {
  .calendar-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .calendar-week-grid,
  .calendar-upcoming {
    grid-template-columns: 1fr;
  }

  .calendar-week-grid article,
  .calendar-upcoming article {
    border-right: 0;
  }
  .site-header {
    position: relative;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    margin: 0 auto 42px;
  }

  .market-hero-content {
    text-align: center;
  }

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

  .foundation-graphic-layout,
  .foundation-graphic-layout.reverse,
  .aca-leadership-layout,
  .market-intro-layout,
  .market-compare-layout,
  .offer-grid,
  .snapshot-grid,
  .venue-story-combo,
  .event-style-combo,
  .image-story,
  .image-story-reverse,
  .details-layout,
  .business-section,
  .inquiry-section,
  .inquiry-form,
  .history-teaser,
  .origin-section,
  .restoration-roots,
  .history-hero,
  .history-story,
  .castle-section,
  .history-inquiry,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .history-hero {
    min-height: 660px;
  }

  .archive-carousel {
    grid-auto-columns: minmax(280px, 78vw);
  }

  .history-hero-copy {
    padding-top: 120px;
  }

  .history-mini-carousel {
    min-height: clamp(300px, 62vw, 460px);
  }

  .decor-parallax-carousel {
    min-height: clamp(360px, 64vw, 520px);
  }

  .history-image-stack,
  .castle-images,
  .origin-visuals,
  .restoration-roots-media,
  .history-teaser-images {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-grid,
  .merchant-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legend-card-grid {
    grid-template-columns: 1fr;
  }

  .then-now-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-story-reverse .story-copy {
    order: 0;
  }

  .four-pack {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

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

  .detail-images {
    grid-template-columns: 1fr 1fr;
  }

  .detail-images img:nth-child(2),
  .detail-images img:nth-child(4) {
    margin-top: 0;
  }

  .market-rate-table,
  .market-rate-table thead,
  .market-rate-table tbody,
  .market-rate-table th,
  .market-rate-table td,
  .market-rate-table tr {
    display: block;
  }

  .market-rate-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .market-rate-table tr {
    padding: 14px 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .market-rate-table tr:last-child {
    border-bottom: 0;
  }

  .market-rate-table td {
    display: grid;
    grid-template-columns: minmax(110px, 38%) 1fr;
    gap: 14px;
    padding: 10px 18px;
    border-bottom: 0;
    white-space: normal;
  }

  .market-rate-table td:nth-child(2) {
    white-space: normal;
  }

  .market-rate-table td::before {
    content: attr(data-label);
    color: var(--brick-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .market-cta-content {
    margin: 0 auto;
    text-align: center;
  }

  .event-request-modal {
    width: min(100vw - 16px, 940px);
    max-height: 94vh;
  }

  .event-request-bar {
    align-items: start;
    flex-direction: column;
  }

  .event-request-close {
    width: 100%;
  }

  .event-request-modal iframe {
    height: 72vh;
  }

  .business-images {
    grid-auto-rows: 190px;
  }

  .masonry-gallery {
    column-count: 2;
  }

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

  .tour-frame {
    height: clamp(250px, 58vw, 360px);
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    display: none;
  }

  .brand small {
    display: none;
  }


  .foundation-graphic-layout,
  .foundation-graphic-layout.reverse {
    gap: 24px;
  }

  .foundation-section-graphic img {
    aspect-ratio: 4 / 3;
  }

  .restoration-roots-media {
    grid-template-columns: 1fr;
  }

  .restoration-roots-media .roots-feature {
    grid-row: auto;
  }

  .restoration-roots-media figure {
    min-height: 240px;
  }

  .section-pad,
  .inquiry-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .four-pack,
  .detail-images,
  .business-images {
    grid-template-columns: 1fr;
  }

  .four-pack {
    grid-auto-rows: auto;
  }

  .four-pack img,
  .four-pack .large,
  .detail-images img,
  .business-images img,
  .business-images img:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

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

  .masonry-gallery {
    column-count: 1;
  }

  .history-image-stack,
  .castle-images,
  .origin-visuals,
  .history-teaser-images,
  .timeline-grid,
  .merchant-card-grid,
  .then-now-grid {
    grid-template-columns: 1fr;
  }

  .castle-images img:nth-child(2) {
    margin-top: 0;
  }

  .history-teaser-images img:nth-child(2) {
    margin-top: 0;
  }

  .then-now-grid {
    grid-auto-rows: auto;
  }

  .history-mini-carousel {
    min-height: 320px;
  }

  .decor-parallax-carousel {
    min-height: 420px;
  }

  .decor-layer-wide {
    top: 2%;
    left: 0;
    width: 72%;
    height: 52%;
  }

  .decor-layer-card {
    top: 34%;
    left: 8%;
    width: 44%;
    height: 44%;
  }

  .decor-layer-tall {
    right: 0;
    bottom: 4%;
    width: 54%;
    height: 58%;
  }

  .then-now-grid img,
  .then-now-grid img:nth-of-type(1) {
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .offer-aca-card,
  .offer-signature {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-frame .hero-actions {
    width: 100%;
  }
}

/* Event Form Styles */
.event-form-content {
  padding: 20px;
  max-height: 70vh;
  overflow-y: auto;
}

.secret-image {
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #856404;
  text-align: center;
}

.event-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #555;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #00c853;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: #00c853;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit-btn:hover {
  background: #00a844;
}

/* === V1 Castle Hall additions === */

/* Caveat Brush display font on hero h1 (Brown Sugar substitute, path C) */
.hero h1, #hero-title {
  font-family: 'Caveat Brush', 'Playfair Display', Georgia, serif;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

/* Stealth vision link — bottom-right of footer on every public page */
.site-footer { position: relative; }
.stealth-vision-link {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(232, 198, 112, 0.62);
  text-decoration: none;
  letter-spacing: 0.22em;
  transition: color 0.4s ease;
  z-index: 5;
}
.stealth-vision-link:hover { color: #ff8c42; }

@media (max-width: 560px) {
  .stealth-vision-link { right: 12px; bottom: 10px; font-size: 10px; }
  .hero h1, #hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
}
