/* =============================================
   PAR BUILDERS — WEBSITE STYLESHEET
   Colors: Charcoal near-black + Warm gold + White
   Fonts: Barlow Condensed (headings) + Barlow (body)
   ============================================= */

:root {
  --black: #111110;
  --charcoal: #1c1c1a;
  --dark: #252520;
  --gold: #C9A84C;
  --gold-light: #e0c06a;
  --gold-dark: #a8872e;
  --white: #ffffff;
  --off-white: #f5f4f0;
  --gray: #8a8a82;
  --light-gray: #e8e7e2;
  --text: #2a2a26;
  --text-light: #6b6b62;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --nav-height: 80px;
  --section-pad: 100px;
  --container: 1200px;
  --radius: 4px;
  --transition: 0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,17,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(17,17,16,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 58px; width: auto; filter: brightness(1.05); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  font-weight: 700;
  margin-left: 8px;
  transition: background var(--transition), transform var(--transition);
}
.nav-link.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav.open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,8,0.80) 0%,
    rgba(10,10,8,0.55) 50%,
    rgba(10,10,8,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  padding-top: var(--nav-height);
}
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.35s both;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
  animation: fadeUp 0.8s 0.5s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.65s both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.text-link {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.text-link:hover { color: var(--gold-dark); }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 40px;
  gap: 4px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.trust-plus { font-size: 26px; vertical-align: super; }
.trust-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.trust-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,168,76,0.2);
}

/* ============ SECTIONS ============ */
.section {
  padding: var(--section-pad) 0;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 50px;
}
.section-cta {
  text-align: center;
  margin-top: 52px;
}

/* ============ SERVICES SNAP ============ */
.services-snap { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}
.service-img-wrap {
  height: 280px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.04); }
.service-body {
  padding: 32px;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  color: var(--black);
}
.service-body p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
}

/* ============ PROJECTS GRID ============ */
.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 380px;
  gap: 8px;
}
.project-tile {
  position: relative;
  overflow: hidden;
  display: block;
}
.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-tile:hover img { transform: scale(1.06); }
.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(10,10,8,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(8px);
  transition: transform var(--transition);
}
.project-tile:hover .project-info { transform: translateY(0); }
.project-type {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.project-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--charcoal); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 36px 32px 32px;
  position: relative;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 18px;
  opacity: 0.7;
}
.testimonial-card p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  padding: 100px 32px;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,0.75);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 18px;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 36px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
}
.footer-brand { max-width: 340px; }
.footer-logo { height: 48px; margin-bottom: 20px; }
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.7;
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-col a,
.footer-col span {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.5;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

/* ============ SERVICES PAGE ============ */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  max-width: 600px;
  line-height: 1.7;
}
.services-full { background: var(--white); }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }
.service-block-img {
  height: 500px;
  overflow: hidden;
}
.service-block-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-block-text {
  background: var(--off-white);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-block-text h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.05;
}
.service-block-text p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.service-features {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.service-features li::before {
  content: '—';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============ PROJECTS PAGE ============ */
.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proj-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  height: 280px;
  background: var(--charcoal);
  cursor: pointer;
}
.proj-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.3s ease;
}
.proj-card:hover img { transform: scale(1.06); opacity: 0.85; }
.proj-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(10,10,8,0.9) 0%, transparent 100%);
  transform: translateY(6px);
  transition: transform var(--transition);
}
.proj-card:hover .proj-card-info { transform: translateY(0); }
.proj-card-type {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.proj-card-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============ ABOUT PAGE ============ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}
.about-intro-img {
  height: 580px;
  overflow: hidden;
}
.about-intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-intro-text .section-label { margin-bottom: 14px; }
.about-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 24px;
}
.about-intro-text p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  background: var(--charcoal);
  padding: 80px 0;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.1);
}
.about-stat-item {
  background: var(--charcoal);
  padding: 48px 32px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.license-section {
  background: var(--off-white);
  padding: 80px 0;
}
.license-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.license-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 3px solid var(--gold);
  padding: 28px 24px;
  text-align: center;
}
.license-state {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.license-detail {
  font-size: 13px;
  color: var(--text-light);
}

/* ============ CONTACT PAGE ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 100px 0;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 20px;
}
.contact-info p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-item-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-item-value {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
}
.contact-item-value a {
  color: var(--black);
  transition: color var(--transition);
}
.contact-item-value a:hover { color: var(--gold-dark); }
.contact-form {
  background: var(--off-white);
  padding: 48px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 16px 20px;
  font-size: 15px;
  margin-top: 16px;
  border-radius: var(--radius);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  :root { --section-pad: 70px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .project-tile--large { height: 300px; }
  .project-tile { height: 240px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-img { height: 350px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .license-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) { direction: ltr; }
  .service-block-img { height: 300px; }
  .service-block-text { padding: 40px 32px; }
  .projects-full-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 0; }
  .trust-divider { display: none; }
  .trust-stat { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .header-inner { padding: 0 20px; }
  .hero-content { padding: 0 20px; padding-top: var(--nav-height); }
  .container { padding: 0 20px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .license-grid { grid-template-columns: 1fr 1fr; }
  .projects-full-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-stat { width: 50%; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ============ HERO LOGO ============ */
.hero-logo {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  display: block;
}
@media (max-width: 600px) { .hero-logo { height: 56px; } }

/* ============ CLEAN PHOTO GRID ============ */
.project-group-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.photo-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--charcoal);
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-item:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .photo-grid { grid-template-columns: 1fr; } }

