/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  color: var(--gasa-charcoal);
  background: var(--gasa-off-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; margin: 0 0 0.5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

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

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute; 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: -999px; top: 0; z-index: 1000;
  background: var(--gasa-charcoal); color: var(--gasa-off-white);
  padding: 0.75em 1.25em; font-family: var(--font-mono); font-size: var(--step--1);
}
.skip-link:focus { left: var(--gutter); top: var(--gutter); }

/* ==========================================================================
   Signature: spec-sheet eyebrow + corner tick marks
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gasa-navy);
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gasa-yellow-dark);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gasa-yellow); }

.ticked {
  position: relative;
}
.ticked::before, .ticked::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--gasa-charcoal);
  opacity: 0.55;
}
.ticked::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.ticked::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.ticked.on-dark::before, .ticked.on-dark::after { border-color: var(--gasa-yellow); opacity: 0.8; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: var(--step-0);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gasa-yellow); color: var(--gasa-charcoal); }
.btn-primary:hover { background: var(--gasa-yellow-dark); }
.btn-outline { background: transparent; color: var(--gasa-off-white); border-color: var(--gasa-line-inverse); }
.btn-outline:hover { border-color: var(--gasa-off-white); }
.btn-outline.on-light { color: var(--gasa-charcoal); border-color: var(--gasa-line); }
.btn-outline.on-light:hover { border-color: var(--gasa-charcoal); }

/* ==========================================================================
   Site header
   ========================================================================== */
/* ==========================================================================
   Business info bar component (used inside .hero__infobar — see hero block)
   ========================================================================== */
.top-bar__slider-nav { display: flex; align-items: center; gap: 0.4em; flex-shrink: 0; }
.top-bar__slider-nav button {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--gasa-line-inverse); border-radius: var(--radius-sm);
  color: var(--gasa-concrete);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.top-bar__slider-nav button:hover { border-color: var(--gasa-yellow); color: var(--gasa-yellow); }
.top-bar__slider-nav svg { width: 14px; height: 14px; }

.top-bar__info {
  display: flex;
  align-items: stretch;
  flex: 1;
  justify-content: center;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: 0.75em 1.5em;
  border-left: 1px solid var(--gasa-line-inverse);
  white-space: nowrap;
}
.top-bar__item:first-child { border-left: none; }
.top-bar__icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gasa-yellow);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gasa-yellow);
}
.top-bar__icon svg { width: 16px; height: 16px; }
.top-bar__text { display: flex; flex-direction: column; gap: 0.15em; font-family: var(--font-body); color: var(--gasa-concrete); }
.top-bar__label { font-size: 0.72rem; color: var(--gasa-steel-light); }
.top-bar__value { font-size: 0.85rem; font-weight: 700; color: var(--gasa-off-white); transition: color var(--dur-fast) var(--ease-out); }
.top-bar__item:hover .top-bar__value { color: var(--gasa-yellow); }

.top-bar__social {
  display: flex; align-items: center; gap: 0.6em;
  padding-inline: 1.5em;
  border-left: 1px solid var(--gasa-line-inverse);
  flex-shrink: 0;
}
.top-bar__social a {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: rgba(250,249,245,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.top-bar__social a:hover { background: var(--gasa-yellow); color: var(--gasa-charcoal); }
.top-bar__social svg { width: 15px; height: 15px; fill: currentColor; }

@media (max-width: 900px) {
  .top-bar__item:nth-child(3) { display: none; } /* hide hours on small screens */
}
@media (max-width: 640px) {
  .hero__infobar .container { overflow-x: auto; }
  .top-bar__info { justify-content: flex-start; }
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--gasa-off-white);
  border-bottom: 1px solid var(--gasa-line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1em;
}

/* Logo lockup — sized as a wide horizontal logotype (max-height rather
   than a fixed height) so an uploaded image keeps its own proportions,
   matching the demo theme's header logo treatment. */
.site-logo { display: flex; align-items: center; }
.site-logo img,
.site-logo .custom-logo { max-height: 96px; width: auto; display: block; }
.custom-logo-link { display: block; }

.site-logo--text {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  line-height: 1;
}
.site-logo__name {
  font-family: var(--font-display);
  font-size: var(--step-1);
  letter-spacing: -0.01em;
  color: var(--gasa-charcoal);
}
.site-logo__tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gasa-steel);
}

