/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./css/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #1a1a1a;
}
a:hover {
  text-decoration: none;
}
p,
ul,
ol {
  margin: 0 0 1.65em 0;
  color: #525866;
}
p,
li {
  line-height: 1.65;
}
a {
  text-decoration: none;
  color: #1a1a1a;
}
.text-container {
  padding: 20px;
}
/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}
.header-logo {
  width: 400px;
  height: auto;
  max-width: 80%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 40px;
}
/* Logo text fallback */
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
}
.site-logo a,
.site-logo img {
  display: block;
  text-decoration: none;
}
/* Primary nav */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 48px;
}
.nav-list a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-list a:hover,
.nav-list .current-menu-item > a,
.nav-list .current_page_item > a {
  color: var(--color-accent);
}
/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  margin-top: 80px;
  border-top: none;
}
.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px 40px;
}
/* Footer nav */
.footer-nav-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  gap: 40px;
}
.footer-nav-list a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text);
  text-decoration: none;
}
.footer-nav-list a:hover {
  color: var(--color-accent);
}
/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid black;
  margin: 0 0 32px;
}
/* Bottom row: social + logo */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  color: var(--color-text);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-icon:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.footer-social-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text);
  margin: 0;
}
.footer-logo img {
  max-height: 64px;
  width: auto;
}
/* Legal row */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--color-accent);
}
/* ============================================
   RESPONSIVE HEADER / FOOTER
   ============================================ */
@media (max-width: 768px) {
  .header-inner {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .site-header--dark {
    position: sticky !important;
  }
  .nav-list {
    gap: 24px;
  }
  .footer-inner {
    padding: 0 20px 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
footer ul {
  display: flex;
  text-decoration: none;
  list-style: none;
  margin-right: 20px;
  padding: 20px;
}
.footer-social-text {
  padding-left: 20px;
  border-left: 1px solid black;
}
.home .projects-index {
  max-height: 100vh;
}
/* ============================================
   ABOUT PAGE — SOLID CONCEPT
   Matches the design from solid_about.png
   ============================================ */
/* --- Variables (should match your global theme vars) --- */
:root {
  --color-accent: #ff5b5d; /* the red used for titles & active nav */
  --color-text: #2a2c29;
  --color-muted: #555555;
  --color-bg: #ffffff;
  --color-border: #e0e0e0;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --container-width: 1100px;
  --section-padding: 80px 0;
  --gap-md: 32px;
  --gap-lg: 60px;
}
/* --- Base resets (if not already in your global CSS) --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* --- Container --- */
.about-page .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}
/* --- Section Title (WHO WE ARE / OUR ROLES) --- */
.about-page .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: var(--gap-md);
}
/* ============================================
   WHO WE ARE
   ============================================ */
.who-we-are {
  padding: var(--section-padding);
}
.who-content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  max-width: 860px;
  margin-left: auto; /* pushes content toward right, matching the design */
}
.who-block p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text);
  margin: 0 0 0.75em;
}
.who-block p:last-child {
  margin-bottom: 0;
}
.who-block .lead strong {
  font-weight: 700;
}
.who-block .sub-heading {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.6em;
}
/* ============================================
   OUR ROLES
   ============================================ */
