:root {
  --coffee: #3d2b1f;
  --coffee-mid: #4b3621;
  --coffee-light: #6d4c41;
  --green: #1a3a2a;
  --green-mid: #2d5a3f;
  --green-light: #3d7a55;
  --gold: #c9a84c;
  --gold-light: #e8cc7a;
  --cream: #f7f3ec;
  --white: #ffffff;
  --gray: #f0ece4;
  --text-dark: #111a14;
  --text-mid: #3a4a3e;
  --text-light: #7a8a7e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(75, 54, 33, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  transition: all 0.4s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  background: var(--cream);
  border-radius: 6px;
  margin: 4px 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo:hover img {
  transform: scale(1.1) rotate(-1deg);
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-left: 14px;
  text-transform: capitalize;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-top: 2px;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--green) !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  color: var(--green) !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--green) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26, 58, 42, 0.92) 0%, rgba(26, 58, 42, 0.72) 50%, rgba(15, 35, 25, 0.88) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201, 168, 76, 0.04) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201, 168, 76, 0.04) 80px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 8% 4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: heroFadeIn 1.2s ease both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}

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

.hero-tagline {
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  max-width: 520px;
  margin-bottom: 1rem;
  font-style: italic;
  opacity: 0.9;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.22s, transform 0.18s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  text-decoration: none;
  transition: border-color 0.22s, background 0.22s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(26, 58, 42, 0.96);
  border-top: 1px solid rgba(201, 168, 76, 0.22);
}

.hero-stat {
  padding: 2rem 2.4rem;
  border-right: 1px solid rgba(201, 168, 76, 0.14);
}

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

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SECTION WRAPPER ── */
.section {
  padding: 96px 8%;
}

.section-sm {
  padding: 64px 8%;
}

.section-header {
  margin-bottom: 3.6rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.14;
  color: var(--text-dark);
}

.section-title em {
  font-style: italic;
  color: var(--green-mid);
}

.section-sub {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
  font-weight: 300;
}

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

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

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.92) saturate(0.9);
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

.about-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--green);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 2px;
  text-align: center;
  border-left: 3px solid var(--gold);
}

.about-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.about-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

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

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: 2px;
  border-left: 2px solid var(--gold);
}

.value-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.value-text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 2px;
}

.value-text p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ── SERVICES ── */
.services-bg {
  background: var(--green);
}

.services-bg .section-tag,
.services-bg .section-tag::before {
  color: var(--gold);
  background: var(--gold);
}

.services-bg .section-title {
  color: var(--white);
}

.services-bg .section-title em {
  color: var(--gold-light);
}

.services-bg .section-sub {
  color: rgba(255, 255, 255, 0.58);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  margin-top: 3.6rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 2.6rem 2rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

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

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.18);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 2px 24px rgba(26, 58, 42, 0.07);
  cursor: pointer;
}

.project-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.88) saturate(0.85);
}

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 42, 0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
}

.project-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 5px;
}

.project-card h3 {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
}

.project-card-loc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.project-card-download {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 5px 10px;
  border-radius: 2px;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.project-card-download:hover {
  background: var(--gold);
  color: var(--green);
}

/* ── LEADER CARD ── */
.leader-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.6rem 0 2rem;
  padding: 1rem 1.4rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 2px 14px rgba(26, 58, 42, 0.07);
}

.leader-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--coffee);
  line-height: 1.2;
}

.leader-title {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 3px;
}

/* ── TESTIMONIALS ── */
.testimonials-bg {
  background: var(--gray);
}

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

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 2px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(26, 58, 42, 0.05);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.testimonial-loc {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ── QUOTE FORM ── */
.quote-bg {
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.quote-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05);
  pointer-events: none;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.quote-left .section-tag {
  color: var(--gold);
}

.quote-left .section-tag::before {
  background: var(--gold);
}

.quote-left .section-title {
  color: var(--white);
}

.quote-left .section-title em {
  color: var(--gold-light);
}

.quote-left .section-sub {
  color: rgba(255, 255, 255, 0.56);
}

.quote-features {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
}

.quote-feature::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  line-height: 22px;
  text-align: center;
}

.quote-form {
  background: var(--white);
  padding: 2.8rem;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.quote-form h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.quote-form-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
}

