@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --green: #3a5442;
  --green-dark: #2d4135;
  --green-mid: #4d6e57;
  --green-light: #6a8f74;
  --green-pale: #eef2ef;
  --green-xpale: #f5f8f6;
  --gold: #c9a84c;
  --dark: #111827;
  --dark2: #1f2937;
  --grey: #6b7280;
  --grey-light: #9ca3af;
  --border: #e5e7eb;
  --white: #ffffff;
  --off-white: #f9fafb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
  --radius: 8px;
  --radius-lg: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Roboto', -apple-system, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITIES ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58, 84, 66, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span { color: var(--green); }

.section-lead {
  font-size: 17px;
  color: var(--grey);
  max-width: 580px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }

.btn-white {
  background: var(--white);
  color: var(--green);
}
.btn-white:hover { background: var(--green-pale); transform: translateY(-1px); }

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-white-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* Photo placeholder */
.photo-block {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--green-light);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  position: relative;
}

.photo-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-pale) 0%, #dce9e0 100%);
}

.photo-block-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.photo-block svg { opacity: .4; }

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}

.site-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark2);
  border-radius: var(--radius);
  transition: all .15s;
}

.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--green); background: var(--green-pale); }

.nav-links .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 5px;
  vertical-align: middle;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 12px 8px 8px;
  min-width: 220px;
  z-index: 100;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius);
  transition: all .15s;
}

.dropdown a:hover { background: var(--green-pale); color: var(--green); }

.dropdown-icon { display: none; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone:hover { color: var(--green); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .2s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('fotos/Home Page/HomePage_1.jpg');
  background-size: cover;
  background-position: center 20%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 15, 0.20);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  display: flex;
  z-index: 2;
  animation: scrollBounce 2.2s ease-in-out infinite;
  transition: color .2s;
}
.hero-scroll:hover { color: #fff; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ─── HERO INTRO ─── */
.hero-intro {
  background: var(--white);
  padding: 72px 0 80px;
  text-align: center;
}
.hero-intro .hero-badge {
  background: var(--green-pale);
  border: 1px solid rgba(58, 84, 66, 0.18);
  color: var(--green);
  margin: 0 auto 24px;
}
.hero-intro .hero-title {
  color: var(--dark);
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}
.hero-intro .hero-title em {
  color: var(--green);
}
.hero-intro .hero-subtitle {
  color: var(--grey);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-intro .hero-actions {
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.hero-title em {
  font-style: normal;
  color: #8fbc99;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}


.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--green);
  padding: 0;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background .2s;
}

.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,.06); }

.trust-item-link {
  text-decoration: none;
  cursor: pointer;
}
.trust-item-link:hover { background: rgba(255,255,255,.1); }
.trust-item-link .trust-label { text-decoration: underline; text-underline-offset: 3px; }

.trust-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: .5px;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.about-photo-main {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
}

.about-photo-sm {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
}

.about-photo-main img,
.about-photo-sm img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.18) contrast(1.06) brightness(0.96);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.about-photo-main:hover img,
.about-photo-sm:hover img {
  filter: sepia(0) contrast(1) brightness(1);
  transform: scale(1.03);
}

.about-stat-tile {
  display: flex; align-items: center; justify-content: center;
  background: var(--green); border-radius: 12px; padding: 24px;
  text-align: center; flex-direction: column;
}
.about-stat-tile .stat-year { font-size: 38px; font-weight: 900; color: #fff; line-height: 1; font-family: var(--font-head); }
.about-stat-tile .stat-label { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 6px; letter-spacing: .04em; text-transform: uppercase; }

.about-photo-left {
  border-radius: 14px; overflow: hidden; align-self: stretch; min-height: 420px;
}
.about-photo-left img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.18) contrast(1.06) brightness(0.96);
  transition: filter 0.4s ease;
}
.about-photo-left:hover img { filter: sepia(0) contrast(1) brightness(1); }

.about-heritage-wrap {
  position: relative; overflow: hidden; border-radius: 14px;
  aspect-ratio: 2/3;
}
.about-heritage-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: sepia(0.2) contrast(1.06) brightness(0.95);
  transition: filter 0.4s ease;
}
.about-heritage-wrap:hover img { filter: sepia(0) contrast(1) brightness(1); }

.about-highlight {
  background: var(--green-xpale);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
  font-style: italic;
  color: var(--dark2);
  line-height: 1.7;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card-img {
  aspect-ratio: 16/9;
  background: var(--green-pale);
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.service-card-img img.active { opacity: 1; }

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: gap .2s;
}

.service-link:hover { gap: 10px; }

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-grid-full {
  grid-template-columns: repeat(4, 1fr);
}

.why-card {
  background: var(--green-xpale);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .2s;
}

.why-card:hover { box-shadow: var(--shadow); }

.why-icon {
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

/* ─── PROCESS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--green-pale);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 72px; height: 72px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.65;
}

/* ─── PORTFOLIO ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s;
  position: relative;
}

.portfolio-item:hover { transform: scale(1.02); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-item.large { grid-column: 1 / 3; }

.portfolio-img {
  aspect-ratio: 4/3;
  width: 100%;
}

.portfolio-item.large .portfolio-img { aspect-ratio: 16/7; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 63, 50, .8);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s;
}

.portfolio-label {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

/* ─── GALLERY MASONRY ─── */
.gallery-masonry {
  columns: 3;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .3s ease, filter .3s ease;
}

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

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: rgba(255,255,255,.8);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: color .15s;
  font-weight: 300;
}

.lightbox-close:hover { color: #fff; }

@media (max-width: 900px) {
  .gallery-masonry { columns: 2; }
}
@media (max-width: 500px) {
  .gallery-masonry { columns: 1; }
}

/* ─── CLIENTS MARQUEE ─── */
.clients-intro { margin-bottom: 40px; }

.clients-marquee-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

.clients-marquee-track:hover { animation-play-state: paused; }

.clients-marquee-track img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter .2s, opacity .2s;
  flex-shrink: 0;
}

.clients-marquee-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── PORTFOLIO MARQUEE ─── */
.portfolio-marquee-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.portfolio-marquee-wrap + .portfolio-marquee-wrap {
  margin-top: 12px;
}

.portfolio-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: max-content;
}

