@charset "UTF-8";
/*
* Mixin for easy media queries
* @include bp(tablet-only) { SCSS here };
* Default css is for mobile screens
*/
/* ---------------------------------------------------------------------------
   Moods Interior — design tokens
   Sourced from the retired Looka/Duda site; see reference/README.md.
   Josefin Sans is loaded from Google Fonts in functions.php, so no @font-face
   declarations are needed here.
   --------------------------------------------------------------------------- */
/* Sass variables (for use inside mixins / maths) ---------------------------- */
/* CSS custom properties (what the components actually consume) -------------- */
:root {
  --c-slate: #444F59; /* primary dark: sections, footer, buttons, overlay */
  --c-slate-2: #3B4650; /* slightly darker for footer bottom / hover */
  --c-slate-text: #444F5A;
  --c-ink: #1E1E1E; /* body text on white */
  --c-muted: #6B7379;
  --c-offwhite: #ECECEC;
  --c-bg-light: #F9F9F9;
  --c-bg-light-2: #F5F5F5;
  --c-line: #E3E6E8;
  --c-nav-pill: #333333;
  --c-mint: #DCF3E4;
  --c-green: #4AA485;
  --c-star: #111111;
  --font: "Josefin Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --container: 1400px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(64px, 9vw, 110px);
  --radius-card: 12px;
  --radius-pill: 50px;
  --shadow-card: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(68,79,89,.08);
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ===========================================================================
   Moods Interior — site styles
   Rebuilt from the retired Looka/Duda original (see reference/README.md).
   =========================================================================== */
/* ==========================================================================
   Moods Interior — Home page styles
   Rebuilt from the Looka/Duda site (see reference/README.md for tokens)
   ========================================================================== */
/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input, textarea {
  font: inherit;
}

abbr[title] {
  text-decoration: none;
}

hr {
  border: 0;
}

.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--c-slate);
  color: #fff;
  border-radius: 6px;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

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

/* --------------------------------------------------------------------------
   3. Buttons & shared section heads
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 30px 10px; /* Josefin sits high — nudge optical centre */
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.4;
  border-radius: var(--radius-pill);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn--outline {
  color: #fff;
  border: 1px solid var(--c-offwhite);
  background: transparent;
}

.btn--outline:hover {
  background: #fff;
  color: var(--c-slate);
}

.btn--solid {
  color: #fff;
  background: var(--c-slate);
  border: 1px solid var(--c-slate);
  border-radius: 4px;
  min-width: 240px;
  text-align: center;
}

.btn--solid:hover {
  background: var(--c-slate-2);
}

.btn:active {
  transform: translateY(1px);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.section-head__title {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 700;
  color: var(--c-slate-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-head__title--spaced {
  color: #111;
  letter-spacing: 0.28em;
  padding-left: 0.28em;
  font-size: clamp(28px, 3.6vw, 40px);
}

.section-head__sub {
  margin-top: 12px;
  font-size: 18px;
  color: var(--c-ink);
}

.section-head__eyebrow {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-slate);
}

.divider--mint {
  height: 2px;
  width: min(100%, 1000px);
  margin: 26px auto 34px;
  background: linear-gradient(89deg, transparent, var(--c-mint), transparent);
}

/* --------------------------------------------------------------------------
   4. Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #fff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.brand__name {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 15px;
  padding-top: 3px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu__item {
  position: relative;
}

.menu__item > a {
  display: inline-block;
  padding: 12px 26px 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color: #fff;
  border-radius: 30px;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.menu__item > a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.menu__item--current > a {
  background: var(--c-nav-pill);
  color: #FAFAFA;
}

.menu__caret {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  margin-bottom: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 230px;
  padding: 10px 0;
  background: #fff;
  color: var(--c-ink);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}

.sub-menu::before {
  content: "";
  position: absolute;
  inset: -12px 0 auto 0;
  height: 12px;
}

.sub-menu a {
  display: block;
  padding: 9px 20px 7px;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.sub-menu a:hover {
  background: var(--c-bg-light-2);
  color: var(--c-slate);
}

.menu__item--has-children:hover > .sub-menu,
.menu__item--has-children:focus-within > .sub-menu,
.menu__item--has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 100svh, 930px);
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s var(--ease), transform 6s linear;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::before { /* slate overlay @ 50%, as on the original */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(68, 79, 89, 0.5);
}

.hero__content {
  padding: 120px var(--gutter) 80px;
}

.hero__title {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  letter-spacing: 0.22em;
  padding-left: 0.22em; /* balance the trailing tracking */
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero__tagline {
  margin-top: 18px;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
}

.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  background: #fff;
  border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(14px);
    opacity: 0;
  }
}
/* --------------------------------------------------------------------------
   6. Intro / Namaste
   -------------------------------------------------------------------------- */
