/* ============================================================
   CRATON-ROCHE — Global Stylesheet
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --forest:   #1B3A2D;
  --moss:     #2E5E43;
  --fern:     #4A8C62;
  --sage:     #8BB89A;
  --gold:     #D4A91E;
  --amber:    #F0C033;
  --cream:    #F5F0E8;
  --stone:    #E8E2D6;
  --charcoal: #1A1A18;
  --white:    #FFFFFF;
  --text:     #2C2C2A;
  --text-muted: #6B6B60;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Barlow', sans-serif;

  --nav-h: 80px;
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(27, 58, 45, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 169, 30, 0.2);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--forest);
  padding: 2rem 5%;
  z-index: 999;
  flex-direction: column;
  gap: 1.2rem;
  border-bottom: 2px solid var(--gold);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover {
  background: var(--amber);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--cream);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--forest);
}
.btn-green {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-green:hover {
  background: var(--moss);
  transform: translateY(-2px);
}

/* ---------- Section Labels ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--amber); }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 8%;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(27,58,45,0.88) 0%, rgba(27,58,45,0.4) 50%, rgba(26,26,24,0.75) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.hero-title .gold { color: var(--amber); font-style: normal; }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245,240,232,0.85);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(245,240,232,0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-badge .dot { color: var(--gold); font-size: 0.7rem; }

/* ---------- Stats Bar ---------- */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--forest);
  padding: 3rem 5%;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 3.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.5rem;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* ---------- Intro / Split Section ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.intro-text {
  padding: 7% 8%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-text h2 {
  margin-bottom: 1.5rem;
  color: var(--forest);
  font-style: italic;
}
.intro-text p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}
.intro-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.intro-image:hover img { transform: scale(1.04); }
.intro-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,45,0.3), transparent);
}

/* ---------- Services / Cards ---------- */
.services {
  padding: 7% 5%;
  background: var(--stone);
}
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.services-header h2 { color: var(--forest); margin-bottom: 1rem; }
.services-header p { color: var(--text-muted); font-weight: 300; line-height: 1.7; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: rgba(27,58,45,0.15);
}
.service-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  transition: background var(--transition);
}
.service-card:hover { background: var(--white); }
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
  color: var(--forest);
}
.service-card h3 {
  color: var(--forest);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
}
.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(27,58,45,0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ---------- Portfolio Preview / Grid ---------- */
.portfolio-preview {
  padding: 7% 5%;
  background: var(--cream);
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.portfolio-header h2 { color: var(--forest); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}
.p-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.p-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.p-item:hover img { transform: scale(1.06); }
.p-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,58,45,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.p-item:hover .p-item-overlay { opacity: 1; }
.p-item-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.p-item-info span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}
.p-item:nth-child(1) { grid-column: span 6; min-height: 420px; }
.p-item:nth-child(2) { grid-column: span 6; min-height: 420px; }
.p-item:nth-child(3) { grid-column: span 4; min-height: 320px; }
.p-item:nth-child(4) { grid-column: span 4; min-height: 320px; }
.p-item:nth-child(5) { grid-column: span 4; min-height: 320px; }
.portfolio-cta { text-align: center; margin-top: 3rem; }

/* ---------- Testimonial / Quote ---------- */
.quote-band {
  background: var(--forest);
  padding: 6% 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '"';
  position: absolute;
  top: -2rem; left: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(212,169,30,0.07);
  line-height: 1;
  pointer-events: none;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.quote-attr {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  z-index: 1;
  position: relative;
}
.quote-attr strong { color: var(--amber); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-image {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.cta-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-content {
  background: var(--gold);
  padding: 6% 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-content h2 {
  color: var(--forest);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.cta-content p {
  color: rgba(27,58,45,0.75);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 400px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  padding: 5% 5% 2%;
  color: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}
.footer-brand p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  margin-bottom: 0.7rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--amber); }
.footer-col p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.3);
}

/* ---------- Page Heros (inner pages) ---------- */
.page-hero {
  height: 55vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 6%;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(27,58,45,0.82), rgba(26,26,24,0.65));
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-content h1 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 0.8rem;
}
.page-hero-content p {
  color: rgba(245,240,232,0.7);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
}
.breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(245,240,232,0.5); }
.breadcrumb a::after { content: ' / '; margin: 0 0.5rem; }

