:root {
  --ward-black: #050505;
  --ward-panel: #0c0d0f;
  --ward-panel-2: #121419;
  --ward-white: #fff;
  --ward-offwhite: #f4f4f1;
  --ward-muted: #a9adb5;
  --ward-blue: #3a8dff;
  --ward-blue-dark: #126bdc;
  --ward-line: rgba(255, 255, 255, .16);
  --ward-page: min(1440px, calc(100vw - 10vw));
  --ward-edge: max(24px, 5vw);
  --ward-display: "Space Grotesk", Arial, sans-serif;
  --ward-body: Inter, Arial, sans-serif;
  --ward-ease: cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--ward-black);
  background-image:
    radial-gradient(circle at 18% 4%, rgba(58, 141, 255, .035), transparent 34rem),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .016) 0, rgba(255, 255, 255, .016) 1px, transparent 1px, transparent 6px);
  color: var(--ward-white);
  font-family: var(--ward-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
*, *::before, *::after { box-sizing: border-box; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--ward-blue); color: #fff; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  z-index: 100000; top: 12px; left: 12px; width: auto; height: auto;
  padding: 12px 18px; clip: auto; background: #fff; color: #000;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .55em;
  font-family: var(--ward-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.045em;
}
p { margin: 0 0 1.25em; }

/* Header */
.site-header {
  position: fixed;
  z-index: 900;
  inset: 0 0 auto;
  color: #fff;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
  border-bottom: 1px solid var(--ward-line);
  background: rgba(5, 5, 5, .96);
}
.ward20-front-page .site-header:not(.is-scrolled):not(.is-open) { background: transparent; }
.site-header.is-scrolled, .site-header.is-open { background: rgba(5, 5, 5, .96); backdrop-filter: blur(14px); }
.site-header__inner {
  width: 100%; min-height: 86px; padding: 0 var(--ward-edge);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.site-branding { position: relative; z-index: 3; display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.custom-logo-link { display: block; }
.custom-logo { width: auto; max-height: 45px; }
.ward20-wordmark {
  display: inline-flex; align-items: center;
  font: 600 1.55rem/1 var(--ward-display); letter-spacing: -.06em;
}
.ward20-wordmark__number { color: var(--ward-blue); }
.ward20-wordmark__domain {
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: .32em; padding: .34em .58em .3em; border-radius: 999px;
  background: #fff; color: var(--ward-black); font-size: clamp(.75rem, .52em, 1.3rem);
  font-weight: 700; line-height: 1; letter-spacing: .02em;
}
.primary-navigation { min-width: 0; margin-left: auto; }
.primary-navigation ul { margin: 0; padding: 0; list-style: none; }
.primary-navigation > ul { display: flex; align-items: center; gap: clamp(14px, 2vw, 36px); }
.primary-navigation li { position: relative; }
.primary-navigation .sub-menu {
  position: absolute; top: 100%; left: 0; z-index: 4;
  width: max-content; min-width: 220px; max-width: min(320px, calc(100vw - 40px));
  padding: 8px 0; border: 1px solid var(--ward-line); background: var(--ward-panel);
  visibility: hidden; opacity: 0; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.primary-navigation > ul > li:nth-last-child(-n+2) > .sub-menu { right: 0; left: auto; }
.primary-navigation .sub-menu .sub-menu { top: 100%; left: 0; }
.primary-navigation > ul > li:nth-last-child(-n+2) .sub-menu .sub-menu { right: 0; left: auto; }
.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.primary-navigation .sub-menu a { padding: 12px 18px; line-height: 1.35; white-space: normal; overflow-wrap: anywhere; }
.primary-navigation .sub-menu a::after { bottom: 7px; right: 18px; left: 18px; }
.submenu-toggle { display: none; }
.primary-navigation a, .menu-toggle__label {
  position: relative; display: block; padding: 30px 0;
  font-size: .75rem; font-weight: 600; line-height: 1;
  letter-spacing: .14em; text-transform: uppercase;
}
.primary-navigation a::after {
  content: ""; position: absolute; right: 0; bottom: 23px; left: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ward-ease);
}
.primary-navigation a:hover::after, .primary-navigation a:focus-visible::after, .primary-navigation .current-menu-item > a::after, .primary-navigation .current-menu-ancestor > a::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { position: relative; z-index: 3; display: none; align-items: center; justify-content: center; gap: 13px; min-width: 44px; min-height: 44px; padding: 10px; color: #fff; border: 0; background: transparent; cursor: pointer; }
.menu-toggle__icon { display: grid; width: 24px; gap: 5px; }
.menu-toggle__icon i { display: block; height: 2px; background: currentColor; transition: transform .3s ease, opacity .2s ease; }
.site-header.is-open .menu-toggle__icon i:first-child { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .menu-toggle__icon i:nth-child(2) { opacity: 0; }
.site-header.is-open .menu-toggle__icon i:last-child { transform: translateY(-7px) rotate(-45deg); }

/* Shared */
.site-main { min-height: 65vh; padding-top: 86px; }
.site-main--front { padding-top: 0; }
.ward20-kicker, .ward20-meta, .ward20-eyebrow,
.ward20-hero .elementor-widget-heading:first-child .elementor-heading-title {
  margin: 0 0 1.6rem;
  color: var(--ward-muted);
  font-size: .75rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: .15em !important;
  text-transform: uppercase;
}
.ward20-button, .elementor .elementor-button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 42px;
  min-height: 56px; padding: 15px 20px;
  border: 0; border-radius: 0; background: var(--ward-blue); color: #fff;
  font-size: .86rem; font-weight: 600; line-height: 1.2;
  transition: background .25s ease, transform .25s ease;
}
.ward20-button:hover, .elementor .elementor-button:hover { background: var(--ward-blue-dark); color: #fff; transform: translateY(-2px); }
.ward20-button:focus-visible, .elementor a:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.ward20-arrow-link {
  display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px;
  border-bottom: 1px solid currentColor; font-size: .79rem; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase;
}
.ward20-arrow-link span { transition: transform .25s ease; }
.ward20-arrow-link:hover span { transform: translateX(5px); }
.ward20-empty { padding: 28px; border: 1px solid var(--ward-line); color: var(--ward-muted); }

/* Native fallback */
.ward20-native-hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 180px var(--ward-edge) 70px; background-position: center; background-size: cover;
}
.ward20-native-hero::before, .ward20-hero::before {
  content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.91), rgba(0,0,0,.4) 56%, rgba(0,0,0,.1)), linear-gradient(0deg, rgba(0,0,0,.82), transparent 58%);
}
.ward20-native-hero__content { position: relative; z-index: 1; max-width: 1000px; }
.ward20-native-hero h1 { margin: 0; font-size: clamp(4.5rem, 11vw, 11rem); line-height: .76; letter-spacing: -.08em; }
.ward20-native-hero h1 span { color: var(--ward-blue); }
.ward20-native-hero__content > p:not(.ward20-kicker) { max-width: 520px; margin: 46px 0 30px; font-size: clamp(1.08rem, 2vw, 1.45rem); }
.ward20-native-section { padding: clamp(80px, 11vw, 170px) var(--ward-edge); }
.ward20-native-intro { display: grid; grid-template-columns: 1fr 3fr 1.3fr; gap: 5vw; border-bottom: 1px solid var(--ward-line); }
.ward20-native-intro h2 { font-size: clamp(2.8rem, 5.8vw, 6.1rem); }
.ward20-native-intro > p:last-child { align-self: end; color: var(--ward-muted); }
.ward20-section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 45px; }
.ward20-section-heading h2 { font-size: clamp(3rem, 6vw, 6rem); }

/* Elementor surfaces */
.elementor { --widgets-spacing: 0; }
.elementor-widget-text-editor, .elementor-widget-heading { color: inherit; }
.elementor-widget-text-editor p:last-child { margin-bottom: 0; }
.elementor-widget-heading .elementor-heading-title { color: inherit; font-family: var(--ward-display); line-height: 1.02; letter-spacing: -.05em; }
.elementor-widget-text-editor { font-family: var(--ward-body); }
.ward20-hero {
  position: relative; min-height: 100svh !important; align-items: flex-end !important;
  padding: 180px var(--ward-edge) 70px !important; background-position: center !important; background-size: cover !important;
}
.ward20-hero > .e-con-inner, .ward20-hero > .elementor-element { position: relative; z-index: 1; }
.ward20-hero .elementor-widget-heading:nth-child(2) .elementor-heading-title {
  margin: 0; font-size: clamp(4.5rem, 11vw, 11rem); line-height: .76; letter-spacing: -.08em;
}
.ward20-hero .elementor-widget-heading:nth-child(2) .elementor-heading-title span { color: var(--ward-blue); }
.ward20-hero .elementor-widget-text-editor { max-width: 560px; margin-top: 46px; font-size: clamp(1.08rem, 2vw, 1.45rem); }
.ward20-hero .elementor-widget-button { margin-top: 26px; align-self: flex-start; width: auto; }
.ward20-section { padding: clamp(80px, 10vw, 150px) var(--ward-edge) !important; }
.ward20-section--line { border-bottom: 1px solid var(--ward-line); }
.ward20-section > .e-con-inner { max-width: 1600px !important; }
.ward20-section-title .elementor-heading-title { font-size: clamp(3rem, 6vw, 6rem); }
.ward20-manifesto { display: grid !important; grid-template-columns: 1fr 3fr 1.25fr !important; align-items: end !important; gap: 5vw !important; }
.ward20-manifesto .elementor-widget-heading .elementor-heading-title { font-size: clamp(2.8rem, 5.7vw, 6rem); }
.ward20-manifesto .elementor-widget-heading .elementor-heading-title strong { color: var(--ward-blue); font-weight: 500; }
.ward20-manifesto .elementor-widget-text-editor { color: var(--ward-muted); font-size: 1.04rem; }
.ward20-heading-row { display: flex !important; flex-direction: row !important; justify-content: space-between !important; align-items: flex-end !important; gap: 30px !important; margin-bottom: 46px; }
.ward20-heading-row .elementor-widget-heading .elementor-heading-title { font-size: clamp(3rem, 6vw, 6rem); }
.ward20-heading-row .elementor-widget-button { width: auto; }
.ward20-feature { display: grid !important; grid-template-columns: 1.25fr .75fr !important; gap: 0 !important; padding: 0 !important; background: var(--ward-panel); }
.ward20-feature__image { min-height: 760px; }
.ward20-feature__image .elementor-widget-image, .ward20-feature__image .elementor-widget-container, .ward20-feature__image img { width: 100%; height: 100%; }
.ward20-feature__image img { object-fit: cover; }
.ward20-feature__copy { padding: clamp(50px, 7vw, 110px) !important; justify-content: center !important; }
.ward20-feature__copy .elementor-heading-title { font-size: clamp(3rem, 5.5vw, 6.5rem); }
.ward20-feature__copy .elementor-widget-text-editor { max-width: 520px; color: var(--ward-muted); }
.ward20-feature__copy .elementor-widget-button { align-self: flex-start; width: auto; margin-top: 18px; }
.ward20-gallery-preview .elementor-image-gallery .gallery { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 16px; margin: 0 !important; }
.ward20-gallery-preview .gallery-item { width: auto !important; margin: 0 !important; overflow: hidden; }
.ward20-gallery-preview .gallery-item:first-child { grid-row: span 2; }
.ward20-gallery-preview .gallery-icon { height: 100%; }
.ward20-gallery-preview .gallery-icon img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; border: 0 !important; transition: transform .7s var(--ward-ease); }
.ward20-gallery-preview .gallery-item:first-child img { min-height: 676px; }
.ward20-gallery-preview .gallery-item:hover img { transform: scale(1.025); }
.ward20-gallery-grid .elementor-image-gallery .gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 0 !important; }
.ward20-gallery-grid .gallery-item { width: auto !important; margin: 0 !important; overflow: hidden; }
.ward20-gallery-grid .gallery-icon { height: 100%; }
.ward20-gallery-grid .gallery-icon a { display: block; height: 100%; }
.ward20-gallery-grid .gallery-icon img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 0 !important; transition: transform .65s var(--ward-ease), filter .65s ease; }
.ward20-gallery-grid .gallery-item:hover img { transform: scale(1.035); filter: brightness(.84); }
.ward20-album-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 18px !important; align-items: stretch !important; }
.ward20-album-card { min-width: 0; min-height: 680px; padding: 0 0 34px !important; overflow: hidden; border: 1px solid var(--ward-line); background: var(--ward-panel); }
.ward20-album-card .elementor-widget-image, .ward20-album-card .elementor-widget-image .elementor-widget-container { width: 100%; overflow: hidden; }
.ward20-album-card .elementor-widget-image img { width: 100%; height: 390px; object-fit: cover; transition: transform .7s var(--ward-ease); }
.ward20-album-card:hover .elementor-widget-image img { transform: scale(1.025); }
.ward20-album-card > .elementor-element:not(:first-child) { width: auto; margin-inline: 30px; }
.ward20-album-card .ward20-kicker { margin-top: 28px; }
.ward20-album-card h2.elementor-heading-title { font-size: clamp(2rem, 3vw, 3.5rem); }
.ward20-album-card .elementor-widget-text-editor { color: var(--ward-muted); }
.ward20-album-card .elementor-widget-button { width: auto; margin-top: auto; align-self: flex-start; }
.ward20-visit { display: grid !important; grid-template-columns: 1.1fr .9fr !important; gap: clamp(50px, 10vw, 150px) !important; align-items: start !important; }
.ward20-visit .elementor-heading-title { font-size: clamp(3.5rem, 8vw, 8rem); }
.ward20-visit .elementor-widget-text-editor { color: var(--ward-muted); }
.ward20-details { padding-top: 16px; border-top: 1px solid var(--ward-line); }
.ward20-details p { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 15px 0; margin: 0; border-bottom: 1px solid var(--ward-line); }
.ward20-details strong { color: #fff; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.ward20-page-hero { padding: clamp(150px, 17vw, 260px) var(--ward-edge) clamp(70px, 10vw, 130px) !important; border-bottom: 1px solid var(--ward-line); background: var(--ward-panel); }
.ward20-page-hero .elementor-heading-title { max-width: 1200px; font-size: clamp(4rem, 11vw, 11rem); line-height: .84; letter-spacing: -.075em; }
.ward20-page-hero .elementor-widget-text-editor { max-width: 700px; margin-top: 28px; color: var(--ward-muted); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.ward20-gallery-page .ward20-page-hero, .ward20-gallery-hero { position: relative; min-height: 78svh !important; justify-content: flex-end !important; overflow: hidden; background-image: url('../images/ward20-gallery-banner-ai.png') !important; background-position: center !important; background-size: cover !important; }
.ward20-gallery-page .ward20-page-hero::before, .ward20-gallery-hero::before { content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.08) 72%), linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.08) 70%); }
.ward20-gallery-page .ward20-page-hero > .e-con-inner, .ward20-gallery-page .ward20-page-hero > .elementor-element, .ward20-gallery-hero > .e-con-inner, .ward20-gallery-hero > .elementor-element { position: relative; z-index: 1; }
.ward20-gallery-page .ward20-page-hero .elementor-widget-text-editor, .ward20-gallery-hero .elementor-widget-text-editor { color: #e6e7e9; }
.ward20-about-page .ward20-page-hero, .ward20-about-hero { position: relative; min-height: 82svh !important; justify-content: flex-end !important; overflow: hidden; background-image: url('../images/ward20-gallery-cafe.webp') !important; background-position: center !important; background-size: cover !important; }
.ward20-about-page .ward20-page-hero::before, .ward20-about-hero::before { content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.12) 72%), linear-gradient(90deg, rgba(0,0,0,.7), transparent 72%); }
.ward20-about-page .ward20-page-hero > .e-con-inner, .ward20-about-page .ward20-page-hero > .elementor-element, .ward20-about-hero > .e-con-inner, .ward20-about-hero > .elementor-element { position: relative; z-index: 1; }
.ward20-about-page .ward20-page-hero .elementor-widget-text-editor, .ward20-about-hero .elementor-widget-text-editor { color: #e6e7e9; }
.ward20-about-page .ward20-page-hero .elementor-widget-button, .ward20-about-hero .elementor-widget-button { display: none !important; }
.ward20-prose { max-width: 900px; margin-inline: auto; }
.ward20-prose .elementor-widget-heading .elementor-heading-title { font-size: clamp(2.8rem, 5vw, 5rem); }
.ward20-prose .elementor-widget-text-editor { color: #d1d2d5; font-size: clamp(1rem, 1.5vw, 1.18rem); }

/* Ward20 dynamic cards */
.ward20-event-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-flow: dense; gap: 18px; }
.ward20-event-card { position: relative; min-height: 480px; overflow: hidden; background: var(--ward-panel); }
.ward20-event-card--featured { grid-row: span 2; min-height: 978px; }
.ward20-event-card__image { position: absolute; inset: 0; }
.ward20-event-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.92), transparent 72%); }
.ward20-event-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ward-ease), filter .7s ease; }
.ward20-event-card:hover .ward20-event-card__image img { transform: scale(1.035); filter: brightness(.85); }
.ward20-event-card__content { position: absolute; z-index: 2; right: clamp(24px, 3vw, 44px); bottom: clamp(24px, 3vw, 40px); left: clamp(24px, 3vw, 44px); pointer-events: none; }
.ward20-event-card__content a { pointer-events: auto; }
.ward20-event-card__content .ward20-meta { color: #fff; }
.ward20-event-card__content h3 { margin: 0 0 18px; font-size: clamp(2.4rem, 5vw, 5.7rem); }
.ward20-event-card:not(.ward20-event-card--featured) .ward20-event-card__content h3 { font-size: clamp(2.2rem, 4vw, 4rem); }
.ward20-event-card__excerpt { max-width: 520px; color: #d2d4d8; }
.ward20-news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 68px); }
.ward20-news-card__image { display: block; aspect-ratio: 4 / 3; margin-bottom: 24px; overflow: hidden; background: var(--ward-panel-2); }
.ward20-news-card__image:empty { background: linear-gradient(135deg, #111 0%, #111 50%, #122037 50%, #122037 100%); }
.ward20-news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ward-ease); }
.ward20-news-card:hover .ward20-news-card__image img { transform: scale(1.035); }
.ward20-news-card .ward20-meta { margin-bottom: 14px; }
.ward20-news-card h2, .ward20-news-card h3 { font-size: clamp(1.7rem, 2.6vw, 2.65rem); }
.ward20-news-card > p:not(.ward20-meta) { color: var(--ward-muted); }