.intro {
  background: var(--c-slate);
  color: var(--c-offwhite);
  padding: clamp(96px, 14vw, 200px) 0;
  text-align: center;
}

.intro__inner {
  max-width: 1000px;
}

.intro__title {
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-offwhite);
}

.intro__lead {
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.intro__text {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 34px;
}

/* --------------------------------------------------------------------------
   7. Portfolio gallery (masonry via columns)
   -------------------------------------------------------------------------- */
.portfolio {
  padding: var(--section-y) 0 calc(var(--section-y) * 0.8);
  background: #fff;
}

.gallery {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.gallery__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: var(--c-bg-light-2);
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery__item--tall img {
  aspect-ratio: 4/5;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 20px 20px;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: linear-gradient(to top, rgba(68, 79, 89, 0.85), rgba(68, 79, 89, 0));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.gallery__item:hover .gallery__caption,
.gallery__item:focus-visible .gallery__caption {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   8. Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
  padding: var(--section-y) 0;
  background: #fff;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin-inline: auto;
}

.review {
  padding: 28px 28px 30px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-card);
  background: #fff;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.review:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.review__head {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  grid-template-areas: "avatar name meta";
  align-items: center;
  column-gap: 14px;
  margin-bottom: 18px;
}

.review__avatar {
  grid-area: avatar;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review__name {
  grid-area: name;
  font-size: 16px;
  font-weight: 400;
  color: var(--c-slate-text);
}

.review__meta {
  grid-area: meta;
  text-align: right;
  line-height: 1.2;
}

.stars {
  display: block;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--c-star);
}

.review__date {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
}

.review__text {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  color: var(--c-ink);
}

/* --------------------------------------------------------------------------
   9. Contact
   -------------------------------------------------------------------------- */
.contact {
  padding: calc(var(--section-y) * 0.7) 0 var(--section-y);
  background: #fff;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact__label {
  font-size: 16px;
  font-weight: 600;
  margin: 26px 0 4px;
}

.contact__info p {
  color: var(--c-ink);
}

.contact__info a:hover {
  color: var(--c-green);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-weight: 600;
  font-size: 15px;
}

.field__label abbr {
  color: var(--c-slate);
}

.field input, .field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #C9CED2;
  border-radius: 3px;
  background: var(--c-bg-light);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-slate);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(68, 79, 89, 0.12);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   10. Clients
   -------------------------------------------------------------------------- */
.clients {
  padding: var(--section-y) 0;
  background: var(--c-bg-light);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 24px;
  background: #fff;
  border-radius: 6px;
}

.logo-grid li {
  display: grid;
  place-items: center;
  aspect-ratio: 1.15;
  padding: 8%;
}

.logo-grid img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}

.logo-grid li:hover img {
  filter: none;
  opacity: 1;
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-slate);
  color: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 80px;
  align-items: start;
  padding: 56px 0 44px;
}

.site-footer__brand img {
  width: 135px;
  height: 135px;
  margin-bottom: 20px;
}

.site-footer__address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer a:hover {
  color: var(--c-mint);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, auto));
  gap: 24px 120px;
  padding-top: 12px;
}

