/* ==========================================================================
   Stonehaven Paving & Landscapes
   Palette: monotone — black / white / gray
   Layout: flexbox throughout, responsive, mobile hamburger nav
   ========================================================================== */

:root {
  --black: #000;
  --black-soft: #1d1d1d;
  /* neutral accent grays (replacing the former gold) */
  --accent: #4a4a4a;
  --accent-deep: #2e2e2e;
  --white: #ffffff;
  --paper: #f4f4f3;
  --line: #e3e3e1;
  --ink: #232323;
  --muted: #6b6b6b;

  --container: 1180px;
  --radius: 4px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

/* ------------------------------------------------------------------ Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --------------------------------------------------------------- Helpers */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section__head {
  margin-bottom: 56px;
}

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 18px;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  text-wrap: balance;
}

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

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.15s var(--ease);
}

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

.btn--light {
  background: var(--white);
  color: var(--black);
}

.btn--light:hover {
  background: rgba(255, 255, 255, 0.86);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--black-soft);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn--lg {
  padding: 18px 38px;
  font-size: 0.95rem;
}

.btn--block {
  width: 100%;
}

.btn--center{
    width: 100%;
    margin: auto;
    display: block;
    max-width: 190px;
    font-size: 1.5rem;
    margin-top: 4em;
}

/* ----------------------------------------------------------------- Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img{
    width: 100%;
    max-width:150px;
}



/* --------------------------------------------------------------- Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 500;
  font-size:1.25em;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}

.nav__link:hover {
  color: var(--accent-deep);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 11px 22px;
}


/* --------------------------------------------------------- Services dropdown */
.nav__item--has-sub {
  position: relative;
}

.nav__caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  transition: transform 0.2s var(--ease);
}

.nav__sub {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 34px -20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 60;
}

/* invisible bridge so the pointer can cross the gap without losing hover */
.nav__sub::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  
}

.nav__item--has-sub:hover .nav__caret,
.nav__item--has-sub:focus-within .nav__caret {
  transform: rotate(180deg);
}

.nav__sublink {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 11px 24px;
  white-space: nowrap;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.nav__sublink:hover {
  background: var(--paper);
  color: var(--accent-deep);
}

/* ------------------------------------------------------ Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

/* ----------------------------------------------------------------- Hero */
.hero {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__content {
  flex: 1 1 56%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero .eyebrow {
  color: #afafaf;
}

.hero__text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.74);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--white);
}

.stat__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

.hero__media {
  flex: 1 1 46%;
  display: flex;
}

@media(min-width:990px){
    .hero__media img{
     height:580px;   
    }
}

/* ---------------------------------------------------------- Placeholders */
.placeholder {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 240px;
  border-radius: var(--radius);
  background-color: #e9e5db;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.07) 0,
    rgba(0, 0, 0, 0.07) 1px,
    transparent 1px,
    transparent 11px
  );
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.placeholder--tall {
  min-height: 460px;
}

.placeholder--square {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.placeholder__label {
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  padding: 6px 10px;
  margin: 12px;
  border-radius: 2px;
}

/* The hero placeholder sits on a dark bg — soften it */
.hero__media .placeholder {
  background-color: #232323;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.10) 0,
    rgba(255, 255, 255, 0.10) 1px,
    transparent 1px,
    transparent 11px
  );
  border-color: rgba(255, 255, 255, 0.12);
}

.hero__media .placeholder__label {
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.7);
}

/* ------------------------------------------------------------- Services */
.services {
  background: var(--paper);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 300px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(20, 20, 20, 0.45);
  border-color: var(--accent);
}

.service-card__num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.service-card__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--black);
}

.service-card__text {
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------------------------------------------------------------- About */
.about__inner {
  display: flex;
  gap: 64px;
}

.about__media {
  flex: 1 1 42%;
}

@media(min-width:990px){
    .about__media {
        flex: 1 1 42%;
        height: 100%;
        max-height: 510px;
        overflow: hidden;
    }    
}

.about__content {
  flex: 1 1 50%;
}

.about__text {
  color: var(--muted);
  margin: 0px 0 26px;
  font-size: 1.02rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 500;
  font-size:1.4rem;
  color: var(--ink);
}

.feature-list__item::before {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  margin-top: 7px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* -------------------------------------------------------------- Gallery */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item .placeholder {
  min-height: 240px;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), filter 0.3s var(--ease);
}

.gallery-item:hover .placeholder {
  transform: scale(1.04);
  filter: brightness(0.92);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* ------------------------------------------------------------- Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(10, 10, 10, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(820px, 100%);
}

.lightbox__frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: var(--radius);
  border-color: rgba(255, 255, 255, 0.14);
  background-color: #2a2a2a;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px,
    transparent 11px
  );
  align-items: center;
  justify-content: center;
}