/* Pages and posts */
.ward20-page-header { padding: clamp(140px, 18vw, 250px) var(--ward-edge) clamp(70px, 9vw, 130px); border-bottom: 1px solid var(--ward-line); background: var(--ward-panel); }
.ward20-page-header h1 { max-width: 1350px; margin: 0; font-size: clamp(4.2rem, 12vw, 11rem); line-height: .84; letter-spacing: -.075em; }
.ward20-page-header > p:last-child { max-width: 620px; margin-top: 28px; color: var(--ward-muted); font-size: 1.15rem; }
.ward20-page-content:not(:has(.elementor)) { width: min(820px, calc(100% - 48px)); margin: 0 auto; padding: 80px 0 130px; }
.ward20-archive { padding: 0 var(--ward-edge) clamp(100px, 12vw, 170px); }
.ward20-archive .ward20-page-header { margin-inline: calc(var(--ward-edge) * -1); }
.ward20-news-grid--archive { margin-top: clamp(70px, 9vw, 120px); }
.ward20-search-empty { grid-column: 1 / -1; padding: clamp(40px, 6vw, 85px); border: 1px solid var(--ward-line); }
.ward20-search-empty h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 4rem); }
.ward20-search-empty p { color: var(--ward-muted); }
.navigation.pagination { margin-top: 80px; }
.nav-links { display: flex; gap: 8px; }
.page-numbers { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--ward-line); }
.page-numbers.current, .page-numbers:hover { background: var(--ward-blue); border-color: var(--ward-blue); }
.ward20-single { padding: clamp(160px, 18vw, 250px) var(--ward-edge) 140px; }
.ward20-single__header { width: min(1180px, 100%); margin: 0 auto 70px; }
.ward20-single__header h1 { font-size: clamp(3.8rem, 9vw, 9rem); line-height: .88; }
.ward20-single__lead { max-width: 760px; margin-top: 30px; color: var(--ward-muted); font-size: 1.25rem; }
.ward20-single__image { width: min(1440px, 100%); margin: 0 auto 80px; }
.ward20-single__image img { width: 100%; max-height: 78vh; object-fit: cover; }
.ward20-single__content { width: min(760px, 100%); margin: 0 auto; font-size: 1.08rem; color: #d6d7da; }
.ward20-single__content h2, .ward20-single__content h3 { margin-top: 2em; color: #fff; }
.ward20-single__content a { color: #8dbdff; text-decoration: underline; text-underline-offset: 3px; }
.ward20-post-nav { display: flex; justify-content: space-between; gap: 30px; width: min(760px, 100%); margin: 90px auto 0; padding-top: 25px; border-top: 1px solid var(--ward-line); }
.ward20-not-found { display: flex; min-height: 80vh; padding: 180px var(--ward-edge) 100px; flex-direction: column; justify-content: center; }
.ward20-not-found h1 { max-width: 1050px; font-size: clamp(4rem, 10vw, 10rem); }
.ward20-not-found > p:not(.ward20-kicker) { color: var(--ward-muted); }
.ward20-not-found .ward20-button { align-self: flex-start; margin-top: 20px; }

/* Contact Form 7 */
.wpcf7 form { margin-top: 20px; }
.wpcf7 label { display: block; color: var(--ward-muted); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.wpcf7 input:not([type="submit"]), .wpcf7 textarea {
  width: 100%; padding: 15px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); border-radius: 0;
  outline: none; background: transparent; color: #fff; font-size: 1rem; transition: border-color .2s ease;
}
.wpcf7 input:focus, .wpcf7 textarea:focus { border-color: var(--ward-blue); }
.wpcf7 textarea { min-height: 150px; resize: vertical; }
.wpcf7 input[type="submit"] { min-width: 170px; padding: 17px 22px; border: 0; border-radius: 0; background: var(--ward-blue); color: #fff; cursor: pointer; font-weight: 600; }
.wpcf7 .wpcf7-not-valid-tip { margin-top: 7px; color: #ff9f9f; font-size: .82rem; text-transform: none; letter-spacing: 0; }
.wpcf7 form .wpcf7-response-output { margin: 25px 0 0; padding: 14px 16px; border: 1px solid var(--ward-blue); }

/* The Events Calendar — free */
.tribe-common, .tribe-events, #tribe-events-pg-template { color: var(--ward-white); font-family: var(--ward-body) !important; }
.tribe-events .tribe-events-l-container, #tribe-events-pg-template { max-width: 1600px !important; padding: clamp(150px, 16vw, 220px) var(--ward-edge) 130px !important; }
.tribe-common h1, .tribe-common h2, .tribe-common h3, .tribe-events-single-event-title { color: var(--ward-white) !important; font-family: var(--ward-display) !important; letter-spacing: -.045em; }
.tribe-events-header__title h1 { font-size: clamp(4rem, 10vw, 9rem) !important; line-height: .85 !important; letter-spacing: -.075em !important; }
.tribe-events .tribe-events-calendar-list__month-separator { margin: 70px 0 35px; }
.tribe-events .tribe-events-calendar-list__month-separator-text { color: var(--ward-muted) !important; font-size: .78rem !important; letter-spacing: .13em; text-transform: uppercase; }
.tribe-events-calendar-list__event-row { margin: 0 0 25px !important; padding: 0 0 25px; border-bottom: 1px solid var(--ward-line); }
.tribe-events-calendar-list__event-wrapper { padding-left: clamp(20px, 4vw, 65px) !important; }
.tribe-events-calendar-list__event-featured-image-wrapper { overflow: hidden; }
.tribe-events-calendar-list__event-featured-image { aspect-ratio: 4/3; width: 100%; object-fit: cover; transition: transform .5s var(--ward-ease); }
.tribe-events-calendar-list__event-row:hover .tribe-events-calendar-list__event-featured-image { transform: scale(1.03); }
.tribe-events-calendar-list__event-title { font-size: clamp(2rem, 4vw, 4.7rem) !important; line-height: .95 !important; }
.tribe-common .tribe-common-b2, .tribe-common .tribe-common-h7, .tribe-common .tribe-common-h8, .tribe-events .tribe-events-calendar-list__event-date-tag-weekday, .tribe-events .tribe-events-calendar-list__event-datetime, .tribe-events .tribe-events-calendar-list__event-venue { color: var(--ward-muted) !important; }
.tribe-events .tribe-events-calendar-list__event-date-tag-daynum { color: #fff !important; font-family: var(--ward-display) !important; font-size: 2.6rem !important; }
.tribe-common a, .tribe-common a:visited { color: #fff; }
.tribe-common .tribe-common-c-btn, .tribe-common a.tribe-common-c-btn, .tribe-events .tribe-events-c-search__button { border-radius: 0 !important; background: var(--ward-blue) !important; color: #fff !important; }
.tribe-events .tribe-events-c-events-bar { background: #fff !important; }
.tribe-events .tribe-events-c-view-selector__content, .tribe-events .tribe-events-c-subscribe-dropdown__container { background: var(--ward-panel) !important; }
.tribe-events .tribe-events-c-search__input-control input { color: var(--ward-black) !important; }
.tribe-events .tribe-events-c-search__input-control input::placeholder { color: #5e6269 !important; opacity: 1; }
.tribe-events .tribe-events-c-view-selector__list-item-text, .tribe-events .tribe-events-c-nav__next-label, .tribe-events .tribe-events-c-nav__prev-label { color: #fff !important; }
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button { border-color: var(--ward-blue); border-radius: 0; color: #fff; }
.tribe-events-single-event-title { max-width: 1100px; margin-bottom: 20px !important; font-size: clamp(3.8rem, 9vw, 9rem) !important; line-height: .88 !important; }
.tribe-events-schedule { margin-bottom: 50px !important; }
.tribe-events-schedule h2 { color: var(--ward-muted) !important; font-family: var(--ward-body) !important; font-size: 1rem !important; letter-spacing: .06em; text-transform: uppercase; }
.tribe-events-event-image img { width: 100%; max-height: 78vh; object-fit: cover; }
.tribe-events-single-event-description { width: min(780px, 100%); margin: 70px auto !important; color: #d6d7da; font-size: 1.08rem; }
.tribe-events-meta-group { width: auto !important; padding: 30px !important; background: var(--ward-panel); }
.tribe-events-event-meta { border: 0 !important; background: transparent !important; }
.tribe-events-meta-group .tribe-events-single-section-title { font-size: 1.3rem !important; }
.tribe-events-back { margin-bottom: 35px; }
.tribe-events-back a { border-bottom: 1px solid; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.ward20-events-banner { width: 100%; height: clamp(360px, 52vw, 680px); margin: 0; overflow: hidden; border-top: 1px solid var(--ward-line); background: var(--ward-panel); }
.ward20-events-banner img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Footer */
.site-footer { width: 100%; border-top: 1px solid var(--ward-line); background: #15171c; }
.site-footer__top { display: grid; grid-template-columns: 1.15fr .8fr .9fr .55fr; gap: clamp(35px, 5vw, 85px); padding: clamp(70px, 10vw, 140px) var(--ward-edge); }
.ward20-wordmark--large { font-size: clamp(2.2rem, 4vw, 4.6rem); }
.site-footer__brand p { margin-top: 22px; color: var(--ward-muted); }
.site-footer__details p { margin: 0 0 7px; color: var(--ward-muted); }
.site-footer__details h2,
.site-footer__visit h2,
.footer-navigation h2 { margin: 0 0 24px; color: #fff; font-family: var(--ward-body); font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__details .site-footer__company { margin-bottom: 16px; color: #fff; }
.site-footer__visit p { margin: 0 0 8px; color: var(--ward-muted); }
.site-footer__visit .ward20-arrow-link { margin-top: 20px; color: #fff; }
.footer-navigation ul { margin: 0; padding: 0; list-style: none; }
.footer-navigation li { margin-bottom: 8px; }
.footer-navigation a { display: inline-block; padding-bottom: 2px; border-bottom: 1px solid transparent; }
.footer-navigation a:hover { border-color: currentColor; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding: 25px var(--ward-edge); border-top: 1px solid var(--ward-line); color: var(--ward-muted); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer__bottom p { margin: 0; }
.site-footer__socials { display: flex; gap: 24px; }

@media (max-width: 1024px) {
  .ward20-manifesto { grid-template-columns: 1fr 2.5fr !important; }
  .ward20-manifesto > :last-child { grid-column: 2; }
  .ward20-feature { grid-template-columns: 1fr !important; }
  .ward20-feature__image { min-height: 620px; }
  .ward20-gallery-preview .elementor-image-gallery .gallery { grid-template-columns: repeat(2, 1fr); }
  .ward20-gallery-preview .gallery-item:first-child { grid-row: auto; }
  .ward20-gallery-preview .gallery-item:first-child img { min-height: 380px; }
  .ward20-gallery-grid .elementor-image-gallery .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ward20-album-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .ward20-album-card:last-child { grid-column: 1 / -1; }
  .ward20-news-grid { grid-template-columns: repeat(2, 1fr); }
  .ward20-news-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 20px); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .footer-navigation { grid-column: 2; }
}

@media (max-width: 800px) {
  :root { --ward-edge: 24px; --ward-page: calc(100vw - 48px); }
  .site-header.is-open { backdrop-filter: none; }
  .site-header__inner { min-height: 74px; gap: 14px; }
  .ward20-wordmark { font-size: 1.15rem; }
  .menu-toggle { display: flex; }
  .menu-toggle__label { display: none; }
  .primary-navigation {
    position: fixed; inset: 0; z-index: 2; display: block; width: 100%; max-width: 100vw;
    padding: 90px var(--ward-edge) 30px; margin-left: 0;
    overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain;
    visibility: hidden; opacity: 0; background: var(--ward-black); transition: opacity .3s ease, visibility .3s ease;
  }
  .site-header.is-open .primary-navigation { visibility: visible; opacity: 1; }
  .primary-navigation > ul { display: block; width: 100%; }
  .primary-navigation li { border-bottom: 1px solid var(--ward-line); }
  .primary-navigation a { padding: 13px 42px 13px 0; font-family: var(--ward-display); font-size: clamp(1.75rem, 8vw, 3.5rem); font-weight: 500; line-height: 1.1; letter-spacing: -.055em; overflow-wrap: anywhere; }
  .primary-navigation a::after { display: none; }
  .primary-navigation .sub-menu,
  .primary-navigation .sub-menu .sub-menu,
  .primary-navigation > ul > li:nth-last-child(-n+2) > .sub-menu,
  .primary-navigation > ul > li:nth-last-child(-n+2) .sub-menu .sub-menu {
    position: static; display: none; width: 100%; min-width: 0; max-width: 100%;
    padding: 0 0 8px 14px; border: 0; border-left: 1px solid var(--ward-line);
    background: transparent; visibility: visible; opacity: 1; transform: none; transition: none;
  }
  .primary-navigation li.is-submenu-open > .sub-menu { display: block; }
  .primary-navigation .sub-menu li { border-bottom: 0; }
  .primary-navigation .sub-menu a { padding: 9px 42px 9px 12px; font-size: clamp(1rem, 4.5vw, 1.35rem); line-height: 1.3; }
  .submenu-toggle { position: absolute; top: 8px; right: 0; display: grid; place-items: center; width: 40px; height: 42px; padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
  .submenu-toggle::after { content: ''; width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s ease; }
  .is-submenu-open > .submenu-toggle::after { transform: translateY(2px) rotate(225deg); }
  .site-main { padding-top: 74px; }
  .site-main--front { padding-top: 0; }
  .ward20-native-hero, .ward20-hero { min-height: 820px !important; padding: 130px var(--ward-edge) 42px !important; background-position: 60% center !important; }
  .ward20-native-hero h1, .ward20-hero .elementor-widget-heading:nth-child(2) .elementor-heading-title { font-size: 15vw; }
  .ward20-native-intro { grid-template-columns: 1fr; }
  .ward20-manifesto { grid-template-columns: 1fr !important; align-items: start !important; }
  .ward20-manifesto > :last-child { grid-column: auto; }
  .ward20-heading-row { align-items: flex-start !important; flex-direction: column !important; }
  .ward20-event-grid { grid-template-columns: 1fr; }
  .ward20-event-card, .ward20-event-card--featured { grid-row: auto; min-height: min(680px, 120vw); }
  .ward20-event-card__content h3, .ward20-event-card:not(.ward20-event-card--featured) .ward20-event-card__content h3 { font-size: clamp(2.8rem, 11vw, 5rem); }
  .ward20-gallery-preview .elementor-image-gallery .gallery { grid-template-columns: 1fr; }
  .ward20-gallery-grid .elementor-image-gallery .gallery { grid-template-columns: 1fr; }
  .ward20-gallery-preview .gallery-icon img, .ward20-gallery-preview .gallery-item:first-child img { min-height: 115vw; max-height: 680px; }
  .ward20-album-grid { grid-template-columns: 1fr !important; }
  .ward20-album-card, .ward20-album-card:last-child { grid-column: auto; min-height: 620px; }
  .ward20-album-card .elementor-widget-image img { height: min(115vw, 560px); }
  .ward20-visit { grid-template-columns: 1fr !important; }
  .ward20-news-grid { grid-template-columns: 1fr; }
  .ward20-news-card:last-child:nth-child(odd) { grid-column: auto; max-width: none; }
  .ward20-page-header { padding-top: 140px; }
  .ward20-news-grid--archive { margin-top: 65px; }
  .site-footer__top { grid-template-columns: 1fr; }
  .footer-navigation { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .tribe-events .tribe-events-l-container, #tribe-events-pg-template { padding-top: 140px !important; }
}

@media (max-width: 480px) {
  :root { --ward-edge: 20px; }
  .ward20-native-hero, .ward20-hero { min-height: 740px !important; }
  .ward20-feature__image { min-height: 120vw; }
  .ward20-feature__copy { padding: 50px 20px !important; }
  .ward20-details p { grid-template-columns: 1fr; gap: 3px; }
  .ward20-event-card, .ward20-event-card--featured { min-height: 138vw; }
  .ward20-event-card__excerpt { display: none; }
  .ward20-page-header h1, .ward20-page-hero .elementor-heading-title { font-size: 19vw; }
  .ward20-post-nav { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
