@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

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

:root {
  --color-primary: #1a2e44;
  --color-primary-hover: #152338;
  --color-secondary: #b8943f;
  --color-accent: #f8f7f4;
  --color-dark-bg: #111827;
  font-size: 18px;
}

html {
  font-family: 'Merriweather', Georgia, serif;
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', Georgia, serif;
  background-color: #ffffff;
  color: #111827;
  transition: background-color 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.dark {
  background-color: #18181b;
  color: #ffffff;
}

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

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

/* ==================== NAVBAR ==================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.dark .navbar {
  background-color: rgba(24,24,27,0.9);
  border-bottom-color: rgba(255,255,255,0.08);
}

.navbar-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.navbar-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.navbar-logo-text {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

body.dark .navbar-logo-text {
  color: #ffffff;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(26,46,68,0.5);
  transition: color 0.2s;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--color-primary);
}

body.dark .navbar-nav a {
  color: rgba(255,255,255,0.5);
}

body.dark .navbar-nav a:hover,
body.dark .navbar-nav a.active {
  color: #ffffff;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-secondary);
  transition: color 0.2s;
}

.navbar-phone:hover {
  color: #a07a2e;
}

.navbar-phone svg {
  width: 15px;
  height: 15px;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: background 0.2s;
}

.theme-toggle:hover {
  background: rgba(0,0,0,0.05);
}

body.dark .theme-toggle {
  color: #ffffff;
}

body.dark .theme-toggle:hover {
  background: rgba(255,255,255,0.05);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(0,0,0,0.05);
}

body.dark .hamburger {
  color: #ffffff;
}

.hamburger svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  background-color: #ffffff;
}

body.dark .mobile-menu {
  background-color: #18181b;
  border-top-color: rgba(255,255,255,0.08);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu a {
  padding: 0.875rem 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(26,46,68,0.6);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover {
  color: var(--color-primary);
  background: rgba(0,0,0,0.04);
}

body.dark .mobile-menu a {
  color: rgba(255,255,255,0.6);
}

body.dark .mobile-menu a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.04);
}

.mobile-phone {
  padding: 0.875rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-secondary) !important;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  height: calc(100svh - 72px);
  overflow: hidden;
  background-color: #ffffff;
}

body.dark .hero {
  background-color: #18181b;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26,46,68,0.7);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, #1a2e44, transparent);
}

.hero-ring-1 {
  position: absolute;
  top: 25%;
  right: 40px;
  width: 256px;
  height: 256px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-ring-2 {
  position: absolute;
  bottom: 25%;
  left: 40px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(184,148,63,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 54px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.hero-badge-corner {
  position: absolute;
  bottom: 68px;
  left: 1.5rem;
  z-index: 11;
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(184,148,63,0.5);
  border-radius: 9999px;
  color: var(--color-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(184,148,63,0.5);
  border-radius: 9999px;
  margin-bottom: 2.5rem;
  color: var(--color-secondary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

body.dark .hero-title {
  color: #ffffff;
}

.hero-title span {
  color: var(--color-secondary);
  font-style: italic;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(26,46,68,0.6);
  max-width: 672px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 300;
}

body.dark .hero-desc {
  color: rgba(255,255,255,0.65);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 1rem 2.25rem;
  background-color: var(--color-secondary);
  color: #ffffff;
  font-weight: 700;
  border-radius: 6px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: background-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background-color: #a07a2e;
}

.btn-outline {
  padding: 1rem 2.25rem;
  border: 1px solid rgba(26,46,68,0.25);
  color: var(--color-primary);
  font-weight: 600;
  border-radius: 6px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: background-color 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
}

.btn-outline:hover {
  background-color: rgba(26,46,68,0.05);
  border-color: rgba(26,46,68,0.5);
}

body.dark .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: #ffffff;
}

body.dark .btn-outline:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.hero-marquee-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid rgba(26,46,68,0.08);
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

body.dark .hero-marquee-wrap {
  border-top-color: rgba(255,255,255,0.08);
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 55s linear infinite;
}

.hero-marquee-track:hover {
  animation-play-state: paused;
}

.hero-marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-marquee-item {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,46,68,0.5);
  padding: 0 1.25rem;
  white-space: nowrap;
  transition: color 0.2s;
}

body.dark .hero-marquee-item {
  color: rgba(255,255,255,0.4);
}

.hero-marquee-sep {
  color: var(--color-secondary);
  font-size: 0.5rem;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-scroll span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-scroll svg {
  width: 16px;
  height: 16px;
  animation: bounce 2s infinite;
}

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

/* ==================== STATS ==================== */
.stats {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

body.dark .stats {
  background-color: #18181b;
  border-bottom-color: rgba(255,255,255,0.08);
}

.stats-grid {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid rgba(0,0,0,0.08);
}

body.dark .stats-grid {
  border-left-color: rgba(255,255,255,0.08);
}

.stat-item {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

body.dark .stat-item {
  border-right-color: rgba(255,255,255,0.08);
  border-bottom-color: rgba(255,255,255,0.08);
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}

body.dark .stat-value {
  color: #ffffff;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(26,46,68,0.45);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

body.dark .stat-label {
  color: rgba(255,255,255,0.45);
}

/* ==================== ABOUT ==================== */
.about {
  padding: 7rem 0;
  background-color: var(--color-accent);
}

body.dark .about {
  background-color: #27272a;
}

.about-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1.25rem;
  display: block;
}

.about-title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

body.dark .about-title {
  color: #ffffff;
}

.about-title em {
  font-style: italic;
  font-weight: 700;
}

.about-text {
  color: rgba(26,46,68,0.65);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

body.dark .about-text {
  color: rgba(255,255,255,0.6);
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 0.25rem;
  transition: gap 0.2s;
}

body.dark .about-link {
  color: #ffffff;
}

.about-link:hover {
  gap: 0.75rem;
}

.about-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.about-image-wrap {
  position: relative;
  height: 380px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,68,0.9) 0%, rgba(26,46,68,0.2) 50%, transparent 100%);
}

.about-image-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.about-mini-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
}

.about-mini-stat-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.about-mini-stat-lbl {
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ==================== PROJECTS ==================== */
.projects {
  padding: 7rem 0;
  background-color: #ffffff;
}

body.dark .projects {
  background-color: #18181b;
}

.projects-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.projects-eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
  display: block;
}

.projects-title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-primary);
}