.portfolio-track.row-left  { animation: portfolioLeft  50s linear infinite; }
.portfolio-track.row-right { animation: portfolioRight 55s linear infinite; }
.portfolio-track:hover { animation-play-state: paused; }

.p-img {
  height: 220px;
  width: auto;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  cursor: zoom-in;
  transition: filter .2s, transform .2s;
  display: block;
}

.p-img:hover {
  filter: brightness(0.85);
  transform: scale(1.02);
}

@keyframes portfolioLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes portfolioRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .2s;
}

.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--green); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--dark2);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}

.testimonial-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.testimonial-role { font-size: 12px; color: var(--grey-light); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  margin-top: 40px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.cta-text h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  max-width: 480px;
  line-height: 1.65;
}

.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-logo-icon {
  height: 256px;
  width: 256px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: all .15s;
}

.social-btn:hover { background: var(--green); color: var(--white); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  align-items: flex-start;
}

.footer-contact-item svg { flex-shrink: 0; opacity: .65; margin-top: 2px; }
.footer-contact-item strong { color: rgba(255,255,255,.85); display: block; margin-bottom: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--green-dark);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e2f25 0%, #3a5442 100%);
  opacity: .9;
}

.page-hero-inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,.65); transition: color .15s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.35); }

.page-hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── SERVICE PAGE LAYOUT ─── */
.service-list { display: flex; flex-direction: column; gap: 80px; }

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.service-item.reverse { direction: rtl; }
.service-item.reverse > * { direction: ltr; }

.service-item-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.svc-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.svc-slideshow img.active { opacity: 1; }
.svc-slideshow { cursor: zoom-in; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: rgba(255,255,255,.85);
  font-size: 36px;
  line-height: 1;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s;
  z-index: 1;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: .5px;
}

.service-sub-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-sub-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark2);
}

.service-sub-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.contact-info-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 3px;
}

.contact-detail-text span {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
}

.map-placeholder {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,.1);
}

/* Form */
.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-card .form-sub {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color .15s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58, 84, 66, .1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.quick-quote-box {
  background: var(--green-xpale);
  border: 1.5px solid var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 32px;
}

.quick-quote-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-quote-box p {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 20px;
}

/* ─── ABOUT PAGE ─── */
.timeline { padding-left: 24px; border-left: 2px solid var(--green-pale); }

.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -9px; top: 4px;
  width: 16px; height: 16px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}

.timeline-year {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-item h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.timeline-item p { font-size: 14px; color: var(--grey); line-height: 1.7; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .2s;
}

.team-card:hover { border-color: var(--green); box-shadow: var(--shadow); }

.team-avatar {
  width: 80px; height: 80px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 16px;
}

.team-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--grey); line-height: 1.65; }

/* ─── MOBILE ─── */
/* ─── TABLET (≤900px) ─── */
@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .section-lg { padding: 72px 0; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-phone span { display: none; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { display: none; }

  /* Trust */
  .trust-inner { grid-template-columns: repeat(3, 1fr); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photos { display: none; }
  .about-photo-left { min-height: 260px; }

  /* Timeline (about page) */
  .about-timeline-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item { grid-template-columns: 1fr; }
  .service-item.reverse { direction: ltr; }
  .service-item-img { min-height: 260px; }

  /* Why / Process */
  .why-grid-full { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.large { grid-column: 1 / 3; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo-icon { height: 140px; width: 140px; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── MOBILE (≤600px) ─── */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-lg { padding: 56px 0; }

  /* Nav */
  .nav-cta .btn-primary { display: none; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Trust */
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .trust-item:last-child { border-bottom: none; }
  .trust-number { font-size: 26px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-photo-left { min-height: 220px; }
  .about-heritage-wrap { aspect-ratio: 4/3; }

  /* Page Hero */
  .page-hero { padding: 80px 0 56px; }
  .page-hero-title { font-size: clamp(28px, 7vw, 38px); }
  .page-hero-sub { font-size: 15px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { aspect-ratio: 16/9; }

  /* Why / Process */
  .why-grid-full { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .why-card { padding: 20px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.large { grid-column: 1; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo-icon { height: 100px; width: 100px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* CTA */
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Lightbox */
  .lightbox-prev { left: 8px; padding: 8px 12px; font-size: 28px; }
  .lightbox-next { right: 8px; padding: 8px 12px; font-size: 28px; }
  #svcLightboxImg { max-width: 96vw; max-height: 80vh; }
}
