/* ============================================================
   HDA — Pure CSS (converted from Tailwind)
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --gold: #C9A84C;
  --gold-hover: #b8942e;
  --gold-10: rgba(201, 168, 76, 0.1);
  --gold-20: rgba(201, 168, 76, 0.2);
  --gold-30: rgba(201, 168, 76, 0.3);
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --stone-950: #0c0a09;
  --white: #ffffff;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}

.navbar.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--stone-200);
}

.navbar-inner {
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 2px;
}

.logo-icon i {
  color: var(--white);
  font-size: 1.125rem;
}

.logo-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s;
}

.navbar.scrolled .logo-name {
  color: var(--stone-900);
}

.logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

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

.navbar.scrolled .nav-link {
  color: var(--stone-600);
}

.navbar.scrolled .nav-link:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-hover);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.5rem;
  background: none;
  border: none;
}

.navbar.scrolled .hamburger {
  color: var(--stone-800);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--stone-200);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
}

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

.mobile-menu a {
  color: var(--stone-700);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s;
}

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

.mobile-menu .nav-cta {
  text-align: center;
  padding: 0.75rem 1.5rem;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 10, 9, 0.8), rgba(12, 10, 9, 0.6), rgba(12, 10, 9, 0.3));
}

.hero-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 8rem 2rem 5rem;
}

.hero-anim {
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(2rem);
}

.hero-anim.loaded {
  opacity: 1;
  transform: translateY(0);
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-label-line {
  height: 1px;
  width: 3rem;
  background: var(--gold);
}

.hero-label-text {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-serif);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 48rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

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

.hero-desc {
  color: var(--stone-300);
  font-size: 1.125rem;
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-desc strong {
  color: var(--white);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s;
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

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

.btn-outline-white {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
}

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  color: var(--stone-400);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator i {
  color: var(--gold);
  font-size: 1.25rem;
}

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

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--stone-50);
  padding: 5rem 0;
  border-bottom: 1px solid var(--stone-200);
}

.stats-inner {
  padding: 0 2rem;
}

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

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--stone-900);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.stat-bar {
  height: 2px;
  width: 2rem;
  background: var(--gold);
  margin: 0.75rem auto;
  transition: width 0.3s;
}

.stat-item:hover .stat-bar {
  width: 4rem;
}

.stat-label {
  color: var(--stone-500);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.services-inner {
  padding: 0 2rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-label-line {
  height: 1px;
  width: 2.5rem;
  background: var(--gold);
}

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

.section-header {
  max-width: 40rem;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-serif);
  color: var(--stone-900);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-desc {
  color: var(--stone-500);
  font-size: 1rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--gold-30);
}

.service-card {
  background: var(--stone-950);
  padding: 2rem;
  transition: background 0.3s;
  cursor: default;
}

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

.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-20);
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(0, 0, 0, 0.2);
}

.service-icon i {
  color: var(--gold);
  font-size: 1.25rem;
  transition: color 0.3s;
}

.service-card:hover .service-icon i {
  color: #000;
}

.service-card h3 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: #000;
}

.service-card p {
  color: var(--stone-400);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}

.service-card:hover p {
  color: rgba(0, 0, 0, 0.7);
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-items li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--stone-500);
  transition: color 0.3s;
}

.service-card:hover .service-items li {
  color: rgba(0, 0, 0, 0.8);
}

.service-items li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: color 0.3s;
}

.service-card:hover .service-items li i {
  color: #000;
}

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

.projects-inner {
  padding: 0 2rem;
}

.projects-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.projects-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
  background: var(--white);
  border: 1px solid var(--stone-300);
  color: var(--stone-600);
}

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

.filter-btn.active {
  background: var(--stone-900);
  color: var(--white);
  border-color: var(--stone-900);
}

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

.project-card {
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
}

.project-img-wrap {
  position: relative;
  overflow: hidden;
  height: 14rem;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s;
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.project-card:hover .project-overlay {
  background: rgba(12, 10, 9, 0.5);
}

.project-overlay span {
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.project-card:hover .project-overlay span {
  opacity: 1;
}

.project-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-info {
  padding: 1.25rem;
  border: 1px solid var(--stone-200);
  border-top: none;
}

.project-info h3 {
  font-family: var(--font-serif);
  color: var(--stone-900);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--stone-500);
  font-size: 0.75rem;
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.project-meta i {
  color: var(--gold);
}

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

.about-inner {
  padding: 0 2rem;
}

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

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 10;
}

.about-accent-box {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  background: var(--gold);
  z-index: 0;
  display: none;
}

.about-accent-border {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  border: 2px solid var(--stone-200);
  z-index: 0;
  display: none;
}

.about-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  background: var(--stone-950);
  color: var(--white);
  padding: 1.5rem;
  z-index: 20;
}

.about-badge-year {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
}

.about-badge-text {
  font-size: 0.75rem;
  color: var(--stone-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about-text h2 {
  font-family: var(--font-serif);
  color: var(--stone-900);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.about-text p {
  color: var(--stone-500);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-text p strong {
  color: var(--stone-800);
}

.about-text .paragraphs {
  margin-bottom: 2rem;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--stone-50);
}

.value-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-10);
  flex-shrink: 0;
}

.value-icon i {
  color: var(--gold);
  font-size: 1.125rem;
}

.value-title {
  color: var(--stone-900);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.value-desc {
  color: var(--stone-500);
  font-size: 0.75rem;
  line-height: 1.7;
}

.btn-dark {
  background: var(--stone-900);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s;
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

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

/* ============================================================
   TEAM
   ============================================================ */