body.dark .projects-title {
  color: #ffffff;
}

.projects-see-all {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(26,46,68,0.45);
  transition: color 0.2s;
}

.projects-see-all:hover {
  color: var(--color-primary);
}

body.dark .projects-see-all {
  color: rgba(255,255,255,0.45);
}

body.dark .projects-see-all:hover {
  color: #ffffff;
}

.projects-see-all svg {
  width: 14px;
  height: 14px;
}

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

.project-card {
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--color-accent);
  transition: box-shadow 0.5s;
}

body.dark .project-card {
  background-color: #27272a;
}

.project-card:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.project-card-img {
  height: 240px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
}

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

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

.project-card-img-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26,46,68,0.3);
  transition: background-color 0.3s;
}

.project-card:hover .project-card-img-overlay {
  background-color: rgba(26,46,68,0.1);
}

.project-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 0.375rem 0.75rem;
  background-color: var(--color-secondary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 9999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 3.75rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  user-select: none;
}

.project-card-body {
  padding: 1.75rem;
}

.project-card-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

body.dark .project-card-name {
  color: #ffffff;
}

.project-card-desc {
  font-size: 1rem;
  color: rgba(26,46,68,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

body.dark .project-card-desc {
  color: rgba(255,255,255,0.55);
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: gap 0.2s;
}

body.dark .project-card-link {
  color: #ffffff;
}

.project-card:hover .project-card-link {
  gap: 0.625rem;
}

.project-card-link svg {
  width: 14px;
  height: 14px;
}

/* ==================== COMPLETED ==================== */
.completed {
  padding: 6rem 0;
  background-color: var(--color-primary);
}

.completed-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.completed-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}

.completed-title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

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

.completed-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.3s, background-color 0.3s;
  cursor: default;
}