.site-footer__nav li {
  margin-bottom: 8px;
  font-size: 16px;
}

.site-footer__bottom {
  padding: 16px 0;
  font-size: 13px;
  background: var(--c-slate-2);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__bottom p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. Floating contact button
   -------------------------------------------------------------------------- */
.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chat-fab__btn {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-fab__label {
  padding: 8px 14px 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--c-ink);
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.chat-fab__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: var(--c-slate);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(68, 79, 89, 0.35);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}

.chat-fab__btn:hover .chat-fab__icon {
  transform: scale(1.06);
  background: var(--c-green);
}

.chat-fab__menu {
  display: grid;
  gap: 6px;
  padding: 10px;
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.chat-fab__menu[hidden] {
  display: none;
}

.chat-fab__menu a {
  display: block;
  padding: 8px 12px 6px;
  border-radius: 8px;
  font-weight: 400;
  color: var(--c-ink);
}

.chat-fab__menu a:hover {
  background: var(--c-bg-light-2);
  color: var(--c-slate);
}

/* --------------------------------------------------------------------------
   13. Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(20, 24, 28, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  margin: 0;
  max-width: min(92vw, 1400px);
  max-height: 90vh;
  text-align: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  margin-inline: auto;
  border-radius: 4px;
}

.lightbox__caption {
  margin-top: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lightbox__close, .lightbox__nav {
  position: absolute;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background-color 0.2s var(--ease);
}

.lightbox__close:hover, .lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lightbox__close {
  top: 16px;
  right: 16px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 56px;
}

.lightbox__nav--prev {
  left: 12px;
}

.lightbox__nav--next {
  right: 12px;
}

/* --------------------------------------------------------------------------
   14. Reveal-on-scroll (progressive enhancement)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* --------------------------------------------------------------------------
   15. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .menu__item > a {
    padding-inline: 18px;
  }
  .logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .gallery {
    gap: 12px;
  }
  .gallery__col {
    gap: 12px;
  }
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer__nav {
    gap: 16px 48px;
  }
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  /* mobile nav */
  .nav-toggle {
    display: flex;
  }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    background: rgba(68, 79, 89, 0.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
  }
  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .menu {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .menu__item > a {
    font-size: 20px;
    padding: 12px 28px 10px;
  }
  .menu__item--current > a {
    background: rgba(255, 255, 255, 0.14);
  }
  .sub-menu {
    position: static;
    transform: none;
    min-width: 0;
    padding: 4px 0 8px;
    background: transparent;
    color: #fff;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .menu__item--has-children.is-open > .sub-menu {
    display: block;
  }
  .sub-menu a {
    padding: 6px 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
  }
  .sub-menu a:hover {
    background: transparent;
    color: #fff;
  }
  .site-header {
    background: rgba(0, 0, 0, 0.28);
  }
}
@media (max-width: 640px) {
  .brand__name {
    display: none;
  }
  .hero {
    min-height: 82svh;
  }
  .hero__title {
    letter-spacing: 0.16em;
    padding-left: 0.16em;
  }
  .gallery {
    flex-direction: column;
  }
  .gallery__item img, .gallery__item--tall img {
    aspect-ratio: 16/10;
  }
  .gallery__caption { /* mobile: caption bar always visible, as on the original */
    position: static;
    opacity: 1;
    transform: none;
    padding: 12px 16px 10px;
    font-size: 16px;
    background: #A9ADB1;
    color: #fff;
  }
  .gallery__item {
    border-radius: 8px;
  }
  .reviews {
    grid-template-columns: 1fr;
  }
  .review__head {
    grid-template-columns: 1fr;
    grid-template-areas: "avatar" "name" "meta";
    justify-items: center;
    row-gap: 8px;
    text-align: center;
  }
  .review__meta {
    text-align: center;
  }
  .review__text {
    text-align: center;
  }
  .form-row--2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .btn--solid {
    width: 100%;
  }
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }
  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .chat-fab {
    right: 16px;
    bottom: 16px;
  }
}
/* --------------------------------------------------------------------------
   WordPress integration
   Additive only — makes core/editor output, interior pages and the live
   contact form sit correctly inside the design above.
   -------------------------------------------------------------------------- */
/* Admin bar must not hide the fixed header */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
/* Core accessibility helper (mirrors .visually-hidden) */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed !important;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  padding: 12px 20px;
  background: var(--c-slate);
  color: #fff;
  z-index: 1000;
}