.primary-nav ul { display: flex; gap: 1.75em; align-items: center; }
.primary-nav a {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.4em 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { border-color: var(--gasa-yellow); }
.primary-nav .sub-menu {
  display: none;
  position: absolute;
  background: var(--gasa-off-white);
  border: 1px solid var(--gasa-line);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  padding: 0.5em 0;
  min-width: 240px;
  z-index: 10;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu { display: block; }
.primary-nav .sub-menu a { display: block; padding: 0.6em 1.1em; border-bottom: none; }
.primary-nav .sub-menu a:hover { background: var(--gasa-concrete); }
.primary-nav .menu-item-has-children { position: relative; }

.header-cta { display: flex; align-items: center; gap: 1em; }
.header-cta .btn { padding: 0.7em 1.3em; font-size: var(--step--1); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--gasa-line); border-radius: var(--radius-sm);
  padding: 0.5em 0.7em;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.nav-open .primary-nav {
    display: block;
    position: absolute; inset-inline: 0; top: 100%;
    background: var(--gasa-off-white); border-bottom: 1px solid var(--gasa-line);
    padding: 1em var(--gutter) 1.5em;
  }
  .site-header.nav-open .primary-nav ul { flex-direction: column; align-items: flex-start; gap: 0; }
  .site-header.nav-open .primary-nav li { width: 100%; }
  .site-header.nav-open .primary-nav a { display: block; padding: 0.9em 0; border-bottom: 1px solid var(--gasa-line); }
  .site-header.nav-open .primary-nav .sub-menu { position: static; box-shadow: none; border: none; display: block; padding-left: 1em; }
}

/* ==========================================================================
   Hero — full-bleed background slides
   ========================================================================== */
.hero {
  position: relative;
  background: var(--gasa-charcoal);
  color: var(--gasa-off-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__grid {
  position: relative;
  flex: 1;
  min-height: 460px;
  aspect-ratio: 1920 / 660;
  display: flex;
  align-items: center;
}

.hero__media { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 700ms var(--ease-out);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  /* left-side legibility scrim so overlaid text reads on any uploaded
     slide image, even ones without a built-in dark panel */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,12,11,0.7) 0%, rgba(13,12,11,0.35) 45%, transparent 75%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 620px; }
.hero__title { font-size: var(--step-3); margin-bottom: 0.4em; }
.hero__lede { font-size: var(--step-0); color: var(--gasa-concrete); max-width: 46ch; margin-bottom: 1.5em; }
.hero__actions { display: flex; gap: 1em; flex-wrap: wrap; }
.hero__actions .btn-outline { background: var(--gasa-off-white); color: var(--gasa-charcoal); border-color: var(--gasa-off-white); }
.hero__actions .btn-outline:hover { background: var(--gasa-concrete); }

.hero__dots { display: flex; gap: 0.6em; position: absolute; bottom: 1.25rem; right: var(--gutter); z-index: 3; }
.hero__dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--gasa-off-white);
  background: transparent; padding: 0;
}
.hero__dots button.is-active { background: var(--gasa-yellow); border-color: var(--gasa-yellow); }

/* Business info bar — flush against the bottom edge of the hero, not a
   sitewide bar. Reuses the .top-bar__* component classes for icons/text. */
.hero__infobar {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #0d0c0b 0%, #262421 50%, #0d0c0b 100%);
  border-top: 1px solid var(--gasa-line-inverse);
}
.hero__infobar .container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

