/* ===========================
   RESET & CUSTOM PROPERTIES
   =========================== */

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

:root {
  --black:         #0C0C0C;
  --black-mid:     #181818;
  --white:         #FFFFFF;
  --off-white:     #F5F5F5;
  --light-gray:    #EFEFEF;
  --charcoal:      #252320;
  --charcoal-mid:  #4A4845;
  --charcoal-light:#7A7875;
  --gold:          #C4A45A;
  --gold-dark:     #A88840;
  --gold-light:    #DFC98A;
  --border:        #E2E2E2;
  --border-dark:   rgba(255, 255, 255, 0.1);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
}

/* ===========================
   BASE
   =========================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===========================
   LAYOUT
   =========================== */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--charcoal {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn--charcoal:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-mid);
}

.btn--black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--black:hover {
  background: var(--black-mid);
  border-color: var(--black-mid);
}

.btn--lg {
  padding: 18px 52px;
  font-size: 0.85rem;
}

/* ===========================
   SHARED SECTION STYLES
   =========================== */

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

.section-header--light .section-title {
  color: var(--white);
}
.section-header--light .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   NAVIGATION
   =========================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--border-dark);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-right: auto;
}
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav__logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav__phone:hover {
  color: var(--gold-light);
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  height: 92vh;
  min-height: 620px;
  background-color: var(--black);
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.70) 55%,
    rgba(10, 10, 10, 0.38) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 26px;
  max-width: 600px;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero__phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  transition: color 0.2s;
}
.hero__phone:hover {
  color: var(--gold-light);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===========================
   VALUES
   =========================== */

.values {
  background: var(--white);
  padding: 108px 0;
}

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

.value-card {
  text-align: center;
  padding: 48px 36px;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.value-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 28px;
  color: var(--gold);
}
.value-card__icon svg {
  width: 100%;
  height: 100%;
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.value-card__desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* ===========================
   FEATURED PROJECTS
   =========================== */

.projects {
  background: var(--off-white);
  padding: 108px 0;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.project-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.project-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.project-card__img {
  overflow: hidden;
}

.project-card__img-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}
.project-card:hover .project-card__img-placeholder {
  transform: scale(1.05);
}

.project-card__img-placeholder svg {
  width: 52px;
  height: 52px;
  color: var(--charcoal-light);
  opacity: 0.35;
}

.project-card__body {
  padding: 26px 30px 30px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s ease;
}
.project-card:hover .project-card__body {
  border-top-color: var(--gold);
}

.project-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.project-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.project-card__location {
  font-size: 0.82rem;
  color: var(--charcoal-light);
}

.projects__cta {
  text-align: center;
}

/* ===========================
   TESTIMONIALS
   =========================== */

.testimonials {
  background: var(--black);
  padding: 108px 0;
  position: relative;
  overflow: hidden;
}

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

.testimonial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 44px 38px;
  transition: background 0.3s ease;
}
.testimonial:hover {
  background: rgba(255, 255, 255, 0.07);
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 12px;
  user-select: none;
}

.testimonial__text {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 36px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.25;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.testimonial__detail {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* ===========================
   CALL TO ACTION
   =========================== */

.cta-section {
  background: var(--black);
  padding: 108px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.cta-section__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-section__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 44px;
}

/* ===========================
   SERVICES PAGE
   =========================== */

.page-hero {
  background: var(--black);
  padding: 88px 0 80px;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.page-hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.page-hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  max-width: 560px;
}

.page-hero__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  line-height: 1.8;
  font-weight: 300;
}

.services-section {
  background: var(--white);
  padding: 108px 0;
}

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

.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 44px 36px 40px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 26px;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.85;
}

.services-cta {
  background: var(--black);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.services-cta__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.services-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.services-cta__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ===========================
   HOMEPAGE — NAV
   =========================== */

.hp-nav {
  display: flex;
  align-items: center;
  background: #000;
  border-bottom: 1px solid rgba(196,164,90,0.2);
  padding: 0 24px 0 20px;
  height: 72px;
  gap: 0;
  position: sticky;
  top: 0;
  z-index: 200;
}

.hp-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 20px;
  text-decoration: none;
}

.hp-nav__crown {
  width: 40px;
  height: 40px;
  color: var(--gold);
  flex-shrink: 0;
}
.hp-nav__crown svg { width: 100%; height: 100%; }

.hp-nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.hp-nav__brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hp-nav__brand-dev {
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.hp-nav__brand-llc {
  font-size: 0.48rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 1px;
}

.hp-nav__links {
  display: flex;
  list-style: none;
  gap: 20px;
  flex: 1;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.hp-nav__links li a {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.hp-nav__links li a:hover,
.hp-nav__links li.active a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hp-nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.hp-nav__cta {
  padding: 9px 20px;
  font-size: 0.68rem;
}

.hp-nav__phone-block {
  text-align: right;
  line-height: 1.25;
}
.hp-nav__phone-block a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.hp-nav__phone-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.hp-nav__phone-icon svg { width: 100%; height: 100%; }
.hp-nav__phone-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.hp-nav__phone-loc {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
}

/* ===========================
   HOMEPAGE — HERO
   =========================== */

.hp-hero {
  display: grid;
  grid-template-columns: 290px 1fr;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background: #0C0C0C;
}

.hp-hero__brand {
  background: transparent;
  border-right: 1px solid rgba(196,164,90,0.18);
  padding: 36px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-hero__logo-crown {
  width: 72px;
  height: 72px;
  color: var(--gold);
  margin-bottom: 10px;
}
.hp-hero__logo-crown svg { width: 100%; height: 100%; }

.hp-hero__logo-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2px;
}
.hp-hero__logo-dev {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.hp-hero__logo-rule {
  width: 100%;
  height: 1px;
  background: rgba(196,164,90,0.35);
  margin: 7px 0;
}
.hp-hero__logo-llc {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.hp-hero__tagline {
  display: inline-block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,164,90,0.35);
  padding: 5px 10px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.hp-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hp-hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hp-hero__bullet-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.hp-hero__bullet-icon svg { width: 100%; height: 100%; }
.hp-hero__bullet-body {}
.hp-hero__bullet-title {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 3px;
}
.hp-hero__bullet-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
}

/* Hero visual (right panel) */
.hp-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  padding: 48px 52px;
}

.hp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hp-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 10px;
}
.hp-hero__headline em {
  color: var(--gold);
  font-style: normal;
}

.hp-hero__subline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.hp-badge-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 30px;
  max-width: 520px;
}
.hp-badge {
  border: 1px solid rgba(196,164,90,0.28);
  background: rgba(0,0,0,0.55);
  padding: 12px 8px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hp-badge__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin: 0 auto 7px;
}
.hp-badge__icon svg { width: 100%; height: 100%; }
.hp-badge__title {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.35;
}

/* ===========================
   HOMEPAGE — GOLD BANNER
   =========================== */

.hp-banner {
  background: linear-gradient(135deg, #C4A45A 0%, #B8943E 40%, #C4A45A 70%, #DFC98A 100%);
  padding: 13px 32px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.hp-banner__star {
  opacity: 0.4;
  font-size: 1rem;
}

/* ===========================
   HOMEPAGE — SERVICES + PROJECTS
   =========================== */

.hp-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #0a0a0a;
}

/* Services */
.hp-services {
  background: #000;
  padding: 36px 22px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.hp-section-heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(196,164,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hp-section-heading::before,
.hp-section-heading::after {
  content: '—';
  opacity: 0.4;
}

.hp-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
.hp-svc-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(196,164,90,0.1);
  padding: 14px 6px 12px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.hp-svc-card:hover {
  background: rgba(196,164,90,0.07);
  border-color: rgba(196,164,90,0.3);
}
.hp-svc-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin: 0 auto 7px;
}
.hp-svc-icon svg { width: 100%; height: 100%; }
.hp-svc-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
  margin: 0;
}
.hp-services__cta {
  text-align: center;
}
.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 0.66rem;
  padding: 10px 22px;
}
.btn--gold-outline:hover {
  background: var(--gold);
  color: #000;
}

/* Projects */
.hp-projects {
  padding: 36px 28px;
}

.hp-proj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.hp-proj-card {
  background: #111;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.hp-proj-card:hover {
  box-shadow: 0 8px 32px rgba(196,164,90,0.15);
}

.hp-proj-card__img {
  overflow: hidden;
  background: #000;
}
.hp-proj-card__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.hp-proj-card:hover .hp-proj-card__img img {
  transform: scale(1.02);
}

.hp-proj-card__ph {
  position: relative;
  aspect-ratio: 4/3;
  background: #080808;
  border: 1px solid rgba(196,164,90,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s;
}
.hp-proj-card:hover .hp-proj-card__ph {
  border-color: rgba(196,164,90,0.65);
}

.hp-proj-card__ph-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 1;
  padding: 0 8px;
}
.hp-proj-card__ph-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: 0.45;
}
.hp-proj-card__ph-icon svg { width: 100%; height: 100%; }
.hp-proj-card__ph-name {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  text-align: center;
  line-height: 1.4;
}
.hp-proj-card__ph-note {
  font-size: 0.44rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196,164,90,0.38);
}
.hp-proj-card__before-label,
.hp-proj-card__after-label {
  position: absolute;
  top: 7px;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.68);
  padding: 2px 7px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hp-proj-card__before-label { left: 7px; }
