/* ── FONTS ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

/* ── VARIABLES ───────────────────────────────────────── */
:root {
  --ink-dark: #0B100E;
  --surface-dark: #121A16;
  --amber: #EF9F27;
  --amber-light: #FAC775;
  --amber-ink: #412402;  
  --green-deep:    #085041;
  --green-mid:     #1D9E75;
  --green-light:   #5DCAA5;
  --green-fog:     #E1F5EE;
  --bg:            #F7F8F6;
  --ink:           #2C2C2A;
  --ink-muted:     #6B6B68;
  --border:        #D8DAD4;
  --border-dark: rgba(225, 245, 238, 0.1);
  --font:          'Inter', system-ui, sans-serif;
  --text-dim: rgba(225, 245, 238, 0.68);
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     14px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── CONTAINER ───────────────────────────────────────── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVBAR ──────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-dark);
  border-bottom: 0.5px solid var(--border-dark);
}

#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { height: 28px; width: auto; }
.logo-text { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 1.06rem; color: var(--green-fog, #E1F5EE); }
.logo-accent { font-weight: 400; color: var(--green-light, #5DCAA5); }

/* Desktop nav */
#main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

#main-nav a {
  font-size: 14px;
  color: rgba(225, 245, 238, 0.65);
  transition: color 0.15s;
}

#main-nav a:hover {
  color: var(--green-fog);
}

.nav-cta {
  font-size: 13px !important;
  font-weight: 500;
  background: var(--amber);
  color: var(--amber-ink) !important;
  padding: 7px 16px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}

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

/* Hamburger — hidden on desktop */
#hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

#hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-fog);
  border-radius: 2px;
}

/* ── HERO ────────────────────────────────────────────── */
#hero {
  background-color: var(--ink-dark);
  background-image: url("hero-bg-dark.svg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 80px 0 72px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}

#hero h1 {
  font-size: 42px;
  font-weight: 500;
  color: #E1F5EE;
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: #9FE1CB;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
}

.btn-primary {
  font-size: 15px;
  font-weight: 500;
  background: var(--amber);
  color: var(--amber-ink);
  padding: 12px 26px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}

.btn-primary:hover {
  background: var(--amber-light);
}

.btn-ghost {
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--amber-light);
  color: var(--amber-light);
  padding: 12px 26px;
  border-radius: var(--radius-md);
  transition: all 0.15s;
}

.btn-ghost:hover {
  background: rgba(250, 199, 117, 0.1);
}

/* ── TRUST STRIP ─────────────────────────────────────── */
#trust-strip {
  background: var(--surface-dark);
  border-bottom: 0.5px solid var(--border-dark);
  padding: 14px 0;
}

.trust-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-items span {
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-items span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}

/* ── SHARED SECTION STYLES ───────────────────────────── */
section {
  padding: 40px 0;
}

section h2 {
  color: var(--green-fog);
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}

.section-intro {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ── SERVICES ────────────────────────────────────────── */
#services {
  background: var(--ink-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: var(--surface-dark);
  padding: 32px 24px;
  text-align: center;
}

.service-icon {
  width: 30px;
  height: 30px;
  color: var(--amber);
  margin: 0 auto 18px;
  display: block;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--green-fog);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* ── PROCESS ─────────────────────────────────────────── */
#process {
  background: var(--ink-dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  padding: 32px 24px;
  border-right: 0.5px solid var(--border-dark);
  background: var(--surface-dark);
  text-align: center;
}

.process-step:last-child {
  border-right: none;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(93, 202, 165, 0.4);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 500;
  color: var(--green-light);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--green-fog);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── ABOUT ───────────────────────────────────────────── */
#about {
  background: var(--ink-dark);
}

.about-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}

.about-avatar {
  text-align: center;
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  background: var(--surface-dark);
}

.avatar-circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--green-light);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

img.avatar-circle {
  object-fit: cover;
  border: 1px solid var(--border-dark);
}

.avatar-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--green-fog);
  margin-bottom: 4px;
}