/* ============ TEAM SECTION ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 860px;
}
.team-card { text-align: center; }
.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  background: var(--charcoal);
  border: 3px solid var(--gold);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 4px;
}
.team-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; max-width: 280px; }
}

/* ============ HOME PROJECT TILES - NO OVERLAY TEXT ============ */
.project-tile { position: relative; overflow: hidden; display: block; }
.project-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.project-tile:hover img { transform: scale(1.05); }
.project-tile--large { height: 380px; }
.project-tile:not(.project-tile--large) { height: 280px; }


/* ============ ABOUT STORY + TEAM LAYOUT ============ */
.about-story-team {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-story-left p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-story-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 24px;
}
.team-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 16px;
}
.team-card-inline {
  display: flex;
  align-items: center;
  gap: 20px;
}
.team-photo-inline {
  width: 160px;
  height: 160px;
  min-width: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--charcoal);
}
.team-photo-inline img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-photo-inline svg {
  width: 100%; height: 100%;
}
@media (max-width: 900px) {
  .about-story-team { grid-template-columns: 1fr; gap: 48px; }
}

/* ============ HERO BRAND NAME ============ */
.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 800;
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-brand-name span {
  color: var(--gold);
  display: block;
  font-size: clamp(60px, 10vw, 120px);
}
.hero-sub strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ============ PORTFOLIO CARD GRID ============ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.portfolio-card {
  cursor: default;
}
.portfolio-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--charcoal);
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-img img {
  transform: scale(1.04);
}
.portfolio-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  padding: 12px 0 4px;
  border-top: 2px solid var(--gold);
  margin-top: 10px;
}
@media (max-width: 1000px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ============ AWARDS - COMPACT HORIZONTAL ============ */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.award-item {
  height: 140px;
  overflow: hidden;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--light-gray);
}
.award-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 900px) { .awards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .awards-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ HERO BRAND - BIG AND BOLD ============ */
.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 800;
  line-height: 0.88;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-brand-name span {
  color: var(--gold);
  display: block;
}
.hero-sub strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ============ PROJECT DETAIL PAGE ============ */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.detail-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--charcoal);
}
.detail-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.detail-item:hover img { transform: scale(1.04); }
.back-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--gold-light); }
@media (max-width: 700px) { .detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .detail-grid { grid-template-columns: 1fr; } }

/* Portfolio card as link */
a.portfolio-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.portfolio-card .portfolio-label {
  color: var(--black);
}
a.portfolio-card:hover .portfolio-label {
  color: var(--gold-dark);
}

/* AWARD LABELS */
.award-item-wrap { text-align: center; }
.award-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.4;
}

.hero-since {
  color: var(--white) !important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}


/* ============ HERO SLIDESHOW - PURE CSS ============ */
.hero-slideshow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.css-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  animation: cssSlide 25s infinite;
}
.s1 { background-image: url('images/hero-extraspace-aerial.jpg'); animation-delay: 0s; }
.s2 { background-image: url('images/storeright-finished-2.jpg'); animation-delay: 5s; }
.s3 { background-image: url('images/tropicana-dusk.jpg'); animation-delay: 10s; }
.s4 { background-image: url('images/cubesmart-exterior.jpg'); animation-delay: 15s; }
.s5 { background-image: url('images/brooksville-corridor-2.jpg'); animation-delay: 20s; }

@keyframes cssSlide {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  20%  { opacity: 1; }
  24%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ============ MOBILE / TABLET IMPROVEMENTS ============ */

/* iPad (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-brand-name { font-size: clamp(60px, 10vw, 120px); }
  .about-story-team { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .hero-brand-name { font-size: clamp(52px, 14vw, 80px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .section-title { font-size: clamp(28px, 7vw, 42px); }
  .page-hero h1 { font-size: clamp(36px, 9vw, 60px); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team-stack { gap: 24px; }
  .team-photo-inline { width: 120px; height: 120px; min-width: 120px; }
  .about-office { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .cta-content h2 { font-size: clamp(32px, 8vw, 52px); }
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .service-block { grid-template-columns: 1fr; }
  .service-block-img { height: 260px; }
  .service-block-text { padding: 32px 24px; }
}

/* Small mobile (max 480px) */
@media (max-width: 480px) {
  .hero-brand-name { font-size: 52px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .portfolio-label { font-size: 12px; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
  .header-inner { padding: 0 16px; }
}