.form-group:last-of-type {
  margin-bottom: 1.4rem;
}

label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0ddd5;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 13px 20px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-wa:hover {
  background: #1fba58;
}

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

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.4rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-item-text h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text p {
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.2s;
}

.contact-item-text a:hover {
  color: var(--green-mid);
}

.map-placeholder {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(26, 58, 42, 0.1);
}

.office-img-wrap {
  position: relative;
  width: 100%;
}

.office-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.8);
}

.office-img-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 35, 25, 0.92) 0%, rgba(15, 35, 25, 0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  gap: 0.8rem;
}

.office-img-label span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
}

.office-img-label p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  line-height: 1.5;
}

.office-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.2s ease;
}

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

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--gold);
  padding: 4.5rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--green);
}

.cta-strip h2 em {
  font-style: italic;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

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

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 4rem 8% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 220px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

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

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

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

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.38);
  transition: transform 0.22s, box-shadow 0.22s;
  animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

@keyframes waFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* ── ONGOING PROJECTS ── */
.ongoing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.6rem;
}

.ongoing-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 2px;
  border-left: 3px solid var(--green-mid);
  box-shadow: 0 2px 16px rgba(26, 58, 42, 0.05);
}

.ongoing-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.status-ongoing {
  color: #e07b3c;
}

.status-upcoming {
  color: var(--green-mid);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.ongoing-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.ongoing-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.progress-wrap {
  margin-top: 0.8rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.progress-bar {
  height: 4px;
  background: var(--gray);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--green-mid), var(--gold));
  border-radius: 2px;
  transition: width 1.2s ease;
}

.ongoing-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.ongoing-meta strong {
  color: var(--text-dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .quote-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-wrap {
    order: -1;
  }

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

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

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

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

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

  nav .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .cta-strip {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 64px 5%;
  }

  .hero-content {
    padding: 100px 5% 3rem;
  }
}

/* ── MODAL ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 58, 42, 0.95);
  z-index: 2000;
  padding: 2rem;
  overflow-y: auto;
  backdrop-filter: blur(10px);
  align-items: flex-start;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 1100px;
  border-radius: 4px;
  position: relative;
  padding: 3rem;
  margin-top: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.modal-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.modal-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--coffee);
  margin-bottom: 0.5rem;
}

.modal-info .motto {
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 2rem;
  display: block;
}

.spec-list {
  list-style: none;
  margin-top: 1.5rem;
}

.spec-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.spec-list li strong {
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .modal-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }
}

/* ── PROJECT CARD HOVER CTA ── */
.project-card-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 58, 42, 0);
  transition: background 0.3s ease;
  z-index: 2;
}

.project-card:hover .project-card-cta {
  background: rgba(26, 58, 42, 0.45);
}

.project-card-cta-btn {
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s ease;
  background: var(--gold);
  color: var(--green);
  border: none;
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

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

/* ── COMPLETED PROJECT MODAL ── */
.comp-modal-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.comp-modal-viewer {
  background: #f3f1ed;
  border: 1px solid #e0dbd2;
  border-radius: 4px;
  overflow: hidden;
}

.comp-modal-tabs {
  display: flex;
  border-bottom: 1px solid #e0dbd2;
  background: var(--cream);
}

.comp-modal-tab {
  flex: 1;
  padding: 12px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
}

.comp-modal-tab.active {
  color: var(--coffee);
  border-bottom-color: var(--gold);
  background: var(--white);
}

.comp-modal-panel {
  display: none;
}

.comp-modal-panel.active {
  display: block;
}

.img-viewer {
  overflow-y: auto;
  height: 500px;
  background: #444;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.img-viewer img {
  width: 100%;
  max-width: 100%;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  cursor: zoom-in;
  border-radius: 2px;
}

.img-viewer img.zoomed {
  cursor: zoom-out;
  width: auto;
  max-width: none;
}

.comp-modal-map {
  width: 100%;
  height: 500px;
  display: block;
  border: none;
}

.comp-modal-info {
  padding: 0;
}

.comp-modal-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(45, 90, 63, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.comp-modal-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  display: inline-block;
}

@media (max-width: 900px) {
  .comp-modal-body {
    grid-template-columns: 1fr;
  }

  .comp-modal-pdf,
  .comp-modal-map {
    height: 340px;
  }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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