:root {
  --brand: #07545a;
  --brand-deep: #04353a;
  --accent: #f0c24b;
  --paper: #fffdf7;
  --ink: #11201f;
  --muted: #4f6764;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 16px 34px rgba(9, 47, 52, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffef9, #f8fcfb 40%, #fffdf7);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ── Site Header & Nav ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(8px);
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid rgba(7, 84, 90, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--ink);
}

.brand small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
}

.brand-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 10%, transparent 12%),
    linear-gradient(130deg, var(--accent), var(--brand));
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.main-nav a {
  font-weight: 700;
  color: var(--brand-deep);
}

.nav-cta {
  display: flex;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  background: none;
  border: 1.5px solid rgba(7, 84, 90, 0.22);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-deep);
  line-height: 1;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(7, 84, 90, 0.06);
}

/* ── Site Footer ─────────────────────────────────────── */
.site-footer {
  background: linear-gradient(160deg, #063a3f, #04282c);
  color: #d8efeb;
  padding: 3rem 0 1.5rem;
  margin-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-grid p {
  margin: 0;
  color: #a8cdc9;
  font-size: 0.92rem;
}

.footer-grid a {
  display: block;
  color: #a8cdc9;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}

.footer-grid a:hover {
  color: var(--accent);
}

.copyright {
  text-align: center;
  color: #6ea8a3;
  font-size: 0.84rem;
  margin: 1.25rem 0 0;
}

.copyright a {
  color: #a8cdc9;
  text-decoration: underline;
}

.copyright a:hover {
  color: var(--accent);
}

/* ── Topbar ──────────────────────────────────────────── */
.topbar {
  background: #fff2c1;
  border-bottom: 1px solid rgba(7, 84, 90, 0.14);
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.topbar a {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.hero {
  background: var(--brand);
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  padding: 3rem 0 2.3rem;
  border-bottom: 4px solid rgba(240, 194, 75, 0.62);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5, 38, 42, 0.92) 0%, rgba(7, 60, 68, 0.80) 55%, rgba(7, 55, 62, 0.70) 100%);
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.3rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffe49d;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  margin-top: 0.35rem;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  max-width: 15ch;
}

.hero p {
  margin: 0.7rem 0;
  max-width: 60ch;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0;
}

.chips span {
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.68rem 1.06rem;
  font-weight: 800;
}

.btn-wa {
  background: #0e7d72;
  color: #fff;
}

.btn-call {
  background: linear-gradient(180deg, #fff9df, #ffeab2);
  color: var(--brand-deep);
  border-color: rgba(240, 194, 75, 0.46);
}

.hero-card {
  background: rgba(5, 35, 40, 0.78);
  border: 1px solid rgba(240, 194, 75, 0.30);
  border-radius: var(--radius);
  padding: 1rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.30);
}

.hero-card .price-big {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 0.2rem 0;
}

/* All text inside service hero is explicitly white */
.hero h1,
.hero p,
.hero li,
.hero small,
.hero strong,
.hero .chips span,
.hero-card .price-big {
  color: #fff;
}

.hero-card small {
  color: #e2f4f1;
}

.breadcrumb {
  padding: 0.9rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  padding: 3rem 0;
}

.section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid rgba(7, 84, 90, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.table-box {
  margin-top: 1rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 84, 90, 0.12);
  box-shadow: var(--shadow);
  overflow: auto;
}

.table-box table {
  width: 100%;
  border-collapse: collapse;
}

.table-box th,
.table-box td {
  text-align: left;
  padding: 0.72rem 0.6rem;
  border-bottom: 1px solid rgba(7, 84, 90, 0.1);
}

.table-box thead {
  background: linear-gradient(90deg, #e9f7f4, #fff4d3);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

ul,
ol {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

.faq details {
  background: #fff;
  border: 1px solid rgba(7, 84, 90, 0.12);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.close {
  background: linear-gradient(160deg, #083d43, #054046);
  color: #fff;
  border-radius: 20px;
  border: 1px solid rgba(240, 194, 75, 0.24);
  padding: 1.6rem;
  text-align: center;
}

.close p {
  margin-top: 0.5rem;
}

.footer {
  margin-top: 2.5rem;
  padding: 2rem 0;
  text-align: center;
  color: #d8efeb;
  background: linear-gradient(160deg, #063a3f, #04282c);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 254, 247, 0.98);
  border-top: 1px solid rgba(7, 84, 90, 0.18);
  z-index: 100;
}

.sticky-cta .btn {
  flex: 1;
}

@media (max-width: 960px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar .container {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem 0;
  }

  .sticky-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 5rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 2rem 0 1.5rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-card .price-big {
    font-size: 1.6rem;
  }
}

@media (max-width: 540px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 1.8rem 0;
  }

  .hero-card .price-big {
    font-size: 1.4rem;
  }

  .close {
    padding: 1.2rem;
  }

  .close .hero-actions {
    flex-direction: column;
  }

  .close .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .table-box th,
  .table-box td {
    font-size: 0.82rem;
    padding: 0.55rem 0.4rem;
  }

  .topbar p {
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta .btn:first-child {
    display: none;
  }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 253, 247, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--brand);
    box-shadow: 0 16px 40px rgba(7, 84, 90, 0.14);
    padding: 0.5rem 1.5rem 1rem;
    gap: 0;
    z-index: 100;
  }

  .site-header.nav-open .main-nav a {
    display: block;
    padding: 0.88rem 0;
    border-bottom: 1px solid rgba(7, 84, 90, 0.08);
    font-size: 1rem;
    color: var(--brand-deep);
  }

  .site-header.nav-open .main-nav a:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