.avatar-title {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

.about-text p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cert-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-md);
  background: var(--surface-dark);
  padding: 10px 14px;
  transition: border-color 0.15s;
}

.cert-chip:hover {
  border-color: rgba(93, 202, 165, 0.4);
}

.cert-icon {
  width: 22px;
  height: 22px;
  color: var(--green-light);
  flex-shrink: 0;
}

.cert-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-fog);
  line-height: 1.3;
}

.cert-meta {
  display: block;
  font-size: 11.5px;
  color: var(--text-dim);
  line-height: 1.3;
}

.text-link {
  color: var(--green-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(93, 202, 165, 0.4);
  transition: text-decoration-color 0.15s;
}

.text-link:hover {
  text-decoration-color: var(--green-light);
}

/* ── CONTACT ─────────────────────────────────────────── */
#contact {
  background: var(--green-deep);
  padding: 80px 0;
}

#contact h2 {
  font-size: 32px;
  font-weight: 500;
  color: #E1F5EE;
  margin-bottom: 12px;
}

.contact-sub {
  font-size: 16px;
  color: #9FE1CB;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

#contact input,
#contact textarea {
  font-family: var(--font);
  font-size: 15px;
  color: #E1F5EE;
  background: rgba(255, 255, 255, 0.07);
  border: 0.5px solid rgba(93, 202, 165, 0.4);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: rgba(159, 225, 203, 0.6);
}

#contact input:focus,
#contact textarea:focus {
  border-color: var(--green-light);
}

#contact textarea {
  resize: vertical;
}

#contact button {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  background: var(--green-light);
  color: var(--green-deep);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 28px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s;
}

#contact button:hover {
  background: #9FE1CB;
}

.contact-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

#contact form {
  flex: 1;
}

.contact-side {
  max-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(93, 202, 165, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.contact-side-text {
  font-size: 14px;
  color: #9FE1CB;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-book {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  background: var(--amber);
  color: var(--amber-ink);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}

.btn-book:hover {
  background: var(--amber-light);
}

.form-success {
  font-size: 15px;
  color: var(--green-light);
  line-height: 1.7;
}

.form-error {
  font-size: 13px;
  color: var(--amber-light);
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────────────────── */
#footer {
  background: var(--ink-dark);
  border-top: 0.5px solid var(--border-dark);
  padding: 56px 0 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: start;
  gap: 72px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 12px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(225, 245, 238, 0.45);
}

.footer-cols {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(225, 245, 238, 0.5);
  margin-bottom: 14px;
}

.footer-link {
  display: block;
  width: fit-content;
  font-size: 14px;
  color: rgba(225, 245, 238, 0.8);
  padding: 3px 8px;
  margin: 0 0 2px -8px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 0.15s, color 0.15s;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--green-fog);
  border-color: var(--amber);
  outline: none;
}

/* ── MOBILE ──────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Show hamburger, hide desktop nav */
  #hamburger {
    display: flex;
  }

  #main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: var(--surface-dark);
    border-bottom: 0.5px solid var(--border-dark);
    padding: 20px 24px;
    z-index: 99;
  }

  #main-nav.open {
    display: flex;
  }

  #main-nav a {
    font-size: 15px;
    color: var(--text-dim);
    width: 100%;
  }

  #main-nav .nav-cta {
    color: var(--amber-ink) !important;
    width: auto;
  }

  /* Hero */
  #hero {
    padding: 48px 0;
  }

  #hero h1 {
    font-size: 28px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Trust strip */
  .trust-items {
    flex-direction: column;
    gap: 8px;
  }

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

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 0.5px solid var(--border-dark);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  /* About */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-avatar {
    width: 100%;
  }

  /* Contact */
  #contact h2 {
    font-size: 24px;
  }

  #contact form {
    max-width: 100%;
  }

  .contact-layout {
    flex-direction: column;
    gap: 24px;
  }

  .contact-side {
    max-width: 100%;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 40px;
  }

  .footer-cols {
    flex-direction: column;
    gap: 28px;
  }

}