:root {
  --primary: #0b5d52;
  --primary-dark: #083f38;
  --primary-soft: #eaf6f3;
  --secondary: #f4b942;
  --secondary-dark: #d89b1e;
  --text: #13312c;
  --muted: #5f7a74;
  --white: #ffffff;
  --surface: #f8fbfa;
  --border: rgba(11, 93, 82, 0.12);
  --shadow-sm: 0 10px 30px rgba(7, 53, 47, 0.08);
  --shadow-md: 0 18px 50px rgba(7, 53, 47, 0.12);
  --shadow-lg: 0 28px 80px rgba(7, 53, 47, 0.16);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 185, 66, 0.12), transparent 30%),
    linear-gradient(180deg, #fdfefe 0%, #f6fbfa 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container-custom {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.section-pad { padding: 86px 0; }
.section-head { max-width: 760px; margin-bottom: 36px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; background: rgba(11, 93, 82, 0.08);
  color: var(--primary); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%; background: var(--secondary);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06; margin: 16px 0 14px; font-weight: 800; letter-spacing: -0.03em;
}
.section-text {
  font-size: 1.05rem; color: var(--muted); margin: 0;
}
.topbar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #eef8f6; font-size: 14px;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 0;
}
.topbar-list, .topbar-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; opacity: .96; }
.main-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.88); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 93, 82, 0.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px; min-width: 0;
}
.brand-mark {
  width: 52px; height: 52px; border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #15806f);
  display: grid; place-items: center; color: white; font-weight: 800; box-shadow: var(--shadow-sm);
}
.brand-text strong { display: block; font-size: 1.15rem; line-height: 1.1; }
.brand-text span { color: var(--muted); font-size: .92rem; }
.nav-links {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.nav-links a {
  padding: 10px 16px; border-radius: 999px; color: var(--text); font-weight: 600; font-size: .95rem;
  transition: .25s ease;
}
.nav-links a:hover, .nav-links a.active { background: rgba(11, 93, 82, 0.08); color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-main, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: .95rem; transition: .25s ease;
  border: 1px solid transparent;
}
.btn-main {
  background: linear-gradient(135deg, var(--secondary), #ffd26f);
  color: #21201b; box-shadow: 0 14px 34px rgba(244, 185, 66, 0.28);
}
.btn-main:hover { transform: translateY(-2px); color: #151515; }
.btn-outline {
  background: white; color: var(--primary); border-color: rgba(11, 93, 82, 0.16);
}
.btn-outline:hover { background: rgba(11, 93, 82, 0.05); }
.hero {
  position: relative; padding: 86px 0 70px; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
   radial-gradient(circle at 10% 10%, rgba(21, 128, 111, .12), transparent 28%),
   radial-gradient(circle at 90% 20%, rgba(244, 185, 66, .16), transparent 28%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center;
}
.hero-card, .glass-card {
  position: relative; background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow-md); border-radius: 28px; backdrop-filter: blur(12px);
}
.hero-copy { padding: 42px; }
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 5.2rem); line-height: .98; margin: 18px 0; letter-spacing: -0.05em;
}
.hero-copy p { color: var(--muted); font-size: 1.05rem; max-width: 680px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 28px;
}
.stat-chip {
  background: var(--white); border-radius: 18px; padding: 16px 18px; border: 1px solid var(--border);
}
.stat-chip strong { display: block; font-size: 1.25rem; }
.stat-chip span { color: var(--muted); font-size: .92rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-visual { padding: 22px; }
.image-placeholder {
  position: relative;
  min-height: 480px; border-radius: 26px; overflow: hidden;
  background:
    linear-gradient(160deg, rgba(8,63,56,.9), rgba(11,93,82,.84)),
    linear-gradient(135deg, #0f7668, #f3c768);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.image-placeholder::before {
  content: '';
  position: absolute; inset: 18px;
  border: 1px dashed rgba(255,255,255,.35); border-radius: 22px;
}
.image-placeholder::after {
  content: attr(data-label);
  position: absolute; left: 32px; bottom: 28px; right: 32px;
  color: white; font-size: 1rem; font-weight: 700; letter-spacing: .02em;
}
.placeholder-badge {
  position: absolute; top: 24px; left: 24px;
  padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.15); color: white; font-weight: 700; backdrop-filter: blur(10px);
}
.floating-card {
  position: absolute; right: 18px; bottom: 18px; max-width: 230px;
  background: rgba(255,255,255,.92); border-radius: 22px; padding: 18px; box-shadow: var(--shadow-sm);
}
.floating-card strong { display: block; font-size: 1rem; }
.floating-card span { color: var(--muted); font-size: .92rem; }
.grid-3, .grid-2, .grid-4 {
  display: grid; gap: 22px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card, .service-card, .contact-card, .team-card, .info-card, .hours-card {
  background: white; border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow-sm);
}
.feature-card, .service-card, .contact-card, .info-card, .hours-card { padding: 26px; }
.icon-badge {
  width: 56px; height: 56px; border-radius: 18px; background: rgba(11, 93, 82, 0.08); color: var(--primary);
  display: grid; place-items: center; font-size: 1.25rem; margin-bottom: 16px;
}
.feature-card h3, .service-card h3, .team-card h3, .contact-card h3, .info-card h3, .hours-card h3 {
  margin: 0 0 10px; font-size: 1.3rem;
}
.feature-card p, .service-card p, .team-card p, .contact-card p, .info-card p, .hours-card p,
.service-card li, .timeline-text, .lead-muted, .small-muted {
  color: var(--muted);
}
.service-list {
  list-style: none; padding: 0; margin: 14px 0 0;
}
.service-list li {
  display: flex; align-items: flex-start; gap: 10px; padding: 8px 0;
}
.service-list i { color: var(--primary); margin-top: 4px; }
.band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; position: relative;
}
.band .section-text, .band .small-muted, .band .lead-muted { color: rgba(255,255,255,.82); }
.band-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 26px; backdrop-filter: blur(10px);
}
.mini-gallery {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.mini-gallery .image-placeholder { min-height: 220px; }
.team-card { overflow: hidden; }
.team-photo {
  min-height: 300px; background:
    linear-gradient(180deg, rgba(11,93,82,.15), rgba(11,93,82,.04)),
    linear-gradient(135deg, #d9efea, #f9edca);
  display: flex; align-items: end; padding: 24px; position: relative;
}
.team-photo::before {
  content: attr(data-label); position: absolute; inset: 18px; border-radius: 20px; border: 1px dashed rgba(11, 93, 82, .25);
  display: grid; place-items: center; color: var(--primary); font-weight: 700;
}
.team-content { padding: 26px; }
.role { display: inline-block; padding: 8px 12px; border-radius: 999px; background: rgba(11,93,82,.08); color: var(--primary); font-weight: 700; font-size: .86rem; margin-bottom: 12px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr .95fr; gap: 24px;
}
.form-shell { background: white; border-radius: 28px; box-shadow: var(--shadow-md); padding: 28px; border: 1px solid var(--border); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 8px; font-weight: 700; font-size: .92rem; }
input, textarea, select {
  width: 100%; border-radius: 16px; border: 1px solid rgba(11,93,82,.14); background: #fbfdfd;
  padding: 15px 16px; font: inherit; color: var(--text); outline: none;
}
input:focus, textarea:focus, select:focus { border-color: rgba(11,93,82,.36); box-shadow: 0 0 0 4px rgba(11,93,82,.08); }
textarea { min-height: 150px; resize: vertical; }
.notice {
  margin-top: 16px; padding: 14px 16px; border-radius: 16px; background: rgba(244,185,66,.14); color: #6b5317; font-weight: 600;
}
.map-card {
  min-height: 390px; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); background: white;
}
.map-card iframe { width: 100%; height: 100%; min-height: 390px; border: 0; }
.cta-panel {
  padding: 34px; border-radius: 30px; background: linear-gradient(135deg, #0a5046, #0f7869); color: white; box-shadow: var(--shadow-lg);
}
.footer {
  background: #082f2a; color: rgba(255,255,255,.84); padding-top: 68px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 30px;
}
.footer h4 { color: white; margin: 0 0 16px; }
.footer a { color: rgba(255,255,255,.84); }
.footer a:hover { color: white; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-bottom {
  margin-top: 36px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.mobile-toggle { display: none; }
.page-hero {
  padding: 66px 0 44px; background: linear-gradient(180deg, rgba(11,93,82,.08), rgba(255,255,255,0));
}
.breadcrumbs { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: .95rem; margin-top: 14px; flex-wrap: wrap; }
.timeline {
  display: grid; gap: 18px;
}
.timeline-item { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: start; }
.timeline-bullet {
  width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: rgba(11,93,82,.08); color: var(--primary); font-weight: 800;
}
.info-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 28px;
}
.info-strip .info-card { padding: 18px 20px; }
.team-photo img{
  width:100%;
  height:auto;
  border-radius:10px;
}
.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}
.hero-image{
  height:420px;
  overflow:hidden;
  border-radius:20px;
}
.gallery-img img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
}
.info-card{
  background:#ffffff;
  padding:22px;
  border-radius:16px;
  text-align:center;
}

.info-card strong{
  display:block;
  color:#1a2f2b;
  font-size:16px;
  margin-bottom:6px;
}

.small-muted{
  color:#5c6f69;
  font-size:14px;
}
.info-card{
  background:#ffffff;
  padding:22px;
  border-radius:18px;
  text-align:center;
}

.info-card strong{
  display:block;
  font-size:16px;
  color:#1b2f2b;
  margin-bottom:8px;
}

.info-card .small-muted{
  color:#2f3f3c !important;
  font-size:14px;
  margin:0;
}
/* =========================
   PREMIUM ABOUT / INFO STRIP
========================= */

.band {
  background:
    radial-gradient(circle at top left, rgba(244, 185, 66, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.06), transparent 26%),
    linear-gradient(135deg, #064a41 0%, #0b5d52 45%, #0a6a5d 100%);
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -160px;
  left: -120px;
  border-radius: 50%;
  background: rgba(244, 185, 66, 0.08);
  filter: blur(40px);
  pointer-events: none;
}

.band::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(42px);
  pointer-events: none;
}

.band .section-title {
  color: #ffffff;
  max-width: 720px;
}

.band .section-text {
  color: rgba(255,255,255,0.84);
  font-size: 1.12rem;
  max-width: 700px;
}

.band .eyebrow {
  background: rgba(255,255,255,0.08);
  color: #d8f3ed;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 34px;
}

.info-strip .info-card {
  position: relative;
  min-height: 170px;
  padding: 24px 18px;
  border-radius: 26px;
  text-align: center;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow:
    0 18px 40px rgba(4, 35, 31, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}

.info-strip .info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #f4b942, #ffd978);
}

.info-strip .info-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 50px rgba(4, 35, 31, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.info-strip .info-card strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
  color: #16342f;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.info-strip .info-card .small-muted {
  margin: 0;
  color: #516661 !important;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
  max-width: 100%;
}

.band-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 30px;
  padding: 34px 32px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.band-card h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.band-card .service-list li {
  color: rgba(255,255,255,0.90);
  font-size: 1.12rem;
  line-height: 1.6;
  padding: 12px 0;
}

.band-card .service-list i {
  color: #38d7b8;
  margin-top: 6px;
  font-size: 1rem;
}

/* special handling for long email text */
.info-strip .info-card:nth-child(2) .small-muted {
  font-size: 0.95rem;
}

/* tablet */
@media (max-width: 1100px) {
  .info-strip {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .info-strip .info-card {
    min-height: 160px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .band .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .band-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .band-card h3 {
    font-size: 1.6rem;
  }

  .band-card .service-list li {
    font-size: 1rem;
  }

  .info-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .info-strip .info-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .info-strip .info-card strong {
    font-size: 1.2rem;
  }

  .info-strip .info-card .small-muted {
    font-size: 0.98rem;
  }
}

@media (max-width: 1100px) {
  .hero-grid, .contact-grid, .footer-grid, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-2, .info-strip { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; width: 48px; height: 48px; border-radius: 14px; border: 1px solid var(--border); background: white; align-items: center; justify-content: center; }
  .nav-wrap.active .nav-links {
    display: flex; position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); flex-direction: column; align-items: stretch;
    background: white; padding: 16px; border-radius: 22px; box-shadow: var(--shadow-md); border: 1px solid var(--border);
  }
}
@media (max-width: 768px) {
  .topbar-inner, .topbar-list, .topbar-actions, .hero-actions, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-grid, .grid-3, .grid-2, .grid-4, .contact-grid, .footer-grid, .info-strip, .hero-stats, .form-grid, .mini-gallery { grid-template-columns: 1fr; }
  .hero-copy, .hero-visual, .cta-panel, .form-shell { padding: 24px; }
  .section-pad { padding: 64px 0; }
  .main-header .header-actions { display: none; }
  .brand-text span { display: none; }
  .team-photo { min-height: 240px; }
}