.hp-proj-card__after-label { right: 7px; }
.hp-proj-card__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, rgba(196,164,90,0.7) 20%, rgba(196,164,90,0.7) 80%, transparent 100%);
  transform: translateX(-50%);
}

.hp-proj-card__footer {
  padding: 9px 12px;
  border-top: 2px solid var(--gold);
  background: #111;
}
.hp-proj-card__title {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.hp-projects__cta {
  text-align: center;
}

/* ===========================
   HOMEPAGE — TRUST BAR
   =========================== */

.hp-trust {
  background: #000;
  border-top: 1px solid rgba(196,164,90,0.18);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
}

.hp-trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.hp-trust__item:last-of-type {
  border-right: none;
}

.hp-trust__icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  flex-shrink: 0;
}
.hp-trust__icon svg { width: 100%; height: 100%; }

.hp-trust__text {}
.hp-trust__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 3px;
}
.hp-trust__desc {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.hp-trust__phone-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  background: var(--gold);
  text-decoration: none;
  transition: background 0.2s;
}
.hp-trust__phone-cta:hover {
  background: var(--gold-dark);
}
.hp-trust__phone-cta-icon {
  width: 30px;
  height: 30px;
  color: #000;
  flex-shrink: 0;
}
.hp-trust__phone-cta-icon svg { width: 100%; height: 100%; }
.hp-trust__phone-cta-num {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.hp-trust__phone-cta-label {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-top: 2px;
}

/* ===========================
   BRIDGE BACKGROUND
   =========================== */

.bridge-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

/* ===========================
   PORTFOLIO GRID
   =========================== */

.portfolio-section {
  background: var(--black);
  padding: 80px 0 100px;
}

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

.portfolio-card {
  background: #111;
  border: 1px solid rgba(196,164,90,0.2);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(196,164,90,0.22), 0 4px 20px rgba(0,0,0,0.5);
}

.portfolio-card__img {
  overflow: hidden;
  background: #000;
}
.portfolio-card__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.02);
}


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

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--black);
  padding-top: 64px;
  border-top: 1px solid var(--border-dark);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.footer__logo-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  margin-bottom: 20px;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 280px;
}

