/* ==========================================================================
   The Experience Event Centre — Ajax, ON
   ----------------------------------------------------------------------------
   Built to match thearlingtonestate.com, the client's stated reference.
   Structure, spacing, type scale, tracking, transitions and interaction
   patterns are taken from their live theme stylesheet, saved for reference at
   sources/arlington-reference/arlington-style.css.

   Palette substitution — theirs → ours:
     #7d0809  oxblood accent   →  #AC905B  the client's classic gold
     #717171  body grey        →  unchanged
     #f4f4f4  section grey     →  unchanged
     #e5e6e1  footer           →  unchanged
     #d7d7d7  borders          →  unchanged
     #999999  hamburger/muted  →  unchanged

   Typography — theirs → ours:
     'AveresTitleRoman'  →  Cinzel   (licensed font; Cinzel is Trajan-based,
                                      the closest free match to their Roman
                                      titling face)
     'Barlow'            →  Barlow   (unchanged — same font they use)
     'Neutra Text'       →  Barlow   (licensed; Barlow with their 0.25em
                                      tracking covers the same small-caps UI role)
   ========================================================================== */

:root {
  --accent: #AC905B;          /* replaces Arlington's #7d0809 */
  --accent-dark: #8A7145;

  --grey-text: #717171;       /* their body colour */
  --grey-bg: #f4f4f4;         /* their section + header-scrolled bg */
  --grey-border: #d7d7d7;
  --grey-mid: #999999;        /* their hamburger bars */
  --grey-soft: #969696;
  --footer-bg: #e5e6e1;       /* their footer */
  --white: #fff;
  --black: #000;

  --ff-display: 'Cinzel', 'Times New Roman', serif;
  --ff-body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Their tracking pair: 0.25em on small uppercase UI, 0.05em on display */
  --track-ui: 0.25em;
  --track-display: 0.05em;

  /* Their transition timings */
  --t-fast: all 0.15s linear;
  --t-med: all 0.25s linear;
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);

  --gutter: 105px;            /* their .header-inner / .footer .container */
  --gutter-sm: 20px;
}

/* ==========================================================================
   Base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 14px;            /* their dominant UI size */
  line-height: 1.75;
  color: var(--grey-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.overflow { overflow: hidden; }

img, video, svg, iframe { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: absolute; top: -60px; left: 0;
  background: var(--accent); color: var(--white);
  padding: 10px 18px; z-index: 200;
  letter-spacing: var(--track-ui); text-transform: uppercase;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   Typography — their scale: h1 50px, h2 40px, h3 30px, small UI 14px
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: var(--track-display);
  line-height: 1.25;
  margin: 0 0 0.6em;
  color: var(--black);
}
h1 { font-size: 50px; line-height: 0.95; }
h2 { font-size: 40px; line-height: 1.05; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }

@media (max-width: 767px) {
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
}

/* Their small uppercase label — the 0.25em tracking is the signature */
.label {
  display: block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6em;
}

.intro-text { font-size: 16px; line-height: 1.9; }

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  max-width: 1600px;
}
@media (max-width: 1200px) { :root { --gutter: 50px; } }
@media (max-width: 767px)  { :root { --gutter: 22px; } }

.section { padding: 200px 0 160px; }        /* their .home-intro-section */
.section--grey { background: var(--grey-bg); }
.section--tight { padding: 120px 0 100px; }
@media (max-width: 991px) {
  .section { padding: 90px 0 70px; }
  .section--tight { padding: 70px 0 60px; }
}

/* Their two-column intro: left 34em, right 28.5em pushed right */
.intro-grid { display: flex; flex-wrap: wrap; gap: 60px; justify-content: space-between; }
.intro-left { max-width: 34em; flex: 1 1 420px; }
.intro-right { max-width: 28.5em; margin-left: auto; flex: 1 1 360px; }

/* ==========================================================================
   Links & the growing-bar hover
   Arlington has no .btn class. Their calls to action are text links with a
   1px vertical rule that grows from 100% to 160% height on hover.
   ========================================================================== */

.bar-link {
  color: inherit;
  display: inline-block;
  padding: 4px 0 4px 20px;
  position: relative;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
}
.bar-link:before {
  background: currentColor;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 600ms var(--ease-expo);
  width: 1px;
}
.bar-link:hover { opacity: 0.7; }
.bar-link:hover:before { height: 160%; }