.our-roles {
  padding: var(--section-padding);
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  align-items: start;
}
/* Individual card — no box, no border, just layout */
.role-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Portrait image */
.role-image {
  width: 100%;
  max-width: 230px;
}
.role-image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/4;
  filter: grayscale(20%);
}
/* Placeholder when no image is set */
.role-image-placeholder {
  width: 100%;
  max-width: 230px;
  aspect-ratio: 3/4;
  background-color: #d0d0d0;
}
/* Role title */
.role-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-accent);
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0 0 8px;
}
/* Role body copy */
.role-content p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0 0 0.65em;
}
.role-content p:last-child {
  margin-bottom: 0;
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .about-page .container {
    padding: 0 20px;
  }
  .who-we-are,
  .our-roles {
    padding: 48px 0;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .role-image {
    max-width: 160px;
  }
}
/* ============================================
   CONTACT PAGE — SOLID CONCEPT
   Full-screen dark layout
   ============================================ */
/* Dark page body */
.dark-page {
  background-color: #1c1c1c;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Dark header overrides */
.site-header--dark {
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.site-header--dark .logo-text {
  color: #ffffff;
}
.site-header--dark .nav-list a {
  color: #ffffff;
}
.site-header--dark .nav-list a:hover,
.site-header--dark .nav-list .current-menu-item > a,
.site-header--dark .nav-list .current_page_item > a {
  color: var(--color-accent);
}
/* ============================================
   CONTACT PAGE LAYOUT
   ============================================ */
.contact-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 120px 40px 80px; /* top pad clears the absolute header */
}
.contact-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
/* "CONTACT" label */
.contact-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin: 0 0 24px;
}
/* Logo area */
.contact-logo-placeholder {
  margin-bottom: 56px;
}
.contact-logo-placeholder img {
  width: auto;
  max-width: 120px;
  height: auto;
}
/* Placeholder box — remove once you add the real logo */
.logo-box-placeholder {
  width: 90px;
  height: 90px;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-box-placeholder span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}
/* Contact details block */
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.contact-line {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.9;
  transition: color 0.2s;
}
.contact-line:hover {
  color: var(--color-accent);
}
/* Instagram line — inline icon + handle */
.contact-line--ig {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-line--ig svg {
  flex-shrink: 0;
  opacity: 0.85;
}
/* Website line — slightly more spacing above */
.contact-line--website {
  margin-top: 12px;
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
  .contact-page {
    padding: 100px 24px 60px;
  }
  .contact-line {
    font-size: 0.95rem;
  }
}
/* ============================================
   PROJECTS INDEX PAGE
   ============================================ */
/*
   STACKING ORDER:
   z-index 0 — .projects-bg-layer    (background images, behind everything)
   z-index 1 — .projects-overlay     (dark dimmer on top of images)
   z-index 2 — .projects-center      (text content, on top of everything)
*/
/* The body bg must be dark but NOT opaque — otherwise it covers the bg layers */
.dark-page {
  background-color: #1c1c1c;
}
/* ---- Background layer system ---- */
.projects-bg-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.projects-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: opacity;
}
.projects-bg-layer.is-active {
  opacity: 1;
}
/* ---- Dark overlay ---- */
/* This sits above the bg images and provides the dark tint.
   It must NOT cover the bg-wrap — that's why bg-wrap is z-index 0
   and overlay is z-index 1. The body background sits behind z-index 0,
   so we make the overlay always visible at base opacity. */
.projects-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(28, 28, 28, 0.78);
  pointer-events: none;
  transition: background 0.5s ease;
}
/* Lighten overlay on hover so the image shows through more */
.projects-index.has-hover .projects-overlay {
  background: rgba(28, 28, 28, 0.48);
}
/* ---- Page layout ---- */
.projects-index {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* No background here — let .dark-page body handle base colour */
}
/* ---- Centred content ---- */
.projects-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
}
.projects-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin: 0 0 20px;
}
/* ---- Project list ---- */
.projects-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.projects-item {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  line-height: 2.2;
  display: block;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}
.projects-item:hover {
  color: var(--color-accent);
  letter-spacing: 0.18em;
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
  .projects-center {
    padding: 100px 24px 60px;
  }
  .projects-item {
    font-size: 0.9rem;
  }
}
/* ============================================
   SINGLE PROJECT PAGE
   Two explicit column divs — images flow
   naturally at their own aspect ratios.
   Right column is narrower and offset down
   to create the staggered mosaic effect.
   ============================================ */
.single-project {
  padding: 20px 0 20px;
}
.single-project .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
/* ---- Breadcrumb ---- */
.project-breadcrumb {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}
.project-breadcrumb .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  text-transform: uppercase;
  text-decoration: none;
  margin: 0;
}
.project-breadcrumb .section-title:hover {
  opacity: 0.75;
}
.breadcrumb-current {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  text-transform: uppercase;
}
/* ============================================
   GALLERY — two explicit column divs
   ============================================ */
.project-gallery {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 60px;
}
/* Left column: wider, starts at the top */
.gallery-col--left {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Right column: narrower, pushed down to stagger */
.gallery-col--right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* ---- Individual image items ---- */
.gallery-item {
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto; /* natural aspect ratio — no cropping */
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}
/* ============================================
   FANCYBOX OVERRIDES
   ============================================ */
.fancybox-bg {
  background: #1c1c1c;
}
.fancybox-is-open .fancybox-bg {
  opacity: 0.96;
}
.fancybox-toolbar .fancybox-button,
.fancybox-navigation .fancybox-button {
  color: #ffffff;
  background: rgba(28, 28, 28, 0.5);
}
.fancybox-caption {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
/* ---- Project description ---- */
.project-description {
  max-width: 700px;
  margin: 0 auto 60px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-muted);
}
/* ---- Contact CTA ---- */
.project-cta {
  text-align: center;
  padding: 40px 0 20px;
}
.project-cta-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  font-weight: bold;
  transition: color 0.2s, border-color 0.2s;
}
.project-cta-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
  .single-project .container {
    padding: 0 16px;
  }
  .project-gallery {
    flex-direction: column;
  }
  .gallery-col--left,
  .gallery-col--right {
    flex: unset;
    width: 100%;
    margin-top: 0;
  }
  .social-icon {
    min-width: 36px;
  }
}
.front-logo {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100px;
}

/*# sourceMappingURL=style-index.css.map*/