.footer__col-heading {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col ul li + li {
  margin-top: 10px;
}

.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer__col ul a:hover {
  color: var(--gold);
}

.footer__col p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}
.footer__col p + p {
  margin-top: 10px;
}

.footer__col a {
  color: var(--gold);
  transition: color 0.2s;
}
.footer__col a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  text-align: center;
  padding: 24px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.25);
}

/* ===========================
   RESPONSIVE — TABLET (1024px)
   =========================== */

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hp-hero {
    grid-template-columns: 240px 1fr;
  }

  .hp-body {
    grid-template-columns: 260px 1fr;
  }

  .hp-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-trust {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .hp-trust__phone-cta {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

/* ===========================
   RESPONSIVE — MOBILE (768px)
   =========================== */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 16px;
  }

  /* Nav */
  .hp-nav {
    padding: 0 16px;
    height: 60px;
  }
  .hp-nav__links {
    display: none;
  }
  .hp-nav__phone-block {
    display: none;
  }
  .hp-nav__right {
    margin-left: auto;
  }

  /* Hero */
  .hp-hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hp-hero__brand {
    border-right: none;
    border-bottom: 1px solid rgba(196,164,90,0.18);
    padding: 28px 20px 24px;
    align-items: center;
    text-align: center;
  }
  .hp-hero__tagline {
    align-self: center;
  }
  .hp-hero__bullets {
    align-items: flex-start;
    text-align: left;
  }
  .hp-hero__visual {
    padding: 32px 20px 36px;
  }
  .hp-hero__headline {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }
  .hp-badge-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  /* Gold banner */
  .hp-banner {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.62rem;
    padding: 12px 16px;
    letter-spacing: 0.12em;
  }

  /* Body: services + projects */
  .hp-body {
    grid-template-columns: 1fr;
  }
  .hp-services {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .hp-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Projects grid */
  .hp-proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Trust bar */
  .hp-trust {
    grid-template-columns: 1fr 1fr;
  }
  .hp-trust__phone-cta {
    grid-column: 1 / -1;
    justify-content: center;
  }

  /* Full-width large buttons */
  .btn--lg {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 24px;
    box-sizing: border-box;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Services page grid */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Page hero */
  .page-hero {
    padding: 52px 0 44px;
  }
  .page-hero__heading {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  /* Contact page (overrides inline styles) */
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* Section spacing */
  .section-header {
    margin-bottom: 48px;
  }

  /* Old hero/values/projects/testimonials grids (non-hp pages) */
  .values__grid {
    grid-template-columns: 1fr;
  }
  .projects__grid {
    grid-template-columns: 1fr;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   RESPONSIVE — SMALL MOBILE (480px)
   =========================== */

@media (max-width: 480px) {
  .hp-proj-grid {
    grid-template-columns: 1fr;
  }

  .hp-trust {
    grid-template-columns: 1fr;
  }
  .hp-trust__phone-cta {
    grid-column: 1;
  }

  .hp-nav__cta {
    font-size: 0.6rem;
    padding: 8px 14px;
  }

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