@media (max-width: 900px) {
  .hero__grid { aspect-ratio: auto; min-height: 520px; padding-block: 2.5rem 3.5rem; align-items: flex-end; }
  .hero__content { max-width: none; }
  .hero__dots { bottom: 0.75rem; }
}
@media (max-width: 560px) {
  .hero__grid { min-height: 460px; }
}

/* ==========================================================================
   Video slider — contained to the site width (matches Services), not
   full-bleed
   ========================================================================== */
.video-slider__grid {
  position: relative;
  aspect-ratio: 1920 / 720;
  min-height: 320px;
  overflow: hidden;
  background: var(--gasa-charcoal);
  border: 1px solid var(--gasa-line);
  box-shadow: 0 4px 14px rgba(28,27,26,0.08);
}

.video-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 700ms var(--ease-out);
  pointer-events: none;
}
.video-slide.is-active { opacity: 1; pointer-events: auto; }
.video-slide__el {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  background: var(--gasa-charcoal);
}

.video-slide__error {
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  background: var(--gasa-charcoal-soft);
  color: var(--gasa-steel-light);
  font-family: var(--font-mono); font-size: var(--step--1);
  text-align: center;
  padding: 1.5rem;
}
.video-slide__error:not([hidden]) { display: flex; }

.video-slide__caption {
  position: absolute; left: 1.25rem; bottom: 1.25rem;
  font-family: var(--font-mono); font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gasa-off-white);
  background: rgba(13,12,11,0.55);
  padding: 0.5em 0.9em;
  z-index: 2;
}

.video-slider__dots { display: flex; gap: 0.6em; position: absolute; bottom: 1.25rem; right: 1.25rem; z-index: 3; }
.video-slider__dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--gasa-off-white);
  background: transparent; padding: 0;
}
.video-slider__dots button.is-active { background: var(--gasa-yellow); border-color: var(--gasa-yellow); }

.video-slider__mute {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 3;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(13,12,11,0.55);
  border: 1px solid var(--gasa-line-inverse);
  color: var(--gasa-off-white);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.video-slider__mute:hover { border-color: var(--gasa-yellow); }
.video-slider__mute svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .video-slider__grid { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   Section rhythm
   ========================================================================== */
.section { padding-block: clamp(3.5rem, 6vw, 6rem); }
.section--alt { background: var(--gasa-concrete); }
.section--dark { background: var(--gasa-charcoal); color: var(--gasa-off-white); }
.section__head { max-width: 62ch; margin-bottom: 2.5rem; }
.section__title { font-size: var(--step-3); }
.section__foot { margin-top: 2.5rem; display: flex; justify-content: center; }

/* ==========================================================================
   Cards: services / portfolio / news
   ========================================================================== */
.card-grid { display: grid; gap: 1.75rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--gasa-off-white);
  border: 1px solid var(--gasa-line);
  display: flex; flex-direction: column;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(28,27,26,0.1); }
.service-card__media { aspect-ratio: 4/3; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-med) var(--ease-out); }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { font-size: var(--step-1); }
.service-card__body p { color: var(--gasa-steel); font-size: var(--step--1); flex: 1; }
.service-card__link {
  font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gasa-navy); display: inline-flex; align-items: center; gap: 0.4em;
}
.service-card__link::after { content: "→"; transition: transform var(--dur-fast) var(--ease-out); }
.service-card:hover .service-card__link::after { transform: translateX(3px); }