/* ---------- About Page ---------- */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-mission-text {
  padding: 8% 7%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-mission-text h2 {
  color: var(--forest);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.about-mission-text p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about-mission-image {
  position: relative;
  overflow: hidden;
}
.about-mission-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.values-section {
  padding: 7% 5%;
  background: var(--forest);
}
.values-header {
  text-align: center;
  margin-bottom: 4rem;
}
.values-header h2 { color: var(--cream); font-style: italic; margin-bottom: 1rem; }
.values-header p { color: var(--sage); font-weight: 300; max-width: 500px; margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(212,169,30,0.2);
  transition: border-color var(--transition);
}
.value-card:hover { border-color: rgba(212,169,30,0.6); }
.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--amber);
  margin-bottom: 0.8rem;
}
.value-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.7;
}
.team-section {
  padding: 7% 5%;
  background: var(--stone);
}
.team-header {
  text-align: center;
  margin-bottom: 4rem;
}
.team-header h2 { color: var(--forest); font-style: italic; margin-bottom: 1rem; }
.team-header p { color: var(--text-muted); font-weight: 300; max-width: 500px; margin: 0 auto; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2px;
  background: rgba(0,0,0,0.1);
}
.team-card {
  background: var(--cream);
  overflow: hidden;
}
.team-photo {
  height: 280px;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter var(--transition), transform 0.5s ease;
}
.team-card:hover .team-photo img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.team-info {
  padding: 1.5rem 1.8rem;
  border-top: 3px solid var(--gold);
}
.team-info h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 0.3rem;
}
.team-info span {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Portfolio Page ---------- */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 2.5rem 5%;
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
}
.filter-btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid rgba(27,58,45,0.25);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}
.full-portfolio {
  padding: 4% 5% 7%;
  background: var(--cream);
}
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.port-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.port-item.tall { grid-row: span 2; }
.port-item img {
  width: 100%; height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.port-item.tall img { min-height: 580px; }
.port-item:hover img { transform: scale(1.06); }
.port-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,58,45,0.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.port-item:hover .port-item-overlay { opacity: 1; }
.port-item-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.port-item-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}
.port-item-overlay p {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.75);
  font-weight: 300;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ---------- Contact Page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 700px;
}
.contact-info {
  background: var(--forest);
  padding: 7% 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info h2 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.contact-info > p {
  color: var(--sage);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.contact-detail {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(212,169,30,0.15);
  border: 1px solid rgba(212,169,30,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text h6 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-detail-text p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245,240,232,0.7);
  line-height: 1.5;
}
.contact-form-wrap {
  padding: 7% 6%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 2rem;
  font-style: italic;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--stone);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--moss);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { margin-top: 0.5rem; }

/* ---------- Map placeholder ---------- */
.map-placeholder {
  height: 400px;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.map-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%) sepia(20%);
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,58,45,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin {
  background: var(--gold);
  color: var(--forest);
  padding: 0.8rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.8s ease both;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.gold { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .intro { grid-template-columns: 1fr; }
  .intro-image { min-height: 400px; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-image { min-height: 300px; }
  .about-mission { grid-template-columns: 1fr; }
  .about-mission-image { min-height: 400px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .p-item:nth-child(1) { grid-column: span 12; }
  .p-item:nth-child(2) { grid-column: span 12; }
  .p-item:nth-child(3),
  .p-item:nth-child(4),
  .p-item:nth-child(5) { grid-column: span 4; }
  .portfolio-masonry { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-badge { display: none; }
  .stats { gap: 0; }
  .stat { padding: 1rem 1.5rem; }
  .stat-divider { height: 30px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .p-item:nth-child(n) { grid-column: span 1; min-height: 280px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-masonry { grid-template-columns: 1fr; }
  .port-item.tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
