/* ==========================================================================
   Giligan Team — stylesheet
   Palette: deep charcoal / near-black / warm off-white / concrete gray
            + restrained construction-orange accent
   ========================================================================== */

:root{
  /* --- color --- */
  --c-black:        #0D0D0E;
  --c-charcoal:      #171719;
  --c-charcoal-2:    #201F22;
  --c-offwhite:      #F3F1ED;
  --c-offwhite-2:    #EAE7E0;
  --c-concrete:      #D8D6D1;
  --c-gray:          #8D8A84;
  --c-orange:        #D95F0A;
  --c-orange-dark:   #B24C08;
  --c-orange-light:  #E9782B;

  --c-text:          #18181A;
  --c-text-soft:     #55524B;
  --c-text-mute:     #8D8A84;
  --c-text-inverse:      #F6F4F0;
  --c-text-inverse-soft: #B9B6AE;

  --c-border:        rgba(23,23,25,0.10);
  --c-border-inverse: rgba(246,244,240,0.14);

  /* --- type --- */
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* --- layout --- */
  --header-h: 84px;
  --header-h-mobile: 64px;
  --container-w: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  /* --- motion --- */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur-fast: 180ms;
  --dur-med: 320ms;
}

/* ---------- reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
* { margin: 0; }
html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body{
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-offwhite);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video{ max-width: 100%; display: block; }
picture{ width: 100%; height: 100%; }
img{ height: auto; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select{ font: inherit; color: inherit; }
ul, ol{ list-style: none; padding: 0; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; }
svg{ display: block; }

/* ---------- utility ---------- */
.container{
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.visually-hidden{
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0;
}
.skip-link{
  position: fixed; top: -100%; left: 1rem; z-index: 999;
  background: var(--c-orange); color: #fff; padding: .75rem 1.25rem;
  border-radius: 4px; font-weight: 600; transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus{ top: 1rem; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: 2px;
}

.eyebrow{
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 1rem;
}
.eyebrow::before{
  content: '';
  width: 22px; height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.section-head{
  max-width: 620px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2{
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  color: var(--c-text);
}
.section-head p{
  margin-top: 1.1rem;
  font-size: 1.0625rem;
  color: var(--c-text-soft);
  line-height: 1.6;
}
.on-dark .section-head h2{ color: var(--c-text-inverse); }
.on-dark .section-head p{ color: var(--c-text-inverse-soft); }

section{ position: relative; }
/* Land anchored sections flush under the fixed header. The -1px pulls the
   section a hair UNDER the header instead of leaving a gap: sub-pixel scroll
   rounding otherwise exposes a thin sliver of the previous section's
   background, which is very visible at light/dark section boundaries. */
main section[id], .page-header{
  scroll-margin-top: calc(var(--header-h-mobile) - 1px);
}
@media (min-width: 900px){
  main section[id], .page-header{ scroll-margin-top: calc(var(--header-h) - 1px); }
}
.section-pad{
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
  min-height: calc(100svh - var(--header-h-mobile));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 900px){
  .section-pad{ min-height: calc(100svh - var(--header-h)); }
}

/* buttons */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn svg{ width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary{ background: var(--c-orange); color: #fff; }
.btn--primary:hover{ background: var(--c-orange-dark); box-shadow: 0 10px 24px -8px rgba(217,95,10,0.55); }

.btn--ghost-light{ border-color: rgba(246,244,240,0.4); color: var(--c-text-inverse); }
.btn--ghost-light:hover{ border-color: var(--c-text-inverse); background: rgba(246,244,240,0.08); box-shadow: 0 10px 24px -12px rgba(0,0,0,0.4); }

.btn--block{ width: 100%; }
.btn--lg{ padding: 1.15rem 2.4rem; font-size: 1rem; }

/* reveal-on-scroll */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-delay-1{ transition-delay: 90ms; }
.reveal-delay-2{ transition-delay: 180ms; }
.reveal-delay-3{ transition-delay: 270ms; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h-mobile);
  display: flex; align-items: center;
  background: rgba(243,241,237,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
@media (min-width: 900px){
  .header{ height: var(--header-h); }
}
.header.is-scrolled{
  border-bottom-color: var(--c-border);
  box-shadow: 0 8px 24px rgba(13,13,14,0.05);
}
.header__inner{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

.logo{ display: inline-flex; flex-direction: column; gap: 2px; line-height: 1; }
.logo__mark{
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: inline-flex;
}
.logo__gil{ color: var(--c-text); }
.logo__team{ color: var(--c-orange); }
.logo__tagline{
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}
@media (max-width: 420px){
  .logo__mark{ font-size: 1.25rem; }
  .logo__tagline{ display: none; }
}

.nav-desktop{ display: none; }
@media (min-width: 900px){
  .nav-desktop{
    display: flex; align-items: center; gap: 2.1rem;
  }
  .nav-desktop a:not(.btn){
    position: relative;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--c-text);
    padding-block: .35rem;
  }
  .nav-desktop a:not(.btn)::after{
    content: '';
    position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
    background: var(--c-orange);
    transition: right var(--dur-med) var(--ease);
  }
  .nav-desktop a:not(.btn):hover::after,
  .nav-desktop a:not(.btn).is-active::after{ right: 0; }
  .nav-desktop a:not(.btn).is-active{ color: var(--c-orange); }
}

.header__actions{ display: flex; align-items: center; gap: 1rem; }
.header__cta{ display: none; }
@media (min-width: 900px){ .header__cta{ display: inline-flex; } }

.nav-toggle{
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-direction: column; gap: 5px;
}
@media (min-width: 900px){ .nav-toggle{ display: none; } }
.nav-toggle span{
  width: 22px; height: 2px; background: var(--c-text);
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-mobile{
  position: fixed; inset: var(--header-h-mobile) 0 0 0; z-index: 90;
  background: var(--c-offwhite);
  padding: 2rem var(--container-pad) 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med);
}
.nav-mobile.is-open{ opacity: 1; transform: translateY(0); visibility: visible; }
@media (min-width: 900px){ .nav-mobile{ display: none; } }
.nav-mobile__links{ display: flex; flex-direction: column; }
.nav-mobile__links a{
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.nav-mobile__foot{ padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile__contact{ display: flex; gap: 1.25rem; }
.nav-mobile__contact a{
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-border); color: var(--c-text);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--c-text-inverse);
  overflow: hidden;
}
.hero__media{
  position: absolute; inset: 0; z-index: 0;
}
.hero__media img{
  width: 100%; height: 100%; object-fit: cover; object-position: 32% 42%;
}
@media (max-width: 640px){
  .hero__media img{ object-position: 52% 35%; }
}
.hero__media::after{
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(9,9,10,0.82) 0%, rgba(9,9,10,0.58) 38%, rgba(9,9,10,0.32) 62%, rgba(9,9,10,0.5) 100%),
    linear-gradient(0deg, rgba(9,9,10,0.55) 0%, rgba(9,9,10,0) 32%);
}
.hero__inner{
  position: relative; z-index: 1;
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  padding-block: calc(var(--header-h-mobile) + min(3.5rem, 5svh)) min(5rem, 6svh);
}
@media (min-width: 900px){
  .hero__inner{ padding-block: calc(var(--header-h) + min(4rem, 6svh)) min(6.5rem, 8svh); }
}
.hero__content{ max-width: 700px; }
.hero__eyebrow{
  display: block;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-orange-light);
  margin-bottom: min(1.4rem, 2svh);
}
.hero h1{
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  color: #fff;
  margin-bottom: min(1.4rem, 2svh);
}
.hero p{
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--c-text-inverse-soft);
  max-width: 46ch;
  margin-bottom: min(2.4rem, 3svh);
}
.hero__ctas{ display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll{
  position: absolute; bottom: 1.75rem; right: var(--container-pad); z-index: 1;
  display: none;
  align-items: center; gap: .6rem;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-text-inverse-soft);
  animation: hero-hint 3.6s ease-in-out infinite;
}
@media (min-width: 700px){ .hero__scroll{ display: inline-flex; } }
@keyframes hero-hint{
  0%, 100%{ opacity: .55; transform: translateY(0); }
  50%{ opacity: 1; transform: translateY(4px); }
}

/* ==========================================================================
   Stat strip (used in hero-adjacent / why section)
   ========================================================================== */
.stat-strip{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1.5rem;
}
@media (min-width: 640px){
  .stat-strip{ grid-template-columns: repeat(3, 1fr); }
}
.stat{
  padding-top: 1.1rem;
  border-top: 1.5px solid var(--c-border);
}
.on-dark .stat{ border-top-color: var(--c-border-inverse); }
.stat__value{
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.on-dark .stat__value{ color: var(--c-text-inverse); }
.stat__label{
  margin-top: .35rem;
  font-size: 0.875rem;
  color: var(--c-text-soft);
}
.on-dark .stat__label{ color: var(--c-text-inverse-soft); }

/* ==========================================================================
   Intro / About
   ========================================================================== */
.intro{ background: var(--c-offwhite); }
.intro__head{
  text-align: left;
  max-width: 780px;
  margin: 0 0 clamp(2.75rem, 6vw, 4.5rem);
}
.intro__head h2{
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.intro__grid{
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 940px){
  .intro__grid{ grid-template-columns: 0.9fr 1.1fr; gap: 5vw; }
}
.intro__media{
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.intro__media img{ width: 100%; height: 100%; object-fit: cover; }
.intro__media::before{
  content: '';
  position: absolute; inset: 0; z-index: 1;
  border: 1px solid rgba(255,255,255,0.14);
  pointer-events: none;
}
.intro__body p{
  color: var(--c-text-soft);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 54ch;
}
.intro__body p + p{ margin-top: 1.1rem; }
.intro__body .stat-strip{ margin-top: 2.75rem; max-width: 480px; }

/* ==========================================================================
   Services
   ========================================================================== */
.services{ background: var(--c-charcoal); color: var(--c-text-inverse); }
.services__list{
  border-top: 1px solid var(--c-border-inverse);
}
.service-row{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--c-border-inverse);
  align-items: baseline;
  transition: padding-left var(--dur-med) var(--ease);
}
@media (min-width: 760px){
  .service-row{ grid-template-columns: 100px 1fr 1.4fr; gap: 2rem; align-items: center; }
}
.service-row:hover{ padding-left: .5rem; }
@media (min-width: 760px){ .service-row:hover{ padding-left: 1rem; } }
.service-row__num{
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--c-orange);
}
.service-row__title{
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem, 2vw, 1.6rem);
  grid-column: 2 / 3;
}
@media (min-width: 760px){ .service-row__title{ grid-column: auto; } }
.service-row__desc{
  grid-column: 1 / -1;
  color: var(--c-text-inverse-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 46ch;
}
@media (min-width: 760px){ .service-row__desc{ grid-column: auto; } }

.services__note{
  margin-top: 2.25rem;
  color: var(--c-text-inverse-soft);
  font-size: 0.9375rem;
  max-width: 60ch;
}
.services__note strong{ color: var(--c-text-inverse); font-weight: 600; }

/* ==========================================================================
   Why us
   ========================================================================== */
.why{ background: var(--c-offwhite); }
.why__grid{
  display: grid; gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}
@media (min-width: 640px) and (max-width: 1039px){
  .why__grid{ grid-template-columns: repeat(2, 1fr); }
  .why__grid > .why-card:last-child:nth-child(odd){ grid-column: span 2; }
}
@media (min-width: 1040px){
  .why__grid{ grid-template-columns: repeat(3, 1fr); }
  .why__grid > .why-card:last-child:nth-child(3n+2){ grid-column: span 2; }
}
.why-card{
  background: var(--c-offwhite);
  padding: 2.25rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  transition: background var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.why-card:hover{
  background: var(--c-offwhite-2);
  box-shadow: inset 0 0 0 1px rgba(217,95,10,0.3), 0 16px 32px -20px rgba(23,23,25,0.25);
  z-index: 1;
}
.why-card__icon{
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-orange);
  transition: transform var(--dur-med) var(--ease);
}
.why-card:hover .why-card__icon{ transform: translateY(-3px) scale(1.08); }
.why-card__icon svg{ width: 30px; height: 30px; }
.why-card h3{
  font-size: 1.125rem; font-weight: 700;
}
.why-card p{ color: var(--c-text-soft); font-size: 0.94rem; line-height: 1.6; }

/* ==========================================================================
   Process
   ========================================================================== */
.process{ background: var(--c-offwhite); }
.process__list{
  display: grid;
  gap: 0;
}
@media (min-width: 860px){
  .process__list{ grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
}
.process-step{
  position: relative;
  padding: 1.75rem 0 1.75rem 0;
  border-top: 1.5px solid var(--c-border);
  transition: transform var(--dur-med) var(--ease);
}
@media (min-width: 860px){
  .process-step{ padding: 0; border-top: none; }
}
.process-step:hover{ transform: translateY(-4px); }
.process-step__num{
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.25rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-text-mute);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--dur-med) var(--ease), -webkit-text-stroke-color var(--dur-med) var(--ease);
}
.process-step:hover .process-step__num{
  color: var(--c-orange);
  -webkit-text-stroke: 1.5px var(--c-orange);
}
.process-step h3{ font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.process-step p{ font-size: 0.9rem; color: var(--c-text-soft); line-height: 1.6; max-width: 32ch; }

/* ==========================================================================
   Gallery / Projects
   ========================================================================== */
.projects{ background: var(--c-offwhite); }
.refs{
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.1rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--c-border);
}
.refs__label{
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-text-mute); width: 100%; margin-bottom: .5rem;
}
.refs li{
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--c-text);
  padding-right: 1.1rem;
  border-right: 1px solid var(--c-border);
}
.refs li:last-child{ border-right: none; padding-right: 0; }

.gallery{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.5rem, 1.2vw, 1rem);
}
@media (min-width: 700px){
  .gallery{ grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; }
  .gallery__item--feature{ grid-column: span 2; grid-row: span 2; }
}
.gallery__item{
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  background: var(--c-concrete);
}
.gallery__item--feature{ aspect-ratio: 1 / 1; }
@media (min-width: 700px){ .gallery__item--feature{ aspect-ratio: auto; } }
.gallery__item img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease);
}
.gallery__item:hover img{ transform: scale(1.045); }
.gallery__item::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,9,10,0.66) 0%, rgba(9,9,10,0) 42%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.gallery__item:hover::after, .gallery__item:focus-visible::after{ opacity: 1; }
.gallery__caption{
  position: absolute; left: 1rem; right: 1rem; bottom: 0.9rem; z-index: 1;
  color: #fff; font-size: 0.85rem; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.gallery__item:hover .gallery__caption,
.gallery__item:focus-visible .gallery__caption{ opacity: 1; transform: translateY(0); }
.gallery__expand{
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(9,9,10,0.45);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.gallery__item:hover .gallery__expand,
.gallery__item:focus-visible .gallery__expand{ opacity: 1; }
.gallery__expand svg{ width: 16px; height: 16px; }

.projects__note{
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--c-text-mute);
  max-width: 62ch;
  line-height: 1.6;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{ background: var(--c-offwhite-2); }
.faq__list{
  border-top: 1.5px solid var(--c-border);
  max-width: 62rem;
}
.faq-item{ border-bottom: 1.5px solid var(--c-border); }
.faq-item__q{
  display: flex;
  align-items: center;
  gap: clamp(.85rem, 2vw, 1.5rem);
  padding: clamp(1.15rem, 2.5vw, 1.6rem) 0;
  cursor: pointer;
  list-style: none;
  transition: color var(--dur-fast) var(--ease);
}
.faq-item__q::-webkit-details-marker{ display: none; }
.faq-item__q:hover{ color: var(--c-orange); }
.faq-item__q:focus-visible{
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
}
.faq-item__num{
  flex: none;
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.9rem; letter-spacing: 0.06em;
  color: var(--c-text-mute);
  transition: color var(--dur-med) var(--ease);
}
.faq-item[open] .faq-item__num,
.faq-item__q:hover .faq-item__num{ color: var(--c-orange); }
.faq-item__text{
  flex: 1 1 auto;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.35;
}
.faq-item__icon{
  flex: none;
  position: relative;
  width: 34px; height: 34px;
  border: 1.5px solid var(--c-border);
  border-radius: 50%;
  transition: border-color var(--dur-med) var(--ease), background-color var(--dur-med) var(--ease);
}
.faq-item__icon::before,
.faq-item__icon::after{
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 13px; height: 1.5px;
  background: var(--c-text);
  transform: translate(-50%, -50%);
  transition: transform var(--dur-med) var(--ease), background-color var(--dur-med) var(--ease);
}
.faq-item__icon::after{ transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__q:hover .faq-item__icon{ border-color: var(--c-orange); }
.faq-item[open] .faq-item__icon{
  background: var(--c-orange);
  border-color: var(--c-orange);
}
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after{ background: var(--c-offwhite); }
.faq-item[open] .faq-item__icon::after{ transform: translate(-50%, -50%) rotate(180deg); }
.faq-item__a{
  padding: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
  padding-left: calc(0.9rem + clamp(.85rem, 2vw, 1.5rem));
  animation: faq-in var(--dur-med) var(--ease) both;
}
.faq-item__a p{
  color: var(--c-text-soft);
  line-height: 1.7;
  max-width: 62ch;
}
@keyframes faq-in{
  from{ opacity: 0; transform: translateY(-6px); }
  to{ opacity: 1; transform: none; }
}

/* Lightbox */
.lightbox{
  position: fixed; inset: 0; z-index: 200;
  background: rgba(9,9,10,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med);
  padding: var(--container-pad);
}
.lightbox.is-open{ opacity: 1; visibility: visible; }
.lightbox__figure{ max-width: min(1100px, 100%); max-height: 82vh; text-align: center; }
.lightbox__figure img{
  max-width: 100%; max-height: 76vh; margin-inline: auto;
  object-fit: contain;
}
.lightbox__caption{
  color: var(--c-text-inverse-soft); font-size: 0.9rem; margin-top: 1rem;
}
.lightbox__close, .lightbox__prev, .lightbox__next{
  position: absolute;
  color: #fff;
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--dur-fast) var(--ease);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover{ background: rgba(255,255,255,0.12); }
.lightbox__close{ top: 1.25rem; right: 1.25rem; }
.lightbox__close svg{ width: 20px; height: 20px; }
.lightbox__prev{ left: 0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next{ right: 0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__prev svg, .lightbox__next svg{ width: 22px; height: 22px; }
@media (min-width: 700px){
  .lightbox__prev{ left: 1.5rem; }
  .lightbox__next{ right: 1.5rem; }
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta{
  background: var(--c-black);
  color: var(--c-text-inverse);
  text-align: center;
}
.final-cta__inner{ max-width: 700px; margin-inline: auto; }
.final-cta .eyebrow{ justify-content: center; }
.final-cta h2{
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: #fff;
  margin-bottom: 1.25rem;
}
.final-cta p{
  color: var(--c-text-inverse-soft);
  font-size: 1.0625rem;
  margin-bottom: 2.25rem;
}
.final-cta__ctas{ display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{
  background: var(--c-charcoal);
  color: var(--c-text-inverse-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__top{
  display: grid;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--c-border-inverse);
}
@media (min-width: 780px){
  .footer__top{ grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
}
.footer__brand p{ margin-top: 1rem; max-width: 32ch; font-size: 0.9375rem; line-height: 1.6; }
.footer__heading{
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-text-inverse); margin-bottom: 1.1rem;
}
.footer__links{ display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a{ font-size: 0.9375rem; transition: color var(--dur-fast) var(--ease); }
.footer__links a:hover{ color: var(--c-text-inverse); }
.footer__contact-row{ display: flex; align-items: center; gap: .75rem; }
.footer__contact-row svg{ width: 17px; height: 17px; flex-shrink: 0; color: var(--c-orange); }

.footer__bottom{
  padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--c-text-mute);
}
.footer__social{ display: flex; gap: 0.9rem; }
.footer__social a{
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--c-border-inverse);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.footer__social a:hover{ border-color: var(--c-orange); color: var(--c-orange); }
.footer__social svg{ width: 16px; height: 16px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.page-header{
  background: var(--c-charcoal);
  color: var(--c-text-inverse);
  padding-block: calc(var(--header-h-mobile) + 3rem) 3.5rem;
}
@media (min-width: 900px){ .page-header{ padding-block: calc(var(--header-h) + 3.5rem) 4.5rem; } }
.page-header h1{
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  color: #fff;
  max-width: 18ch;
}
.page-header p{
  margin-top: 1.1rem;
  color: var(--c-text-inverse-soft);
  font-size: 1.05rem;
  max-width: 52ch;
}

.contact-section{ background: var(--c-offwhite); }
.contact-grid{
  display: grid;
  gap: 3rem;
}
@media (min-width: 980px){
  .contact-grid{ grid-template-columns: 1.5fr 1fr; gap: 4.5rem; }
}

.form-row{ margin-bottom: 1.4rem; }
.form-row--split{
  display: grid; gap: 1.4rem;
}
@media (min-width: 560px){
  .form-row--split{ grid-template-columns: 1fr 1fr; }
}
.form-row--split > .form-row{ margin-bottom: 0; }

.field label{
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
.field .opt{ color: var(--c-text-mute); font-weight: 400; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="number"],
.field select,
.field textarea{
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--c-border);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--c-text);
  border-radius: 2px;
  transition: border-color var(--dur-fast) var(--ease);
}
.field input:hover, .field select:hover, .field textarea:hover{ border-color: var(--c-gray); }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--c-orange); outline: none;
}
.field textarea{ min-height: 130px; resize: vertical; }
.field select{ appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2355524B' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }

.radio-group{ display: flex; flex-wrap: wrap; gap: 0.9rem; }
.radio-pill{
  position: relative;
}
.radio-pill input{ position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; cursor: pointer; }
.radio-pill span{
  display: inline-flex; align-items: center;
  padding: 0.6rem 1.1rem;
  border: 1.5px solid var(--c-border);
  border-radius: 999px;
  font-size: 0.875rem; font-weight: 500;
  transition: all var(--dur-fast) var(--ease);
}
.radio-pill input:checked + span{
  border-color: var(--c-orange); background: rgba(217,95,10,0.08); color: var(--c-orange-dark); font-weight: 600;
}
.radio-pill input:focus-visible + span{ outline: 2px solid var(--c-orange); outline-offset: 2px; }

.form-note{
  margin-top: 1.5rem;
  font-size: 0.83rem;
  color: var(--c-text-mute);
  line-height: 1.6;
}

.form-status{
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 2px;
  font-size: 0.9rem;
  display: none;
  align-items: flex-start;
  gap: .7rem;
  line-height: 1.55;
}
.form-status.is-visible{ display: flex; }
.form-status--success{ background: rgba(217,95,10,0.08); border: 1px solid rgba(217,95,10,0.28); color: #7a3d08; }
.form-status--error{ background: rgba(180,40,20,0.06); border: 1px solid rgba(180,40,20,0.25); color: #8a2a12; }
.form-status svg{ width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* contact sidebar */
.contact-card{
  background: var(--c-charcoal);
  color: var(--c-text-inverse);
  padding: clamp(2rem, 3vw, 2.75rem);
  border-radius: 2px;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.contact-card h3{ font-size: 1.3rem; margin-bottom: 0.4rem; }
.contact-card > p{ color: var(--c-text-inverse-soft); font-size: 0.9rem; margin-bottom: 1.75rem; }
.contact-card__list{ display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.75rem; }
.contact-card__item{
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 1rem;
  background: rgba(246,244,240,0.04);
  border: 1px solid var(--c-border-inverse);
  border-radius: 2px;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.contact-card__item:hover{ border-color: var(--c-orange); background: rgba(217,95,10,0.08); }
.contact-card__item-icon{
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(217,95,10,0.14); color: var(--c-orange-light);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card__item-icon svg{ width: 18px; height: 18px; }
.contact-card__item-label{ font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-text-inverse-soft); }
.contact-card__item-value{ font-size: 0.95rem; font-weight: 600; color: #fff; }
.contact-card__divider{ border-top: 1px solid var(--c-border-inverse); margin-block: 1.75rem; }
.contact-card__meta{ display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.875rem; color: var(--c-text-inverse-soft); }
.contact-card__meta strong{ color: var(--c-text-inverse); font-weight: 600; }
.contact-card__meta a{ color: var(--c-orange-light); text-decoration: underline; text-underline-offset: 2px; }
.contact-card__meta a:hover{ color: #fff; }

/* "Ocenite nas" — Google review QR */
.review-block{ display: flex; align-items: center; gap: 1.25rem; }
.review-block__text{ min-width: 0; }
.review-block__label{
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c-orange-light);
  margin-bottom: 0.4rem;
}
.review-block__text p{ font-size: 0.85rem; line-height: 1.55; color: var(--c-text-inverse-soft); }
.review-block__link{
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.7rem;
  font-size: 0.82rem; font-weight: 600; color: #fff;
  transition: color var(--dur-fast) var(--ease), gap var(--dur-fast) var(--ease);
}
.review-block__link svg{ width: 15px; height: 15px; flex-shrink: 0; }
.review-block__link:hover{ color: var(--c-orange-light); gap: 0.65rem; }
.review-block__qr{
  flex-shrink: 0;
  width: 108px; height: 108px;
  padding: 7px;
  background: #fff;
  border: 1px solid var(--c-border-inverse);
  border-radius: 2px;
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.review-block__qr img{ width: 100%; height: 100%; }
.review-block__qr:hover{ border-color: var(--c-orange); transform: translateY(-2px); }

@media (max-width: 420px){
  .review-block{ flex-direction: column; align-items: flex-start; gap: 1rem; }
}
