/* =============================================
   EPIC CABINET — Premium CSS Design System
   Inspired by DecorLux.com.au aesthetic
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --color-dark:       #0e0e0d;
  --color-charcoal:   #1c1c1a;
  --color-mid:        #2f2f2c;
  --color-warm:       #f7f4f0;
  --color-cream:      #faf8f5;
  --color-white:      #ffffff;
  --color-gold:       #c0913c;
  --color-gold-light: #d4a84b;
  --color-text:       #1a1a18;
  --color-muted:      #6b6b67;
  --color-border:     #e8e4dd;
  --color-border-dark:#2e2e2b;

  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'DM Sans', -apple-system, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-xxl: 10rem;

  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 12px;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);

  --max-width: 1320px;
  --header-height: 80px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
}

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.label--light {
  color: rgba(192, 145, 60, 0.8);
}

h1 { font-family: var(--font-display); font-weight: 300; }
h2 { font-family: var(--font-display); font-weight: 300; }
h3 { font-family: var(--font-display); font-weight: 400; }
h4 { font-family: var(--font-body); font-weight: 500; font-size: 1rem; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-muted);
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.section {
  padding: var(--space-xl) 0;
}

.section--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.section--charcoal {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.section--warm {
  background-color: var(--color-warm);
}

.section--white {
  background-color: var(--color-white);
}

.section-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-header--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--transition), transform 0.75s var(--transition);
}

.reveal.reveal--left,
.reveal.reveal--right {
  transform: translateY(30px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Safety net — if JS fails or is slow, show content after 1s via animation */
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}

.reveal {
  animation: revealFallback 0s 1.5s forwards;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.page-wrap {
  overflow-x: hidden;
  position: relative;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.at-top {
  background-color: transparent;
}

.site-header.scrolled {
  background-color: var(--color-dark);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-logo__tagline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  z-index: 1201;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-dark);
  z-index: 1250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-nav .nav-link {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

.mobile-nav .nav-cta {
  margin-top: 1rem;
  padding: 0.9rem 2.5rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 145, 60, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-outline--dark {
  color: var(--color-text);
  border-color: var(--color-border);
}

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

.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* =============================================
   HERO SECTION (VIDEO)
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-dark);
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,14,13,0.75) 0%,
    rgba(14,14,13,0.4) 60%,
    rgba(14,14,13,0.2) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 4rem) 0 6rem;
  width: 100%;
  text-align: center;
}

.hero__label {
  display: inline-block;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.2s forwards;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--color-white);
  max-width: 900px;
  margin: 0 auto 1.5rem;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.4s forwards;
}

.hero__headline em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.6s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.8s forwards;
}

.hero__trust {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 5rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: heroFadeUp 0.9s 1s forwards;
}

.hero__stars {
  display: flex;
  gap: 3px;
  color: var(--color-gold);
  font-size: 1rem;
}

.hero__trust-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.hero__trust-text strong {
  color: var(--color-white);
  font-weight: 500;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 5vw, 5rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: heroFadeUp 0.9s 1.2s forwards;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background-color: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  animation: scrollLine 2s 2s infinite;
}

@keyframes scrollLine {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}