.bar-link--accent { color: var(--accent); }

/* ==========================================================================
   Header — centred logo, hamburger left, contacts right.
   Transparent over the hero; at >70px scroll body gets .body-scroll and the
   bar fills with #f4f4f4 while the logo shrinks 96px → 66px.
   ========================================================================== */

.header {
  left: 0;
  position: fixed;
  top: 0;
  transition: var(--t-fast);
  width: 100%;
  z-index: 98;
}
.header-inner {
  margin: 0 auto;
  padding: 20px var(--gutter);
  position: relative;
  transition: var(--t-fast);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo { text-align: center; }
.header-logo img {
  width: 96px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  transition: var(--t-fast);
}

body.body-scroll .header,
body.nav-visible .header { background: var(--grey-bg); }
body.body-scroll .header-inner,
body.nav-visible .header-inner { padding-top: 10px; padding-bottom: 10px; }
body.body-scroll .header-logo img,
body.nav-visible .header-logo img { width: 66px; }

/* Contacts, far right */
.header-contacts {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  font-size: 12px;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  line-height: 1.9;
}
.header-contacts a { color: var(--grey-text); display: block; transition: var(--t-fast); }
.header-contacts a:hover { color: var(--accent) !important; }

/* Over the hero on the homepage the contacts are white */
body.home .header-contacts a { color: var(--white); }
body.home.body-scroll .header-contacts a,
body.home.nav-visible .header-contacts a { color: var(--grey-text); }

@media (max-width: 991px) { .header-contacts { display: none; } }

/* --- Hamburger (their #touch-menu, animating to an X) ---------------------
   The bars read as 50x20, but the button itself is padded out to a 44px-tall
   tap target. At 20px tall a deliberate, slow click lands a pixel or two
   outside and silently does nothing, which feels like the menu "sometimes
   works". Flex centring keeps the bars optically where they were. */
#touch-menu {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 44px;
  left: calc(var(--gutter) - 8px);
  margin: -22px 0 0;
  padding: 0 8px;
  position: absolute;
  top: 50%;
  touch-action: manipulation;   /* kill the 300ms mobile tap delay */
  width: 66px;
  z-index: 10;
}
#touch-menu span { display: block; position: relative; top: 0; width: 50px; }

/* Feedback before the click lands, so the control reads as live */
#touch-menu:hover span,
#touch-menu:hover span:after,
#touch-menu:hover span:before { background-color: var(--accent); }
#touch-menu:hover.on span { background-color: transparent !important; }
#touch-menu span,
#touch-menu span:after,
#touch-menu span:before {
  backface-visibility: hidden;
  background-color: var(--grey-mid);
  border-radius: 2px;
  height: 3px;
  transition: all 0.3s;
  width: 100%;
}
#touch-menu span:after,
#touch-menu span:before { content: ""; left: 0; position: absolute; top: -9px; }
#touch-menu span:after { top: 9px; }
#touch-menu span:before { width: 46px; }

#touch-menu.on span { background-color: transparent !important; width: 100%; }
#touch-menu.on span:before { transform: rotate(45deg) translate(5px, 5px); width: 100%; }
#touch-menu.on span:after { transform: rotate(-45deg) translate(7px, -8px); width: 100%; }

/* White bars over the homepage hero */
body.home #touch-menu span,
body.home #touch-menu span:after,
body.home #touch-menu span:before { background-color: var(--white); }
body.home #touch-menu.on span { background-color: transparent; }
body.body-scroll #touch-menu span,
body.body-scroll #touch-menu span:after,
body.body-scroll #touch-menu span:before,
body.nav-visible #touch-menu span,
body.nav-visible #touch-menu span:after,
body.nav-visible #touch-menu span:before { background-color: var(--grey-mid); }

/* ==========================================================================
   Side navigation — full-screen slide-in panel.
   Menu occupies the left 36%, a featured image slider the right 64%.
   ========================================================================== */

.side-nav {
  background: var(--grey-bg);
  height: 100%;
  left: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  width: 100%;
  z-index: 97;
}
.side-nav.active { transform: translateX(0); }
.side-nav-inner { overflow: hidden; padding-top: 120px; }