/* Custom logo swaps in for the bundled mark without breaking the lockup */
.brand .custom-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* Interior pages: compact hero so header contrast still works */
.page-hero {
  background: var(--c-slate);
  color: #fff;
  padding: calc(var(--section-y) + 62px) 0 var(--section-y);
  text-align: center;
}

.page-hero__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.page-hero__sub {
  margin-top: 12px;
  font-weight: 300;
  color: var(--c-offwhite);
}

/* Editor content */
.entry-content {
  padding: var(--section-y) 0;
}

.entry-content > * {
  margin-bottom: 1.2em;
}

.entry-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 1.6em 0 0.6em;
}

.entry-content h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  margin: 1.4em 0 0.5em;
}

.entry-content a {
  color: var(--c-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content ul, .entry-content ol {
  padding-left: 1.4em;
  margin-bottom: 1.2em;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin-bottom: 0.4em;
}

.entry-content blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--c-mint);
  color: var(--c-muted);
  font-style: italic;
}

.entry-content img, .entry-content figure {
  border-radius: 6px;
}

.entry-content figcaption {
  font-size: 14px;
  color: var(--c-muted);
  margin-top: 8px;
  text-align: center;
}

/* Core alignment classes */
.alignleft {
  float: left;
  margin: 0.4em 1.6em 1.2em 0;
}

.alignright {
  float: right;
  margin: 0.4em 0 1.2em 1.6em;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.alignwide {
  width: min(100%, 1100px);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.wp-caption {
  max-width: 100%;
}

/* Contact form — live status messages */
.form-notice {
  margin: 0 0 20px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.5;
}

.form-notice--ok {
  background: #EAF6F0;
  border: 1px solid #BFE3D2;
  color: #1F6B4C;
}

.form-notice--error {
  background: #FDECEC;
  border: 1px solid #F3C9C9;
  color: #8E2727;
}

.form-notice ul {
  margin: 8px 0 0;
  padding-left: 18px;
  list-style: disc;
}

.form-notice li {
  margin: 2px 0;
}

.field input[aria-invalid=true],
.field textarea[aria-invalid=true] {
  border-color: #C25858;
}

/* Honeypot — hidden from people, visible to naive bots */
.field--hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Archives */
.archive-list {
  padding: var(--section-y) 0;
  display: grid;
  gap: 32px;
}

.archive-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.archive-card__body {
  padding: 24px;
}

.archive-card__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--c-slate-text);
}

.archive-card__meta {
  font-size: 14px;
  color: var(--c-muted);
  margin-top: 6px;
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding-bottom: var(--section-y);
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  color: var(--c-slate-text);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--c-slate);
  border-color: var(--c-slate);
  color: #fff;
}

/* 404 */
.error-404 {
  text-align: center;
  padding: var(--section-y) 0;
}

.error-404__code {
  font-size: clamp(64px, 12vw, 128px);
  font-weight: 700;
  color: var(--c-mint);
  line-height: 1;
}

/* Empty-state hint shown to logged-in editors only */
.editor-hint {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border: 1px dashed var(--c-line);
  border-radius: 6px;
  background: var(--c-bg-light);
  color: var(--c-muted);
  font-size: 14px;
  text-align: center;
}

/* Paginated page/post links (wp_link_pages) */
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 32px;
  font-size: 15px;
  color: var(--c-muted);
}

.page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  color: var(--c-slate-text);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.page-links a:hover {
  background: var(--c-slate);
  border-color: var(--c-slate);
  color: #fff;
}