/* Portfolio */
.portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gasa-line);
  margin-bottom: 2rem;
}
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 1.75em; }
.portfolio-filters button {
  font-family: var(--font-condensed); font-weight: 600; font-size: var(--step-0);
  background: transparent; border: none; border-bottom: 2px solid transparent;
  color: var(--gasa-steel); padding: 0.9em 0 0.8em;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.portfolio-filters button:hover { color: var(--gasa-charcoal); }
.portfolio-filters button.is-active { color: var(--gasa-charcoal); border-color: var(--gasa-yellow); }

.portfolio-toolbar__nav { display: flex; gap: 0.5em; padding-block: 0.6em; flex-shrink: 0; }
.portfolio-toolbar__nav button {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gasa-off-white); border: 1px solid var(--gasa-line); border-radius: var(--radius-sm);
  color: var(--gasa-charcoal);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.portfolio-toolbar__nav button:hover { border-color: var(--gasa-charcoal); background: var(--gasa-charcoal); color: var(--gasa-off-white); }
.portfolio-toolbar__nav svg { width: 16px; height: 16px; }

.portfolio-grid { display: grid; gap: 1.75rem; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .portfolio-grid {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 82%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }
  .portfolio-item { scroll-snap-align: start; }
}

.portfolio-item {
  display: block;
  background: var(--gasa-off-white);
  border: 1px solid var(--gasa-line);
  box-shadow: 0 4px 14px rgba(28,27,26,0.05);
  transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.portfolio-item[hidden] { display: none; }
.portfolio-item:hover { box-shadow: 0 16px 32px rgba(28,27,26,0.12); transform: translateY(-3px); }

.portfolio-item__media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.portfolio-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-med) var(--ease-out); }
.portfolio-item:hover .portfolio-item__media img { transform: scale(1.06); }

.portfolio-item__corner {
  position: absolute; right: 0; bottom: 0;
  width: 40px; height: 40px;
  background: rgba(28,27,26,0.85);
  display: flex; align-items: center; justify-content: center;
  color: var(--gasa-yellow);
  transform: translate(100%, 100%);
  transition: transform var(--dur-fast) var(--ease-out);
}
.portfolio-item:hover .portfolio-item__corner { transform: translate(0, 0); }
.portfolio-item__corner svg { width: 16px; height: 16px; }

.portfolio-item__body { display: block; padding: 1rem 1.1rem 1.2rem; }
.portfolio-item__title { display: block; font-family: var(--font-condensed); font-weight: 700; font-size: var(--step-0); color: var(--gasa-charcoal); margin-bottom: 0.3em; }
.portfolio-item__date { display: block; font-family: var(--font-mono); font-size: 0.75rem; color: var(--gasa-steel); }

/* News */
.news-card { border-bottom: 1px solid var(--gasa-line); padding-block: 1.5rem; display: grid; grid-template-columns: 160px 1fr; gap: 1.5rem; }
.news-card__media { aspect-ratio: 4/3; overflow: hidden; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.news-card__date { font-family: var(--font-mono); font-size: var(--step--1); color: var(--gasa-navy); text-transform: uppercase; letter-spacing: 0.05em; }
.news-card__title { font-size: var(--step-1); margin-block: 0.3em 0.4em; }
.news-card__excerpt { color: var(--gasa-steel); font-size: var(--step--1); margin: 0; }
@media (max-width: 560px) { .news-card { grid-template-columns: 100px 1fr; } }

/* Homepage "News teaser" block — distinct from .news-card (Tips archive) */
.news-teasers { display: grid; grid-template-columns: 1fr 1fr 0.8fr; gap: 1.75rem; align-items: stretch; }
@media (max-width: 900px) { .news-teasers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .news-teasers { grid-template-columns: 1fr; } }

.news-teaser {
  background: var(--gasa-off-white);
  border: 1px solid var(--gasa-line);
  box-shadow: 0 4px 14px rgba(28,27,26,0.05);
  transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.news-teaser:hover { box-shadow: 0 16px 32px rgba(28,27,26,0.1); transform: translateY(-3px); }
.news-teaser__media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.news-teaser__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-med) var(--ease-out); }
.news-teaser:hover .news-teaser__media img { transform: scale(1.05); }
.news-teaser__badge {
  position: absolute; left: 0; bottom: 0;
  background: var(--gasa-yellow); color: var(--gasa-charcoal);
  font-family: var(--font-mono); font-weight: 600; font-size: 0.78rem;
  padding: 0.4em 0.9em;
}
.news-teaser__body { padding: 1.2rem 1.3rem 1.4rem; }
.news-teaser__title { font-size: var(--step-1); margin: 0 0 0.5em; }
.news-teaser__title a:hover { color: var(--gasa-navy); }
.news-teaser__excerpt { color: var(--gasa-steel); font-size: var(--step--1); margin: 0; }