.navigation-wrap { float: left; padding: 40px var(--gutter-sm) 0; width: 36%; }
.navigation {
  font-family: var(--ff-display);
  font-size: 30px;
  letter-spacing: var(--track-display);
  line-height: 1.4;
  margin-left: auto;
  max-width: 410px;
}
.navigation ul { list-style-type: none; margin: 0; padding: 0; }
.navigation li { padding: 5px 0; }
.navigation a { color: var(--grey-text); transition: var(--t-fast); }
.navigation li:hover > a,
.navigation a[aria-current="page"] { color: var(--accent); }

.nav-meta {
  margin-top: 50px;
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  line-height: 2.1;
}
.nav-meta a:hover { color: var(--accent); }

/* Featured panel, right 64% */
.side-nav-tabs { float: left; width: 64%; }
.nav-slide-item {
  color: var(--grey-text);
  display: block;
  font-family: var(--ff-display);
  font-size: 25px;
  letter-spacing: var(--track-display);
  line-height: 1.2;
  padding-bottom: 40px;
  position: relative;
}
.nav-slide-item:hover { color: var(--accent); }

.nav-slide-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: calc(100vh - 250px);
  transition: var(--t-fast);
  background-color: var(--grey-border);
}
.nav-slide-item:hover .nav-slide-banner {
  transform: scale(1.02);
  box-shadow: 10px 10px 20px rgba(129, 129, 129, 0.55);
}
.nav-slide-content { bottom: 0; left: 0; padding-left: 110px; position: absolute; z-index: 2; }
.nav-slide-number {
  bottom: 0;
  color: var(--accent);
  display: block;
  font-size: 4em;
  left: 0;
  line-height: 0.8;
  opacity: 0.3;
  position: absolute;
  text-align: center;
  width: 105px;
  font-family: var(--ff-display);
}

@media (max-width: 991px) {
  .navigation-wrap { float: none; width: 100%; padding-top: 0; }
  .navigation { font-size: 24px; margin: 0 auto; }
  .side-nav-tabs { display: none; }
  .side-nav-inner { padding-top: 100px; }
}

/* ==========================================================================
   Hero — their .home-slide-inner: 100vh, 50% black overlay, centred white
   copy, vertical pagination dots, contacts pinned bottom.
   ========================================================================== */

.hero { position: relative; }
.hero-inner { height: 100vh; overflow: hidden; position: relative; }

/* Decorative layers are pointer-transparent. Full-bleed absolute elements
   sitting under the fixed header will otherwise swallow clicks aimed at the
   hamburger — the reason the menu misfired on the homepage but not on inner
   pages, where the banner is shorter. */
.hero-banner,
.hero-banner video,
.hero-banner img {
  height: 100%; width: 100%;
  left: 0; top: 0;
  position: absolute;
  object-fit: cover;
  background-color: var(--grey-mid);
  pointer-events: none;
}

.hero-overlay {
  background: var(--black);
  opacity: 0.5;          /* their exact value */
  height: 100%; width: 100%;
  left: 0; top: 0;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  color: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 3;
}
.hero-content h1 {
  color: inherit;
  font-size: 50px;
  letter-spacing: var(--track-display);
  line-height: 0.9;
  margin: 0 0 0.15em;
  text-transform: uppercase;
}
.hero-content p {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  margin-bottom: 2.4em;
}
@media (max-width: 767px) { .hero-content h1 { font-size: 32px; } }