.scroll-text {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background-color: var(--color-dark);
  border-top: 1px solid var(--color-border-dark);
  padding: 1.6rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(192, 145, 60, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.trust-item__label {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.trust-item__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.1rem;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background-color: var(--color-border-dark);
}

/* =============================================
   GOOGLE REVIEW BADGE
   ============================================= */
.google-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.google-badge__stars {
  display: flex;
  gap: 2px;
  color: #f5a623;
  font-size: 1.1rem;
}

.google-badge__count {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.google-badge__logo {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 1.75rem;
}

.service-card__label {
  margin-bottom: 0.5rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.service-card__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.service-card__link:hover {
  gap: 0.75rem;
}

/* =============================================
   PROJECTS GRID
   ============================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-dark);
  cursor: pointer;
}

.project-card--featured {
  grid-column: span 2;
}

.project-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--transition), opacity var(--transition);
  opacity: 0.9;
}

.project-card--featured .project-card__image {
  aspect-ratio: 16/9;
}

.project-card:hover .project-card__image {
  transform: scale(1.05);
  opacity: 0.75;
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,14,13,0.85) 0%,
    rgba(14,14,13,0.1) 60%,
    transparent 100%
  );
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background var(--transition);
}

.project-card__location {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.project-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.project-card__meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.project-card:hover .project-card__meta {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   FULL SERVICE PAGE STYLES
   ============================================= */
.service-full {
  padding: 5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.service-full:last-child {
  border-bottom: none;
}

.service-full__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-full__grid--reverse {
  direction: rtl;
}

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

.service-full__image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-full__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-full__image::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(192, 145, 60, 0.3);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.service-full__content .label {
  margin-bottom: 0.75rem;
  display: block;
}

.service-full__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.service-full__desc {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.service-feature::before {
  content: '—';
  color: var(--color-gold);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-card__author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.2rem;
}

/* Dark testimonial variant */
.testimonial-card--dark {
  background-color: var(--color-mid);
  border-color: var(--color-border-dark);
}

.testimonial-card--dark .testimonial-card__text {
  color: rgba(255,255,255,0.65);
}

.testimonial-card--dark .testimonial-card__author {
  color: var(--color-white);
}

.testimonial-card--dark .testimonial-card__role {
  color: rgba(255,255,255,0.4);
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-item {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--color-border-dark);
}

.why-item__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(192, 145, 60, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-item__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-item__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* =============================================
   STATS ROW
   ============================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--color-border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-dark);
  text-align: center;
}

.cta-section--light {
  background-color: var(--color-warm);
}

.cta-section__label {
  margin-bottom: 1rem;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.cta-section--light .cta-section__title {
  color: var(--color-text);
}

.cta-section__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.cta-section--light .cta-section__sub {
  color: var(--color-muted);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* =============================================
   PAGE HERO (INNER PAGES)
   ============================================= */
.page-hero {
  padding: calc(var(--header-height) + 5rem) 0 4rem;
  background-color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-gold),
    transparent
  );
  opacity: 0.4;
}

.page-hero__label {
  margin-bottom: 1rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 1.25rem;
}

.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb span {
  color: var(--color-gold);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 55%;
  border-radius: var(--radius-md);
  border: 4px solid var(--color-cream);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.about-value {
  padding: 1.75rem;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.about-value__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(192, 145, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-value__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.about-value__desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info__sub {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 3rem;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(192, 145, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.contact-detail__value {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 400;
}

.contact-detail__value a {
  color: var(--color-text);
  transition: color var(--transition);
}

.contact-detail__value a:hover {
  color: var(--color-gold);
}

/* Contact Form */
.contact-form {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(192, 145, 60, 0.1);
  background-color: var(--color-white);
}

.form-control::placeholder {
  color: var(--color-muted);
  opacity: 0.6;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b67' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 145, 60, 0.3);
}

/* =============================================
   FULL PROJECTS PAGE
   ============================================= */
.project-filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

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

.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-full-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-full-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.project-full-card__gallery {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-full-card__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}

.project-full-card:hover .project-full-card__gallery img {
  transform: scale(1.06);
}

.project-full-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
}

.project-full-card__body {
  padding: 1.75rem;
  background-color: var(--color-white);
}

.project-full-card__location {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.project-full-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.project-full-card__desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.project-full-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-tag {
  padding: 0.25rem 0.75rem;
  background-color: var(--color-warm);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--color-dark);
  border-top: 1px solid var(--color-border-dark);
}

.footer-main {
  padding: 5rem 0 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand__logo img {
  height: 44px;
  width: auto;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand__sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.2rem;
}

.footer-brand__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.footer-stars__icons {
  display: flex;
  gap: 2px;
  color: #f5a623;
  font-size: 0.9rem;
}

.footer-stars__text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-col__title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-link:hover {
  color: rgba(255,255,255,0.85);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.footer-contact-text a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-contact-text a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-abn {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  margin-top: 0.5rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.5);
}

/* =============================================
   DIVIDERS & DECORATIVE ELEMENTS
   ============================================= */
.gold-divider {
  width: 50px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 1rem 0;
}

.gold-divider--center {
  margin: 1rem auto;
}

.section-number {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(192, 145, 60, 0.06);
  position: absolute;
  top: -2rem;
  right: 0;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* =============================================
   INLINE IMAGE GALLERY (Project Detail)
   ============================================= */
.gallery-masonry {
  columns: 3;
  column-gap: 1.5rem;
}

.gallery-masonry__item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-masonry__item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--transition);
}

.gallery-masonry__item:hover img {
  transform: scale(1.03);
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-muted); }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }

/* =============================================
   RESPONSIVE — 1100px
   ============================================= */
@media (max-width: 1100px) {
  .grid-4, .why-grid, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card--featured { grid-column: span 2; }
  .projects-full-grid { grid-template-columns: repeat(2, 1fr); }
  .service-full__grid { gap: 3rem; }
}

/* =============================================
   RESPONSIVE — 900px
   ============================================= */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }

  .grid-2,
  .about-split,
  .contact-layout,
  .service-full__grid,
  .service-full__grid--reverse {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    direction: ltr;
  }

  .about-image-accent { display: none; }
  .service-full__image::after { display: none; }

  .hero__headline { font-size: clamp(2.2rem, 8vw, 4rem); }
  .hero__trust { position: static; margin-top: 2rem; }
  .scroll-indicator { display: none; }

  .trust-bar__inner { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .trust-divider { display: none; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Stop any translateX reveals overflowing */
  .reveal.reveal--left,
  .reveal.reveal--right {
    transform: translateY(30px);
  }
}

/* =============================================
   RESPONSIVE — 680px (Mobile)
   ============================================= */
@media (max-width: 680px) {
  /* Core overflow prevention */
  * { max-width: 100%; }

  :root {
    --space-xl: 3rem;
    --space-lg: 2rem;
    --header-height: 68px;
  }

  .container {
    padding: 0 1.25rem;
    width: 100%;
  }

  .section { padding: 3rem 0; }

  /* Kill ALL translateX reveals on mobile — only use Y axis */
  .reveal,
  .reveal.reveal--left,
  .reveal.reveal--right {
    transform: translateY(25px);
  }
  .reveal.is-visible {
    transform: translateY(0) !important;
  }

  /* ---- TYPOGRAPHY ---- */
  .display-xl { font-size: clamp(2rem, 9vw, 3rem); }
  .display-lg { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .display-md { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* ---- HEADER ---- */
  .site-logo img      { height: 36px; }
  .site-logo__name    { font-size: 1rem; }
  .site-logo__tagline { display: none; }

  /* ---- HERO ---- */
  .hero { min-height: 100svh; min-height: 100vh; }

  .hero__headline {
    font-size: clamp(2rem, 10vw, 3rem);
    letter-spacing: -0.01em;
  }

  .hero__sub {
    font-size: 0.92rem;
    margin-bottom: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__trust {
    position: static;
    margin-top: 2rem;
  }

  /* ---- TRUST BAR ---- */
  .trust-bar { padding: 1.25rem 0; }

  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .trust-divider { display: none; }

  /* ---- ALL GRIDS → SINGLE COLUMN ---- */
  .grid-2,
  .grid-3,
  .grid-4,
  .why-grid,
  .about-values,
  .testimonial-grid,
  .projects-full-grid,
  .projects-grid,
  .about-split,
  .contact-layout,
  .service-full__grid,
  .service-full__grid--reverse {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    direction: ltr !important;
  }

  /* Inline gap overrides — target large gaps set via style attribute */
  [style*="gap: 5rem"],
  [style*="gap:5rem"],
  [style*="gap: 4rem"],
  [style*="gap:4rem"] {
    gap: 1.5rem !important;
  }

  .project-card--featured { grid-column: span 1; }
  .gallery-masonry        { columns: 1; }

  /* ---- STATS ---- */
  .stats-row { grid-template-columns: 1fr 1fr !important; }
  .stat-item__value { font-size: 2rem; }

  /* ---- SERVICE CARDS ---- */
  .service-card__image { aspect-ratio: 16/9; }
  .service-card__body  { padding: 1.25rem; }
  .service-card__title { font-size: 1.3rem; }

  /* ---- PROJECT CARDS ---- */
  .project-card__image { aspect-ratio: 16/9; }
  .project-card--featured .project-card__image { aspect-ratio: 16/9; }
  .project-card__overlay { padding: 1.25rem; }

  /* ---- PROJECT FILTER ---- */
  .project-filter {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }
  .filter-btn { white-space: nowrap; flex-shrink: 0; min-height: 44px; }

  /* ---- TESTIMONIALS ---- */
  .testimonial-grid { grid-template-columns: 1fr !important; }
  .testimonial-card { padding: 1.5rem; }

  /* ---- PAGE HERO ---- */
  .page-hero { padding: calc(var(--header-height) + 2rem) 0 2.5rem; }
  .page-hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); }

  /* ---- CONTACT ---- */
  .contact-form   { padding: 1.75rem 1.25rem; }
  .form-row       { grid-template-columns: 1fr !important; }

  /* ---- CTA ---- */
  .cta-section__title { font-size: clamp(1.7rem, 8vw, 2.5rem); }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* ---- BUTTONS ---- */
  .btn { padding: 0.9rem 1.5rem; font-size: 0.75rem; }

  /* ---- FOOTER ---- */
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 2.5rem 0;
  }

  .footer-brand__desc { max-width: 100%; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-copy  { font-size: 0.72rem; }
  .footer-legal { gap: 1rem; flex-wrap: wrap; }

  /* ---- SECOND PROJECT TEASER (portrait images → landscape) ---- */
  [style*="aspect-ratio:3/4"],
  [style*="aspect-ratio: 3/4"] {
    aspect-ratio: 16/9 !important;
  }

  /* ---- SERVICES SUBNAV ---- */
  #services-subnav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    flex-wrap: nowrap !important;
  }
  #services-subnav a {
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ---- MOBILE NAV ---- */
  .mobile-nav .nav-link { font-size: 1.3rem; }
  .mobile-nav .nav-cta  { padding: 0.85rem 2rem; }
}

/* =============================================
   RESPONSIVE — 400px (Small phones)
   ============================================= */
@media (max-width: 400px) {
  .container { padding: 0 1rem; }

  .hero__headline { font-size: clamp(1.8rem, 11vw, 2.4rem); }

  .trust-bar__inner { grid-template-columns: 1fr; }

  .stats-row { grid-template-columns: 1fr !important; }

  .page-hero__title { font-size: clamp(1.6rem, 10vw, 2.2rem); }
  .display-lg       { font-size: clamp(1.6rem, 9vw, 2.2rem); }

  .footer-legal { flex-direction: column; gap: 0.5rem; }
}

/* =============================================
   TOUCH DEVICES — larger tap targets, no hover
   ============================================= */
@media (hover: none) and (pointer: coarse) {
  .project-card:hover .project-card__image { transform: none; opacity: 0.9; }
  .service-card:hover                       { transform: none; box-shadow: none; }
  .testimonial-card:hover                   { transform: none; box-shadow: none; }
  .project-full-card:hover                  { transform: none; box-shadow: none; }

  .project-card__meta { opacity: 1; transform: none; }

  .nav-link,
  .footer-link,
  .btn,
  .nav-cta,
  .filter-btn   { min-height: 44px; }

  /* Prevent iOS zoom on form focus */
  input,
  textarea,
  select,
  .form-control { font-size: 16px !important; }
}

/* =============================================
   SOCIAL ICONS
   ============================================= */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border-dark);
  border-radius: 50%;
  color: rgba(255,255,255,0.45);
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
  flex-shrink: 0;
}

.footer-social__link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(192,145,60,0.08);
}

.footer-social__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


@media print {
  .site-header, .site-footer, .hero__trust, .scroll-indicator { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
}