.team {
  padding: 6rem 0;
  background: var(--stone-50);
}

.team-inner {
  padding: 0 2rem;
}

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

.section-label-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

.team-card {
  background: var(--white);
  overflow: hidden;
  cursor: default;
}

.team-avatar {
  position: relative;
  height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-avatar-bg-1 {
  background: linear-gradient(to bottom right, var(--stone-800), var(--stone-900));
}

.team-avatar-bg-2 {
  background: linear-gradient(to bottom right, var(--stone-700), var(--stone-800));
}

.team-avatar-bg-3 {
  background: linear-gradient(to bottom right, var(--stone-800), var(--stone-950));
}

.team-avatar-bg-4 {
  background: linear-gradient(to bottom right, var(--stone-700), var(--stone-900));
}

/* Decorative lines */
.team-avatar .decor {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.team-avatar .decor-1 {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--gold);
  transform: rotate(12deg);
}

.team-avatar .decor-2 {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--gold);
  transform: rotate(-6deg);
}

.team-avatar .decor-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10rem;
  height: 10rem;
  border: 1px solid var(--gold);
}

.team-avatar .gold-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.team-initials-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.team-initials {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
}

.team-initials span {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  user-select: none;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover .team-skills {
  opacity: 1;
}

.team-skill-tag {
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  font-weight: 500;
  white-space: nowrap;
}

.team-info {
  padding: 1.25rem;
  border: 1px solid var(--stone-200);
  border-top: none;
}

.team-info .bar {
  height: 2px;
  width: 2rem;
  background: var(--gold);
  margin-bottom: 0.75rem;
}

.team-info h3 {
  font-family: var(--font-serif);
  color: var(--stone-900);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-info .role {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.team-info .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--stone-400);
}

.team-info .meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 6rem 0;
  background: var(--stone-950);
  color: var(--white);
  overflow: hidden;
}

.testimonials-inner {
  padding: 0 2rem;
}

.testimonial-main {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: var(--stone-300);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  transition: all 0.3s;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 1.125rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-author-name {
  color: var(--white);
  font-weight: 600;
}

.testimonial-author-role {
  color: var(--stone-400);
  font-size: 0.875rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--stone-600);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.testimonial-dot:hover {
  background: var(--stone-400);
}

.testimonial-dot.active {
  width: 2rem;
  background: var(--gold);
}

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

.contact-inner {
  padding: 0 2rem;
}

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

.contact-text h2 {
  font-family: var(--font-serif);
  color: var(--stone-900);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.contact-text > p {
  color: var(--stone-500);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

.contact-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-10);
  flex-shrink: 0;
}

.contact-item-icon i {
  color: var(--gold);
  font-size: 1.125rem;
}

.contact-item-label {
  color: var(--stone-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.contact-item-value {
  color: var(--stone-800);
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 0.125rem;
}

.contact-map {
  width: 100%;
  height: 12rem;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact form */
.contact-form-wrapper {
  background: var(--stone-50);
  padding: 2rem;
}

.contact-form-wrapper h3 {
  font-family: var(--font-serif);
  color: var(--stone-900);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--stone-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--stone-300);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--stone-800);
  background: var(--white);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--stone-400);
}

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

.form-textarea {
  resize: none;
}

.form-select {
  cursor: pointer;
  appearance: auto;
}

.form-submit {
  width: 100%;
  background: var(--stone-900);
  color: var(--white);
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  font-family: var(--font-sans);
}

.form-submit:hover {
  background: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--stone-900);
  color: var(--white);
}

.footer-inner {
  padding: 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--stone-400);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--stone-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social a i {
  font-size: 1rem;
}