.completed-item:hover {
  border-color: rgba(184,148,63,0.5);
  background-color: rgba(255,255,255,0.05);
}

.completed-dot-wrap {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.completed-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  transition: transform 0.3s;
}

.completed-item:hover .completed-dot {
  transform: scale(1.5);
}

.completed-name {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.completed-item:hover .completed-name {
  color: #ffffff;
}

.completed-total {
  border: 1px solid rgba(184,148,63,0.3);
  background-color: rgba(184,148,63,0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.completed-total-num {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.875rem;
  font-variant-numeric: tabular-nums;
}

.completed-total-lbl {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==================== CONTACT CTA ==================== */
.contact-cta {
  padding: 7rem 0;
  background-color: var(--color-accent);
}

body.dark .contact-cta {
  background-color: #27272a;
}

.contact-cta-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  display: block;
}

.contact-title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

body.dark .contact-title {
  color: #ffffff;
}

.contact-desc {
  color: rgba(26,46,68,0.65);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

body.dark .contact-desc {
  color: rgba(255,255,255,0.6);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap svg {
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
}

.contact-label {
  font-size: 0.7rem;
  color: rgba(26,46,68,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: block;
}

body.dark .contact-label {
  color: rgba(255,255,255,0.4);
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: color 0.2s;
  font-variant-numeric: tabular-nums;
}

body.dark .contact-value {
  color: #ffffff;
}

.contact-value:hover {
  color: var(--color-secondary);
}

.contact-addr {
  font-size: 1rem;
  color: var(--color-primary);
  font-style: normal;
  line-height: 1.7;
}

body.dark .contact-addr {
  color: #ffffff;
}

.contact-addr span {
  color: rgba(26,46,68,0.5);
}

body.dark .contact-addr span {
  color: rgba(255,255,255,0.5);
}

.cta-card {
  background-color: var(--color-primary);
  border-radius: 1rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -48px;
  right: -48px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(184,148,63,0.1);
  border-radius: 50%;
}

.cta-card-content {
  position: relative;
}

.cta-card-label {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.cta-card-phone {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  display: block;
}

.cta-card-hours {
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  background-color: var(--color-secondary);
  color: #ffffff;
  font-weight: 700;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: background-color 0.2s;
}

.cta-btn-primary:hover {
  background-color: #a07a2e;
}

.cta-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-weight: 600;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: background-color 0.2s, border-color 0.2s;
}

.cta-btn-outline:hover {
  background-color: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.25);
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: #111e2d;
  color: #ffffff;
}

.footer-main {
  max-width: 1152px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.footer-brand-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-brand-desc {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: background 0.2s, color 0.2s;
}

.footer-social-link:hover {
  background: rgba(184,148,63,0.2);
  color: var(--color-secondary);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.footer-contact-item a,
.footer-contact-item address {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  line-height: 1.6;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-contact-item span {
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

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

/* ==================== RESPONSIVE ==================== */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    border-bottom: none;
  }

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

  .about-image-wrap {
    height: 460px;
  }

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

  .projects-see-all {
    display: inline-flex;
  }

  .completed-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-cta-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .hamburger {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .navbar-phone {
    display: flex;
  }
}

@media (max-width: 767px) {
  .navbar-nav {
    display: none;
  }

  .navbar-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(0,0,0,0.08);
  }

  body.dark .stat-item:nth-child(odd) {
    border-right-color: rgba(255,255,255,0.08);
  }
}