.lightbox__frame .placeholder__label {
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s var(--ease);
}

.lightbox__nav {
  flex: none;
  width: 52px;
  height: 52px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s var(--ease), opacity 0.2s var(--ease);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.18);
}


/* ----------------------------------------------------------------- FAQ */
.faq {
  background: var(--paper);
}

.faq__inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.faq__head {
  flex: 1 1 34%;
  position: sticky;
  top: 100px;
}

.faq__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--black);
  text-wrap: balance;
  margin-top: 8px;
}

.faq__sub {
  color: var(--muted);
  font-size: 1.4rem;
  margin-top: 18px;
}

.faq__list {
  flex: 1 1 60%;
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: var(--black);
  transition: color 0.2s var(--ease);
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q:hover {
  color: var(--accent-deep);
}

.faq__icon {
  flex: none;
  position: relative;
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
}

.faq__icon::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

.faq__icon::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

.faq__item[open] .faq__icon::after {
  transform: scaleY(0);
}

.faq__a {
  padding: 0 4px 26px;
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1.7;
  max-width: 60ch;
}

.faq__a p {
  margin: 0;
}

@media (max-width: 860px) {
  .faq__inner {
    flex-direction: column;
    gap: 36px;
  }

  .faq__head {
    position: static;
  }
}


/* ------------------------------------------------------------- CTA band */
.cta-band {
  background: var(--black);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.cta-band__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}

.cta-band__sub {
  color: rgba(255, 255, 255, 0.66);
  margin-top: 8px;
  font-size: 1.4rem;
}

.cta-band .btn--light.btn--lg {
  background: var(--white);
  color: var(--black);
}

.cta-band .btn--light.btn--lg:hover {
  background: rgba(255, 255, 255, 0.86);
}

/* -------------------------------------------------------------- Contact */
#contact{
    background: var(--paper);
}
.contact__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: flex-start;
}

.contact__info {
  flex: 1 1 380px;
}

.contact__text {
  color: var(--muted);
  margin: 22px 0 30px;
  font-size: 1.02rem;
  max-width: 420px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__detail {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.contact__detail-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.4rem;
  color: var(--accent-deep);
  width: 56px;
  flex: none;
}

.contact__detail a,
.contact__detail span:last-child {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--black);
}

.contact__detail a:hover {
  color: var(--accent-deep);
}

/* Form */
.contact__form {
  flex: 1 1 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.field-row {
  display: flex;
  gap: 18px;
}

.field__label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
}

.field__input {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.field__input--area {
  resize: vertical;
  min-height: 110px;
}



/* ------------------------------------------------------ 3-column location list */
.saw__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--saw-line);
  color:#fff;
}

.saw__area {
  padding: 18px 20px;
  border-bottom: 1px solid var(--saw-line);
  font-family: var(--saw-font-head);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: var(--saw-white);
  text-align: left;
  position: relative;
  transition: color 0.2s var(--saw-ease), background 0.2s var(--saw-ease);
}

.saw__area:not(:nth-child(3n)) {
  border-right: 1px solid var(--saw-line);
}

.saw__area:hover {
  color: var(--saw-orange);
  background: rgba(255, 255, 255, 0.04);
}

.saw__area--muted {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.saw__area--muted:hover {
  color: rgba(255, 255, 255, 0.5);
  background: none;
}

.saw__bg{
    padding: 5em 0;
    background-image:url('https://dijitalweb.yourdevsite.ca/stradacorp/wp-content/uploads/2026/07/strada_areas_served_dark.png');
    background-size:cover;
    background-position:center;
}

/* ====================================================================== */
/*  RESPONSIVE                                                             */
/* ====================================================================== */

@media (max-width: 760px) {
  .saw__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .saw__area:not(:nth-child(3n)) {
    border-right: 1px solid var(--saw-line);
  }

  .saw__area:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .saw {
    padding: 72px 0 64px;
  }

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

  .saw__area:not(:nth-child(3n)) {
    border-right: none;
  }
}



/* ==========================================================================
   Testimonials / Reviews carousel
   ========================================================================== */

.ts-section {
  --ts-accent: #B5793B; /* swap for your brand accent */
  padding: 96px 32px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

.ts-header {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.ts-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ts-accent);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ts-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.15;
  color: oklch(0.24 0.01 80);
  margin: 0 0 18px 0;
  font-weight: 400;
}

.ts-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
}

