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

:root {
  --navy: #1a2744;
  --navy-light: #2a3a5c;
  --gold: #c5a550;
  --gold-light: #d4b96a;
  --gold-dark: #a8893e;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-50: #fafafa;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ========== UTILITY ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ========== HEADER / NAV ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.header.scrolled .nav-links a {
  color: var(--gray-700);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.header.scrolled .nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}

.header.scrolled .nav-phone {
  color: var(--navy);
  border-color: var(--navy);
}

.nav-phone:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.header.scrolled .nav-phone:hover {
  background: var(--navy);
  color: var(--white);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
  background: var(--navy);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

/* Slideshow background */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Dark overlay on slides */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 39, 68, 0.85) 0%, rgba(26, 39, 68, 0.6) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero-logo {
  flex-shrink: 0;
}

.hero-logo img {
  width: 340px;
  border-radius: 16px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 4rem 0;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(197, 165, 80, 0.3);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

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

.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

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

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ========== DESIGN TOOL CTA BANNER ========== */
.design-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.design-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
}

.design-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.design-banner-content {
  max-width: 600px;
}

.design-banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.design-banner-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.design-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.design-banner p {
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  font-size: 0.95rem;
}

.design-banner .btn {
  background: var(--navy);
  color: var(--white);
  white-space: nowrap;
}

.design-banner .btn:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.badge-coming {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--white);
  color: var(--gold-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ========== SERVICES ========== */
.services {
  padding: 6rem 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 16px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--navy);
  transition: fill var(--transition);
}

.service-card:hover .service-icon svg {
  fill: var(--gold);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
  padding: 6rem 0;
  background: var(--off-white);
}

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

.why-us-content .section-subtitle {
  margin-bottom: 2rem;
}

.why-us-features {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.why-us-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.stat-card:nth-child(2) {
  margin-top: 2rem;
}

.stat-card:nth-child(3) {
  margin-top: -2rem;
}

.stat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-card p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  font-weight: 500;
}

/* ========== ABOUT ========== */
.about {
  padding: 6rem 0;
  background: var(--white);
}

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

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-image-main img {
  width: 75%;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 180px;
  height: 180px;
  border: 3px solid var(--gold);
  z-index: 0;
}

.about-content .section-subtitle {
  margin-bottom: 1.5rem;
}

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  margin: 1.5rem 0;
  line-height: 1.6;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-signature-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.about-signature-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.about-signature-info p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ========== PROJECTS ========== */
.projects {
  padding: 6rem 0;
  background: var(--navy);
}

.projects-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.projects-header .section-title {
  color: var(--white);
}

.projects-header .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

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

.project-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-light);
}

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

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 39, 68, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
  z-index: 2;
}

.project-card:hover .project-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(26, 39, 68, 0.95) 100%);
}

.project-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.project-card p {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Project carousel navigation */
.project-card-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  box-shadow: var(--shadow-md);
}

.project-card:hover .project-card-nav {
  opacity: 1;
}

.project-card-nav:hover {
  background: var(--white);
}

.project-card-nav svg {
  width: 16px;
  height: 16px;
  fill: var(--navy);
}

.project-card-nav.prev {
  left: 0.5rem;
}

.project-card-nav.next {
  right: 0.5rem;
}

/* Dot indicators */
.project-card-dots {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-card-dots {
  opacity: 1;
}

.project-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.project-card-dot.active {
  background: var(--gold);
}

.projects-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ========== DESIGN TOOL FEATURE ========== */
.design-feature {
  padding: 6rem 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

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

.design-feature-content .section-subtitle {
  margin-bottom: 2rem;
}

.design-steps {
  display: grid;
  gap: 1.25rem;
}

.design-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.design-step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
}

.design-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.design-step p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.design-feature-visual {
  position: relative;
}

.design-mockup {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  position: relative;
}

.design-mockup-header {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
}

.design-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}

.design-mockup-dot:nth-child(1) { background: #ff5f57; }
.design-mockup-dot:nth-child(2) { background: #ffbd2e; }
.design-mockup-dot:nth-child(3) { background: #28ca42; }

.design-mockup-body {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.design-mockup-body svg {
  width: 64px;
  height: 64px;
  fill: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.design-mockup-body h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.design-mockup-body p {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.design-mockup-float {
  position: absolute;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: floatBadge 4s ease-in-out infinite;
}

.design-mockup-float.top-right {
  top: -1rem;
  right: -1rem;
}

.design-mockup-float.bottom-left {
  bottom: -1rem;
  left: -1rem;
  animation-delay: -2s;
}

.design-mockup-float svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.design-mockup-float span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ========== CONTACT ========== */
.contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-content .section-subtitle {
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
}

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

.contact-method-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 10px;
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.contact-method h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.contact-method a,
.contact-method p {
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: color var(--transition);
}

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

/* Contact Form */
.contact-form {
  background: var(--off-white);
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-800);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.contact-form .btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* ========== CTA FINAL ========== */
.final-cta {
  padding: 5rem 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(197, 165, 80, 0.08) 0%, transparent 70%);
}

.final-cta-inner {
  position: relative;
}

.final-cta .section-title {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.final-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
  background: #111827;
  padding: 4rem 0 0;
}

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

.footer-brand img {
  height: 50px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

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

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom .gold {
  color: var(--gold);
}

/* ========== SERVICE AREA ========== */
.service-area {
  padding: 5rem 0;
  background: var(--off-white);
}

.service-area-header {
  text-align: center;
  margin-bottom: 3rem;
}

.service-area-header .section-subtitle {
  margin: 0 auto;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.service-area-cities h3,
.service-area-zips h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.city-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}

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

.zip-grid span {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}

.zip-grid span:hover {
  border-color: var(--gold);
  background: rgba(197, 165, 80, 0.05);
}

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

  .why-us-grid,
  .about-grid,
  .design-feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .service-area-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-phone {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }

  .nav.open .nav-links a {
    color: var(--gray-700);
  }

  .nav.open .nav-phone {
    display: flex;
    position: absolute;
    top: calc(80px + var(--nav-links-height, 200px));
    left: 1rem;
    right: 1rem;
    justify-content: center;
    color: var(--navy);
    border-color: var(--navy);
  }

  .hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo img {
    width: 200px;
    margin: 0 auto;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

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

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

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

  .city-list {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .why-us-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .design-banner-inner {
    text-align: center;
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

/* ========== ANIMATIONS ON SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