.footer-col h4 {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: var(--stone-400);
  font-size: 0.875rem;
  transition: color 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

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

.footer-col a i {
  color: var(--gold);
}

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

.footer-contact li i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact li span {
  color: var(--stone-400);
  font-size: 0.875rem;
  white-space: pre-line;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--stone-700);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--stone-500);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--stone-500);
  font-size: 0.875rem;
  transition: color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.footer-bottom-links a:hover {
  color: var(--stone-300);
}

/* ============================================================
   RESPONSIVE — Tablet (md: 768px)
   ============================================================ */
@media (min-width: 768px) {
  .navbar-inner {
    padding: 1.25rem 4rem;
  }

  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .hero-content {
    padding: 8rem 4rem 5rem;
  }

  .stats-inner {
    padding: 0 4rem;
  }

  .stat-value {
    font-size: 3rem;
  }

  .services-inner {
    padding: 0 4rem;
  }

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

  .section-title {
    font-size: 3rem;
  }

  .projects-inner {
    padding: 0 4rem;
  }

  .projects-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

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

  .about-inner {
    padding: 0 4rem;
  }

  .about-text h2 {
    font-size: 3rem;
  }

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

  .team-inner {
    padding: 0 4rem;
  }

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

  .testimonials-inner {
    padding: 0 4rem;
  }

  .contact-inner {
    padding: 0 4rem;
  }

  .contact-form-wrapper {
    padding: 2.5rem;
  }

  .contact-text h2 {
    font-size: 3rem;
  }

  .footer-inner {
    padding: 4rem;
  }

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

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

  .mobile-menu {
    display: none !important;
  }
}

/* Mobile: show hamburger, hide nav-links */
@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ============================================================
   RESPONSIVE — Desktop (lg: 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 6rem 5rem;
  }

  .stats-inner {
    padding: 0 6rem;
  }

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

  .services-inner {
    padding: 0 6rem;
  }

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

  .projects-inner {
    padding: 0 6rem;
  }

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

  .about-inner {
    padding: 0 6rem;
  }

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

  .about-accent-box {
    display: block;
  }

  .about-accent-border {
    display: block;
  }

  .team-inner {
    padding: 0 6rem;
  }

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

  .testimonials-inner {
    padding: 0 6rem;
  }

  .contact-inner {
    padding: 0 6rem;
  }

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

  .footer-inner {
    padding: 4rem 6rem;
  }

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

  .navbar-inner {
    padding: 1.25rem 4rem;
  }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  position: relative;
  padding: 10rem 2rem 4rem;
  background: var(--stone-950);
  text-align: center;
  overflow: hidden;
}

.page-header .header-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0;
  animation: glowMove 8s ease-in-out infinite;
}

.page-header .glow-1 {
  width: 600px; height: 600px;
  background: rgba(201,168,76,0.45);
  top: -250px; left: -150px;
  animation-delay: 0s;
}

.page-header .glow-2 {
  width: 450px; height: 450px;
  background: rgba(201,168,76,0.35);
  bottom: -200px; right: -100px;
  animation-delay: 3s;
}

.page-header .glow-3 {
  width: 350px; height: 350px;
  background: rgba(201,168,76,0.25);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 5s;
}

@keyframes glowMove {
  0% { opacity: 0.3; transform: scale(0.8) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.3) translate(30px, -15px); }
  100% { opacity: 0.3; transform: scale(0.8) translate(-15px, 20px); }
}

.page-header .geo-pattern {
  display: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  z-index: 2;
}

.page-header h1 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
}

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

.page-header p {
  color: var(--stone-400);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--stone-400);
}

.page-header .breadcrumb a {
  color: var(--gold);
  transition: color 0.3s;
}

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

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: var(--stone-950);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--stone-400);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Philosophy section */
.philosophy {
  padding: 5rem 0;
  background: var(--stone-100);
}

.philosophy-inner {
  padding: 0 2rem;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.philosophy-inner h2 {
  font-family: var(--font-serif);
  color: var(--stone-900);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.philosophy-inner p {
  color: var(--stone-500);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 20rem;
  background: var(--stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-500);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .page-header {
    padding: 10rem 4rem 4rem;
  }
  .cta-section {
    padding: 5rem 4rem;
  }
  .philosophy-inner {
    padding: 0 4rem;
  }
}

@media (min-width: 1024px) {
  .page-header {
    padding: 10rem 6rem 4rem;
  }
  .cta-section {
    padding: 5rem 6rem;
  }
  .philosophy-inner {
    padding: 0 6rem;
  }
}