.news-panel {
  background: var(--gasa-off-white);
  border: 1px solid var(--gasa-line);
  display: flex; flex-direction: column;
  padding: 1.3rem;
}
@media (max-width: 900px) { .news-panel { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; gap: 1rem; } }
.news-panel__item { display: block; padding-bottom: 1.1rem; margin-bottom: 1.1rem; border-bottom: 1px solid var(--gasa-line); }
.news-panel__title { display: block; font-family: var(--font-condensed); font-weight: 700; font-size: var(--step-0); color: var(--gasa-charcoal); margin-bottom: 0.4em; }
.news-panel__item:hover .news-panel__title { color: var(--gasa-navy); }
.news-panel__date { display: block; font-family: var(--font-mono); font-size: 0.75rem; color: var(--gasa-steel); }
.news-panel__more {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--gasa-navy); font-size: var(--step--1);
  margin-top: auto;
}
.news-panel__more:hover { color: var(--gasa-yellow-dark); }
.news-panel__more svg { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease-out); }
.news-panel__more:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Promo bar — light call-out strip above "Our Promise and Values"
   ========================================================================== */
.promo-bar {
  background: var(--gasa-off-white);
  border-bottom: 1px solid var(--gasa-line);
  padding-block: 1.5rem;
}
.promo-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.promo-bar__text h2 { font-size: var(--step-1); margin: 0 0 0.2em; color: var(--gasa-charcoal); }
.promo-bar__text p { margin: 0; color: var(--gasa-steel); font-size: var(--step--1); }
.promo-bar__actions { display: flex; gap: 1em; flex-wrap: wrap; flex-shrink: 0; }
.promo-bar__actions .btn { padding: 0.75em 1.4em; font-size: var(--step--1); }

/* ==========================================================================
   Our Promise and Values
   ========================================================================== */