.ts-stars {
  color: var(--ts-accent);
  font-size: 20px;
  letter-spacing: 2px;
}

.ts-summary-text {
  font-size: 15px;
  color: oklch(0.45 0.01 80);
}

.ts-summary-text strong {
  color: oklch(0.24 0.01 80);
}

.ts-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3em;
}

.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid oklch(0.88 0.006 80);
  background: oklch(1 0 0);
  color: oklch(0.3 0.01 80);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px oklch(0.2 0 0 / 0.08);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.ts-arrow:hover {
  border-color: var(--ts-accent);
  color: var(--ts-accent);
}

.ts-arrow-prev { left: -8px; }
.ts-arrow-next { right: -8px; }

.ts-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 56px 12px 56px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ts-track::-webkit-scrollbar {
  display: none;
}

.ts-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: oklch(1 0 0);
  border: 1px solid oklch(0.91 0.006 80);
  border-radius: 4px;
  padding: 28px 26px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ts-name {
  font-weight: 700;
  font-size: 15px;
  color: oklch(0.24 0.01 80);
}

.ts-time {
  font-size: 13px;
  color: oklch(0.58 0.01 80);
  margin-top: -6px;
}

.ts-card-stars {
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.ts-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: oklch(0.34 0.01 80);
  margin: 6px 0 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ts-text.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.ts-toggle {
  align-self: flex-start;
  margin-top: 4px;
  background: none;
  border: none;
  padding: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ts-accent);
  cursor: pointer;
}

.ts-note {
  text-align: center;
  margin-top: 20px;
  font-size: 12.5px;
  color: oklch(0.6 0.01 80);
}





/* --------------------------------------------------------------- Footer */

#dijital-share{
	background-color: #000;
	text-align:center;
}

#dijital-share img{
	width: 100%;
    max-width: 600px;
    display: inline-block;
}

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  font-size:1.4rem;
  gap: 32px;
  padding-bottom: 44px;
}

.footer__tagline {
  margin-top: 16px;
  font-size: 1.4rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.footer__social-link svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.footer__social-link:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  flex-direction: column;
}

.footer__link {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s var(--ease);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  text-align:center;
}

.footer__bottom span{
    display: inline-block;
    margin: auto;
}

.footer__info {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

/* --------------------------------------------------------- Page hero (subpages) */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 68px;
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s var(--ease);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb__current {
  color: var(--white);
}

.page-hero .eyebrow {
  color: var(--accent);
  margin-bottom: 0;
}

.page-hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  max-width: 760px;
  text-wrap: balance;
}

.page-hero__sub {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.74);
  max-width: 620px;
}

/* --------------------------------------------------- Service page intro */
.service-intro {
  background: var(--white);
}

.service-intro__inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.service-intro__lead {
  flex: 1 1 58%;
}

.service-intro__lead p {
  color: var(--muted);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.service-intro__lead p:first-of-type {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.service-intro__aside {
  flex: 1 1 34%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 34px;
}

.service-intro__aside-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 20px;
}

.service-toc {
  display: flex;
  flex-direction: column;
}

.service-toc__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.4rem;
  color: var(--ink);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.service-toc__item:last-child {
  border-bottom: 1px solid var(--line);
}

.service-toc__item:hover {
  color: var(--accent-deep);
  padding-left: 6px;
}

.service-toc__num {
  font-size: 0.82rem;
  color: var(--accent);
}


.additional_content{
    margin-top: 2em;
}

.service-hero-logo{
    width: 100%;
    max-width: 400px;
    display: block;
    margin: auto;
    margin-bottom: 96px;
}

@media(min-width:990px){
    .service-hero-logo{
        margin: 0;
        margin-bottom: 96px;
    }
}

.hero-flex-container{
    width:100%;
    max-width: 1150px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

@media(min-width:990px){
    .hero-flex-container{
        flex-wrap: nowrap;
    }
}


/* ------------------------------------------------------------ Divisions */
.divisions {
  background: var(--white);
}

.divisions--tint {
  background: var(--paper);
}

/* tighten the gap between a division's heading block and the first callout */
.divisions .section__head {
  margin-bottom: 40px;
}

.division__inner {
  display: flex;
  flex-wrap:wrap;
  align-items: center;
  gap: 64px;
}

.division__inner--reverse {
  flex-direction: row-reverse;
}

.division__media {
  flex: 1 1 42%;
}

.division__content {
  flex: 1 1 50%;
}

.division__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--black);
}

