@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito:wght@400;600;700&display=swap');

:root {
  --teal:        #1BAA8B;
  --teal-dark:   #148F74;
  --teal-deeper: #0E6B58;
  --teal-light:  #E6F7F3;
  --mint:        #F2FBF8;
  --white:       #FFFFFF;
  --text:        #1A1F36;
  --text-muted:  #6B7280;
  --gray-bg:     #F8FAFB;
  --border:      #E5E9EE;
  --gold:        #F59E0B;
  --shadow:      0 4px 24px rgba(27,170,139,0.10);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

.section-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 0.6rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-teal  { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-white { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-teal { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }
.btn-ghost {
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.75rem 0;
}
.btn-ghost .play-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ── NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--teal);
  padding: 120px 0 0;
  overflow: hidden;
  min-height: 620px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-end;
  padding-bottom: 60px;
}
.hero-content { padding-bottom: 2rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 440px;
  line-height: 1.75;
}
.hero-btns { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.hero-illustration {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.1);
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.hero-illustration img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 0 0;
}
.hero-illustration-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 4rem;
}
/* Paint drip divider at bottom of hero */
.hero-drip {
  position: relative;
  line-height: 0;
  margin-top: -2px;
}
.hero-drip svg { width: 100%; height: auto; display: block; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-bar .container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  border-left: 1px solid var(--border);
}
.trust-item {
  flex: 1;
  min-width: 180px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-right: 1px solid var(--border);
}
.trust-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.trust-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.trust-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── ABOUT SECTION ── */
.about-section { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: var(--teal);
  font-size: 4rem;
  gap: 0.5rem;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; opacity: 0.5;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.dots-accent {
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  background-image: radial-gradient(circle, var(--teal) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.25;
  z-index: -1;
}
.years-badge {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--teal);
  color: var(--white);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  font-family: 'Poppins', sans-serif;
}
.years-badge .num { font-size: 2rem; font-weight: 800; line-height: 1; }
.years-badge .lbl { font-size: 0.6rem; font-weight: 600; text-align: center; line-height: 1.3; letter-spacing: 0.05em; text-transform: uppercase; }
.about-text .section-tag { color: var(--teal); }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.975rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin: 1.5rem 0 2rem;
}
.val-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.val-item::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SERVICES ── */
.services-section { background: var(--gray-bg); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { color: var(--text-muted); max-width: 520px; margin: 0.75rem auto 0; font-size: 0.975rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── PORTFOLIO ── */
.portfolio-section { background: var(--white); }
.portfolio-slider-wrap { position: relative; overflow: hidden; }
.portfolio-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.portfolio-slider::-webkit-scrollbar { display: none; }
.portfolio-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: var(--white);
}
.portfolio-img {
  aspect-ratio: 4/3;
  background: var(--teal-light);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--teal); font-size: 2.5rem;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.portfolio-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0.5;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.portfolio-info { padding: 1.25rem; }
.portfolio-info h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.portfolio-info p { font-size: 0.825rem; color: var(--text-muted); }
.slider-arrows {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}
.slider-arrow {
  width: 42px; height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  transition: all 0.2s;
}
.slider-arrow:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ── VISION SECTION ── */
.vision-section {
  background: var(--teal-deeper);
  color: var(--white);
}
.vision-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.vision-text .section-tag { color: rgba(255,255,255,0.6); }
.vision-text h2 { color: var(--white); margin-bottom: 1rem; }
.vision-text p { color: rgba(255,255,255,0.72); font-size: 0.975rem; line-height: 1.8; }
.vision-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.vision-photo {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  opacity: 0.6;
}
.vision-photo img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.vision-photo:first-child { aspect-ratio: auto; grid-row: span 2; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.875rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--gray-bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 0.875rem; font-size: 0.9rem; border-radius: 8px; }
.contact-info { padding-top: 1rem; }
.contact-info .section-tag { color: var(--teal); }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); font-size: 0.975rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}
.contact-detail-text span { font-size: 0.9rem; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--teal);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.6rem; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.cta-banner p { color: rgba(255,255,255,0.82); margin-bottom: 1.75rem; }

/* ── FOOTER ── */
.site-footer { background: var(--teal-deeper); color: rgba(255,255,255,0.65); padding: 4rem 0 2rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 2rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 0.75rem; font-size: 0.8rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--teal);
  padding: 130px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }
.page-hero-drip { line-height: 0; margin-top: -2px; }
.page-hero-drip svg { width: 100%; display: block; }

/* ── SERVICES FULL PAGE ── */
.services-full-section { background: var(--white); }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.service-full-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-full-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-full-header {
  background: var(--teal);
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.85rem;
}
.service-full-header .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px !important;
  height: 36px !important;
}
.service-full-header h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}
.service-full-body { padding: 1.75rem; }
.service-full-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.4rem; }
.feature-list li {
  font-size: 0.875rem; color: var(--text-muted);
  padding-left: 1.2rem; position: relative;
}
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ── GALLERY FULL PAGE ── */
.gallery-section { background: var(--white); }
.gallery-category { margin-bottom: 4rem; }
.gallery-category:last-child { margin-bottom: 0; }
.gallery-cat-header { margin-bottom: 1.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--teal-light);
  position: relative;
}
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row: span 2; aspect-ratio: auto; min-height: 340px; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal-light), #c8ede3);
  color: var(--teal); gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  min-height: 180px;
}
.gallery-placeholder .ph-icon { font-size: 2rem; opacity: 0.5; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,107,88,0.85) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.04em;
}
.gallery-note {
  margin-top: 2rem; padding: 1.5rem;
  background: var(--mint); border-radius: 10px;
  border: 1px dashed var(--teal);
  color: var(--text-muted); font-size: 0.9rem;
  text-align: center;
}

/* ── ABOUT PAGE ── */
.about-story-section { background: var(--white); }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-box {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: var(--teal); font-size: 4rem;
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; opacity: 0.5;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.about-badge {
  position: absolute;
  bottom: 24px; right: -24px;
  background: var(--teal); color: var(--white);
  width: 108px; height: 108px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: var(--shadow);
}
.about-badge .num { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge .lbl { font-size: 0.6rem; font-weight: 600; text-align: center; line-height: 1.3; text-transform: uppercase; }
.about-story-text h2 { margin-bottom: 1rem; }
.about-story-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.975rem; }
.about-values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 1.5rem;
}
.about-val {
  padding: 1.25rem;
  border-left: 3px solid var(--teal);
  background: var(--mint);
  border-radius: 0 8px 8px 0;
}
.about-val strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.25rem;
}
.about-val p { font-size: 0.825rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-inner, .about-story-inner,
  .contact-inner, .vision-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}
@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 1.5rem; gap: 1.25rem; box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-top: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .trust-bar .container { flex-direction: column; border-left: none; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-values-grid, .about-val-grid { grid-template-columns: 1fr; }
  .portfolio-card { flex: 0 0 85%; }
  .years-badge, .about-badge { right: 10px; }
}