.promise {
  position: relative;
  background: var(--gasa-yellow);
  color: var(--gasa-charcoal);
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.promise::before {
  /* echoes the hazard-stripe motif used in the hero CTAs */
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(28,27,26,0.07) 0 10px, transparent 10px 22px);
  pointer-events: none;
}
.promise__inner { position: relative; z-index: 1; max-width: 780px; margin-inline: auto; text-align: center; }
.promise__title { font-size: var(--step-3); margin-bottom: 0.5em; }
.promise__subtitle { font-family: var(--font-condensed); font-weight: 600; font-size: var(--step-1); margin-bottom: 1em; }
.promise__body { font-size: var(--step-0); color: var(--gasa-charcoal-soft); line-height: 1.75; margin: 0; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-carousel { display: flex; align-items: stretch; gap: 1.25rem; }
.testimonials-track { flex: 1; position: relative; padding-bottom: 1rem; }

.testimonial-card {
  display: none;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  background: var(--gasa-off-white);
  border: 1px solid var(--gasa-line);
  border-left: 4px solid var(--gasa-yellow);
  padding: 2.25rem;
  position: relative;
}
.testimonial-card.is-active { display: grid; }
.testimonial-card::after {
  /* corner-fold / page-peel decoration */
  content: "";
  position: absolute; left: 0; bottom: -14px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 14px 20px;
  border-color: transparent transparent var(--gasa-concrete) transparent;
  filter: drop-shadow(1px 2px 1px rgba(28,27,26,0.12));
}

.testimonial-card__col--name {
  border-right: 1px solid var(--gasa-line);
  padding-right: 1.5rem;
  display: flex; flex-direction: column;
}
.testimonial-card__name { font-family: var(--font-condensed); font-weight: 700; font-size: var(--step-1); color: var(--gasa-charcoal); margin-bottom: 0.3em; }
.testimonial-card__city { font-family: var(--font-mono); font-size: var(--step--1); color: var(--gasa-steel); }

.testimonial-card__project { display: block; font-family: var(--font-condensed); font-weight: 700; font-size: var(--step-0); color: var(--gasa-navy); margin-bottom: 0.6em; }
.testimonial-card__quote { color: var(--gasa-steel); line-height: 1.7; }
.testimonial-card__quote p:last-child { margin-bottom: 0; }

.testimonials-nav { display: flex; flex-direction: column; gap: 0.6em; flex-shrink: 0; }
.testimonials-nav button {
  width: 52px; flex: 1;
  border: 1px solid var(--gasa-line);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--gasa-steel);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.testimonials-nav button:hover { border-color: var(--gasa-charcoal); color: var(--gasa-charcoal); }

@media (max-width: 640px) {
  .testimonial-card { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
  .testimonial-card__col--name { border-right: none; border-bottom: 1px solid var(--gasa-line); padding-right: 0; padding-bottom: 1rem; flex-direction: row; gap: 0.6em; align-items: baseline; }
}

/* ==========================================================================
   Trust badges
   ========================================================================== */
.trust-strip { display: flex; flex-wrap: wrap; gap: 2rem 3rem; align-items: center; justify-content: center; }
.trust-strip__item { display: flex; align-items: center; gap: 0.6em; font-family: var(--font-mono); font-size: var(--step--1); color: var(--gasa-steel); text-transform: uppercase; letter-spacing: 0.04em; }
.trust-strip__item svg { width: 20px; height: 20px; color: var(--gasa-navy); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-field { margin-bottom: 1.25em; }
.form-field label { display: block; font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5em; color: var(--gasa-navy); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.85em 1em; border: 1px solid var(--gasa-line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: var(--step-0); background: var(--gasa-off-white);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gasa-navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25em; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-family: var(--font-mono); font-size: var(--step--1); padding: 0.8em 1em; border-radius: var(--radius-sm); margin-bottom: 1.5em; }
.form-status--success { background: #e6f4ea; color: #1e6b34; }
.form-status--error { background: #fbe9e7; color: #a3291a; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--gasa-charcoal); color: var(--gasa-concrete); padding-block: 4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.06em; color: var(--gasa-yellow); margin-bottom: 1em; }
.footer-col ul li { margin-bottom: 0.65em; }
.footer-col a:hover { color: var(--gasa-off-white); }

/* Footer logo — deliberately more compact than the header lockup,
   matching the demo theme's smaller footer mark ahead of its tagline. */
.footer-logo { display: inline-block; margin-bottom: 1em; }
.footer-logo img,
.footer-logo .footer-logo__img { max-height: 96px; width: auto; display: block; }
.footer-logo__name {
  font-family: var(--font-display);
  font-size: var(--step-0);
  color: var(--gasa-off-white);
}
.footer-col--logo p { font-size: var(--step--1); color: var(--gasa-steel-light); max-width: 32ch; }
.footer-bottom {
  border-top: 1px solid var(--gasa-line-inverse); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1em;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--gasa-steel-light);
}

/* ==========================================================================
   Utility: skeleton page header for interior pages
   ========================================================================== */
.page-header { background: var(--gasa-charcoal); color: var(--gasa-off-white); padding-block: 3.5rem; }
.page-header h1 { font-size: var(--step-3); margin-bottom: 0.3em; }
.breadcrumbs { font-family: var(--font-mono); font-size: var(--step--1); color: var(--gasa-steel-light); }
.breadcrumbs a:hover { color: var(--gasa-yellow); }