p.paragraph-text {
    font-size: 1.4rem;
    color: rgb(107, 107, 107);
}

.paragraph-text{
   font-size: 1.4rem; 
}

.divisions .about__text, .divisions .feature-list{
    font-size: 1.4rem; 
}

.section .division__inner .division__media img {
    width: 100%;
    max-width: 500px;
    margin: auto;
}


/* ----------------------------------------------------------- Industries */
.industries {
  background: var(--white);
}

.industries__intro {
  color: var(--muted);
  font-size: 1.4rem;
  margin-top: 18px;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.industry {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.industry .placeholder {
  min-height: 320px;
}

.industry__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
}
#industries{
    padding-top: 0;
}

img.footer-logo {
    filter: invert(1);
}

.cta-band__text {
    width: 100%;
    max-width: 600px;
}

/* ---------------------------------------------------------- Areas served */
.areas {
  
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.area:hover {
  border-color: var(--black);
  color: var(--black);
}

.area--muted {
  background: transparent;
  border-style: dashed;
  color: var(--muted);
}

.area--muted:hover {
  border-color: var(--line);
  color: var(--muted);
}

.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* -------------------------------------------------------------- Gallery */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease), filter 0.3s var(--ease);
}

.gallery-item:hover .gallery-item__img {
  transform: scale(1.04);
  filter: brightness(0.92);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}


#wpcf7-f7-o1 form{
    width: 100%;
    max-width: 554px;
}

#wpcf7-f7-o1 .field__input--area{
    height:110px;
}


/* ====================================================================== */
/*  RESPONSIVE                                                             */
/* ====================================================================== */

@media (max-width: 980px) {
  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .hero__content {
    width: 100%;
    align-items: flex-start;
  }

  .hero__title {
    font-size: clamp(2.4rem, 8vw, 3.6rem);
  }

  .hero__text {
    max-width: 560px;
  }

  .hero__media {
    width: 100%;
  }

  .hero__media .placeholder {
    min-height: 320px;
  }

  .about__inner {
    flex-direction: column;
    gap: 40px;
  }

  .about__media {
    width: 100%;
  }

  .about__media .placeholder--square {
    aspect-ratio: 16 / 10;
  }
}

/* ---- Mobile nav breakpoint ---- */
@media (max-width: 840px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px -20px rgba(0, 0, 0, 0.35);
    /* collapsed state */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 22px;
  }

  .nav__list li {
    border-bottom: 1px solid var(--line);
  }

  .nav__cta-item {
    border-bottom: none;
    margin-top: 16px;
  }

  .nav__link {
    display: block;
    padding: 16px 0;
    font-size: 1.25rem;
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    width: 100%;
    padding: 15px 22px;
  }
  

  /* Services sub-menu — always expanded as indented sub-items on mobile */
  .nav__item--has-sub .nav__caret {
    display: none;
  }

  .nav__sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    padding: 0;
    margin: 0;
    background: var(--paper);
    border: none;
    box-shadow: none;
  }

  .nav__sub::before {
    display: none;
  }

  .nav__sublink {
    padding: 14px 0 14px 20px;
    font-size: 0.9rem;
    color: var(--muted);
  }

  .nav__sublink:hover {
    background: transparent;
  }  

  /* open state — toggled by JS on .header */
  .header.is-open .nav {
    max-height: 420px;
  }

  /* hamburger -> X animation */
  .header.is-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.is-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .header.is-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .nav__item--has-sub:focus-within .nav__sub{
      transform: none;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }

  .gallery-item {
    flex: 1 1 100%;
  }

  .lightbox {
    gap: 6px;
    padding: 16px;
  }

  .lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar__item:first-child {
    display: none;
  }

  .utility-bar__contacts {
    gap: 18px;
  }

  .hero__inner {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero__stats {
    gap: 26px;
  }

  .stat__num {
    font-size: 1.9rem;
  }

  .field-row {
    flex-direction: column;
    gap: 18px;
  }

  .contact__form {
    padding: 24px;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .btn--lg {
    width: 100%;
  }
}