/* Vertical dots beside the hero */
.hero-pagination {
  left: auto;
  position: absolute;
  right: calc(50% + 690px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.hero-dot {
  background: var(--white);
  display: block;
  height: 10px; width: 10px;
  margin: 35px 0;
  opacity: 1;
  border: 0;
}
.hero-dot.is-active { background: var(--accent); }
@media (max-width: 1600px) { .hero-pagination { display: none; } }

.hero-footer {
  bottom: 30px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  z-index: 3;
}
.hero-footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.hero-contacts { text-align: right; }
.hero-contacts a:hover { opacity: 0.7; }

/* ==========================================================================
   Page banner — inner pages
   ========================================================================== */

.page-banner { position: relative; height: 60vh; min-height: 420px; overflow: hidden; }
.page-banner img { height: 100%; width: 100%; object-fit: cover; position: absolute; left: 0; top: 0; pointer-events: none; }
.page-banner-overlay { background: var(--black); opacity: 0.5; position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.page-banner-content {
  color: var(--white);
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 100%; z-index: 3;
}
.page-banner-content h1 { color: inherit; text-transform: uppercase; margin: 0; }

/* ==========================================================================
   Featured items — their 3-up grid with staggered reveals
   ========================================================================== */

.featured-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px)  { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }

.featured-item { display: block; }
.featured-item-banner {
  background: var(--grey-border);
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 26px;
}
.featured-item-banner img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-item:hover .featured-item-banner img { transform: scale(1.04); }
.featured-item h3 { margin-bottom: 0.4em; text-transform: uppercase; font-size: 24px; }
.featured-item p { font-size: 14px; }

/* Stagger, matching their nth-child delays */
.featured-grid > *:nth-child(3n+2) .fade-top { animation-delay: 200ms; }
.featured-grid > *:nth-child(3n+3) .fade-top { animation-delay: 300ms; }

/* ==========================================================================
   Reveal animations — their fadeIn family, 1s, ease, fill-mode both.
   nav.js adds .animated once the element enters the viewport.
   ========================================================================== */

.hidden-block { opacity: 0; }
.animated { animation-duration: 1s; animation-fill-mode: both; animation-timing-function: ease; opacity: 1; }

.fade-top.animated { animation-name: fadeInUp; }
.fade-bottom.animated { animation-name: fadeInDown; }
.fade-left.animated { animation-name: fadeInLeft; }
.fade-right.animated { animation-name: fadeInRight; }
.fade.animated { animation-name: fadeIn; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 40px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translate3d(0, -40px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translate3d(-40px, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translate3d(40px, 0, 0); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hidden-block { opacity: 1; }
  .animated { animation: none !important; }
  * { transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Gallery + lightbox
   ========================================================================== */

.gallery-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid > *:nth-child(2n+2) .fade-top { animation-delay: 200ms; }

.gallery-item { aspect-ratio: 1 / 1; background: var(--grey-border); display: block; overflow: hidden; cursor: pointer; }
.gallery-item img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.5s ease, opacity var(--t-med); }
.gallery-item:hover img { transform: scale(1.04); opacity: 0.9; }

.lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 200;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-height: 86vh; max-width: 92vw; object-fit: contain; }
.lightbox__caption {
  bottom: 30px; left: 50%;
  color: rgba(255,255,255,0.75);
  font-size: 12px; letter-spacing: var(--track-ui); text-transform: uppercase;
  position: absolute; transform: translateX(-50%); text-align: center;
  padding: 0 20px;
}
.lightbox__btn {
  align-items: center; color: var(--white); display: inline-flex;
  height: 56px; justify-content: center; opacity: 0.75;
  position: absolute; transition: var(--t-fast); width: 56px;
}
.lightbox__btn:hover { opacity: 1; }
.lightbox__btn svg { height: 30px; width: 30px; }
.lightbox__close { right: 20px; top: 20px; }
.lightbox__prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 10px; top: 50%; transform: translateY(-50%); }
body.lightbox-open { overflow: hidden; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { margin: 0 auto; max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--grey-border); }
.faq-item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--ff-display);
  font-size: 22px;
  gap: 20px;
  justify-content: space-between;
  color: var(--black);
  list-style: none;
  padding: 24px 0;
  transition: var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:after { color: var(--accent); content: "+"; flex-shrink: 0; transition: var(--t-med); }
.faq-item[open] summary:after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item__body { color: var(--grey-text); max-width: 70ch; padding-bottom: 24px; font-size: 15px; }

/* ==========================================================================
   Contact — details + map (no form, per the questionnaire)
   ========================================================================== */

.contact-grid { display: grid; gap: 80px; grid-template-columns: 1fr; }
@media (min-width: 992px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-row { border-bottom: 1px solid var(--grey-border); padding: 22px 0; }
.contact-row:first-child { border-top: 1px solid var(--grey-border); }
.contact-row dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contact-row dd { font-size: 18px; margin: 0; color: var(--black); }
.contact-row dd a:hover { color: var(--accent); }

.map-frame { aspect-ratio: 4 / 3; border: 1px solid var(--grey-border); width: 100%; }
@media (min-width: 992px) { .map-frame { aspect-ratio: auto; height: 100%; min-height: 460px; } }

/* ==========================================================================
   Instagram feed
   ========================================================================== */

.ig-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px)  { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .ig-grid { grid-template-columns: repeat(6, 1fr); } }
.ig-tile { aspect-ratio: 1 / 1; background: var(--grey-bg); display: block; overflow: hidden; }
.ig-tile img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ig-tile:hover img { transform: scale(1.06); }
.ig-placeholder {
  align-items: center; border: 1px solid var(--grey-border); color: var(--grey-soft);
  display: flex; font-size: 11px; justify-content: center;
  letter-spacing: var(--track-ui); text-transform: uppercase;
}

/* ==========================================================================
   Virtual tour (Matterport-ready)
   ========================================================================== */

.tour-frame, .tour-placeholder {
  aspect-ratio: 16 / 9; border: 1px solid var(--grey-border);
  background: var(--grey-bg); width: 100%;
}
.tour-placeholder {
  align-items: center; border-style: dashed; display: flex;
  flex-direction: column; gap: 14px; justify-content: center;
  padding: 30px; text-align: center;
}
.tour-placeholder svg { color: var(--accent); height: 44px; width: 44px; }
.tour-placeholder strong { color: var(--black); font-family: var(--ff-display); font-size: 22px; font-weight: 400; }

/* ==========================================================================
   Reviews (Plandaro) — pinned to data-theme="light" in the markup
   ========================================================================== */

.reviews-frame { margin: 0 auto; max-width: 920px; }
.plandaro-widget, .plandaro-widget * { font-family: var(--ff-body) !important; }
.plandaro-widget p, .plandaro-widget label,
.plandaro-widget h1, .plandaro-widget h2, .plandaro-widget h3 { color: var(--grey-text) !important; opacity: 1 !important; }
.plandaro-widget a { color: var(--accent); }
body .plandaro-widget .pw-rating-picker,
body .plandaro-widget .pw-rating-picker > * { color: var(--grey-border) !important; }
body .plandaro-widget .pw-rating-picker .active,
body .plandaro-widget .pw-rating-picker > *:hover,
body .plandaro-widget-header .pw-stars,
body .plandaro-widget-review .pw-stars { color: var(--accent) !important; }
.plandaro-widget input, .plandaro-widget textarea {
  background: var(--white) !important; border: 1px solid var(--grey-border) !important;
  border-radius: 0 !important; color: var(--black) !important;
}
.plandaro-widget .pw-submit {
  background: var(--accent) !important; border-radius: 0 !important; color: var(--white) !important;
  letter-spacing: var(--track-ui); text-transform: uppercase;
}

/* ==========================================================================
   Consultation band — their .home-cta-section
   ========================================================================== */

.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band img { height: 100%; width: 100%; object-fit: cover; position: absolute; inset: 0; pointer-events: none; }
.cta-band-overlay { background: var(--black); opacity: 0.5; position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.cta-band-inner { color: var(--white); padding: 180px 0; position: relative; z-index: 3; }
.cta-band-inner h2 { color: inherit; text-transform: uppercase; }
@media (max-width: 991px) { .cta-band-inner { padding: 100px 0; } }

/* ==========================================================================
   Footer — their #e5e6e1 band
   ========================================================================== */

.footer { background: var(--footer-bg); color: var(--grey-text); position: relative; }
.footer-top { padding: 130px 0 60px; position: relative; }
@media (max-width: 991px) { .footer-top { padding: 70px 0 40px; } }

.footer-grid { display: grid; gap: 50px; grid-template-columns: 1fr; }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1100px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

.footer-logo img { width: 120px; height: auto; margin-bottom: 26px; }

.footer h4 {
  color: var(--accent);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  margin-bottom: 1.6em;
}
.footer ul { list-style-type: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.7em; }
.footer a:hover { color: var(--accent); }

.footer-contacts p { margin: 0 0 1.1em; }
.footer-contacts p:last-child { margin: 0; }

.footer-social { margin-top: 22px !important; }
.footer-social li { display: inline-block; margin-right: 10px; vertical-align: middle; margin-bottom: 0; }
.footer-social a { display: inline-block; vertical-align: middle; transition: var(--t-fast); }
.footer-social a:hover { opacity: 0.6; }
.footer-social svg { height: 24px; width: 24px; }

.footer-bottom {
  border-top: 1px solid var(--grey-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 26px 0 40px;
  font-size: 11px;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
}

/* ==========================================================================
   404
   ========================================================================== */

.error-page { align-items: center; display: flex; justify-content: center; min-height: 100vh; padding: 120px 0; text-align: center; }
.error-page img { height: 140px; margin: 0 auto 40px; width: auto; }
.error-code { color: var(--accent); font-family: var(--ff-display); font-size: 80px; line-height: 1; }
