/* ============================================
   DIGIWORKS INTERIO — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --charcoal:   #1A1A1A;
  --ivory:      #F5F0E8;
  --gold:       #C9A84C;
  --gold-light: #E2C97A;
  --sage:       #8A9E8A;
  --stone:      #E8E2D8;
  --white:      #FFFFFF;
  --text-muted: #6B6B6B;
  --border:     rgba(201,168,76,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 600;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* --- GOLD RULE (signature element) --- */
.gold-rule {
  display: block;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.2rem 0 1.8rem;
  position: relative;
}
.gold-rule::after {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  width: 12px;
  height: 3px;
  background: var(--gold);
  opacity: 0.4;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: #2d2d2d;
  transform: translateY(-2px);
}

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.logo-img-box {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.logo-text .brand-name span { color: var(--gold); }
.logo-text .brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.main-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  transition: all 0.25s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 60%; }

.header-cta {
  margin-left: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.4rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: #111111;
  color: rgba(255,255,255,0.65);
  padding: 0;
}

.footer-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem 3.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand .brand-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-brand .social-links {
  display: flex;
  gap: 0.7rem;
}
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s;
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.footer-contact-item .icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item p {
  font-size: 0.87rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   PAGE HERO (shared)
   ============================================ */
.page-hero {
  padding-top: 74px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}
.page-hero-inner .section-eyebrow { color: var(--gold); }
.page-hero-inner .section-title { color: var(--white); margin-bottom: 0.5rem; }
.page-hero-inner p { color: rgba(255,255,255,0.55); font-size: 1rem; }
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; }

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section-alt { background: var(--ivory); }
.section-dark { background: var(--charcoal); }

.text-center { text-align: center; }
.text-center .gold-rule { margin-left: auto; margin-right: auto; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Stats bar */
.stats-bar {
  background: var(--gold);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.65);
  margin-top: 0.4rem;
}

/* ============================================
   HOME — HERO SECTION
   ============================================ */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/hero-main.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.home-hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.85) 0%,
    rgba(26,26,26,0.4) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 74px;
}

.hero-content .section-eyebrow { color: var(--gold); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================
   HOME — INTRO
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-img-stack {
  position: relative;
  height: 520px;
}

.intro-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 85%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.intro-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 48%;
  object-fit: cover;
  border-radius: 4px;
  border: 5px solid var(--white);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.intro-badge {
  position: absolute;
  bottom: 28%;
  left: -20px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1rem 1.2rem;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.intro-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.intro-badge .badge-txt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ============================================
   HOME — SERVICES PREVIEW
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 2.4rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.09); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 52px; height: 52px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.3rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(201,168,76,0.12); }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   HOME — PROJECTS PREVIEW
   ============================================ */
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.project-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.project-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card.featured .project-img { min-height: 480px; }

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.project-card:hover .project-overlay { opacity: 1; }

.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  transform: translateY(10px);
  transition: transform 0.3s;
}
.project-card:hover .project-info { transform: translateY(0); }

.project-info .proj-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.project-info h3 { color: var(--white); font-size: 1.1rem; }

/* ============================================
   HOME — PROCESS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--white);
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.84rem; color: var(--text-muted); }

/* ============================================
   HOME — TESTIMONIAL
   ============================================ */
.testimonial-wrap {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 4rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-wrap::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 2rem;
  line-height: 1;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-loc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.2rem;
}

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

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.vm-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
}
.vm-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.vm-card:hover::after { transform: scaleX(1); }
.vm-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.vm-card p { font-size: 0.9rem; color: var(--text-muted); }

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

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.value-item h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-item p { font-size: 0.85rem; color: var(--text-muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.team-card {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.3rem;
  filter: grayscale(15%);
  transition: filter 0.3s;
}
.team-card:hover .team-photo { filter: grayscale(0%); }
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-full-card {
  display: flex;
  gap: 1.5rem;
  padding: 2.2rem;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 4px;
  transition: all 0.3s;
}
.service-full-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.sfc-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  text-align: center;
}
.sfc-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.sfc-body p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

.process-section {
  background: var(--ivory);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-body h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.why-body p { font-size: 0.86rem; color: var(--text-muted); }

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

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stone);
}
.contact-info-item:last-child { border-bottom: none; }

.ci-icon {
  width: 46px; height: 46px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-body h4 { font-size: 0.75rem; font-family: 'Inter'; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.ci-body p, .ci-body a { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.ci-body a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-box {
  background: var(--ivory);
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid var(--stone);
}
.contact-form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-form-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--stone);
  border-radius: 2px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.map-placeholder {
  background: var(--stone);
  border-radius: 4px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.5rem;
  overflow: hidden;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 40px solid rgba(201,168,76,0.06);
}
.cta-strip .section-title { color: var(--white); }
.cta-strip p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-cta, .main-nav { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 2.4rem; }
  .hero-desc { font-size: 0.95rem; }

  .intro-grid, .about-intro-grid, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .intro-img-stack { height: 360px; }
  .intro-img-accent { width: 44%; height: 44%; }

  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .projects-masonry { grid-template-columns: 1fr 1fr; }
  .project-card.featured { grid-column: span 2; grid-row: span 1; }
  .project-card.featured .project-img { min-height: 260px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 2rem; }
  .testimonial-wrap { padding: 2.5rem 2rem; }
  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .projects-masonry { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
