:root {
  --ink: #12211d;
  --ink-soft: #3e4f49;
  --paper: #faf7f0;
  --paper-raised: #ffffff;
  --teal: #0b6e63;
  --teal-dark: #063a33;
  --teal-deep: #04211d;
  --teal-tint: #e7efea;
  --teal-tint-2: #eff3ec;
  --gold: #c79a45;
  --line: #dedacb;
  --line-soft: #eae6d8;
  --shadow-soft: 0 30px 60px -30px rgba(6, 58, 51, 0.25);
  --shadow-tiny: 0 10px 24px -14px rgba(6, 58, 51, 0.35);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --maxw: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: inherit;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  color: var(--teal-deep);
  letter-spacing: -0.01em;
}
.serif-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--Font-2);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-tint);
  border: 1px solid rgba(11, 110, 99, 0.18);
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  box-shadow: 0 0 0 3px rgba(199, 154, 69, 0.25);
}
section {
  position: relative;
}
.section-pad {
  padding: 100px 0;
}
@media (max-width: 900px) {
  .section-pad {
    padding: 64px 0;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition:
    opacity 800ms var(--ease),
    transform 800ms var(--ease),
    filter 800ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition:
    transform 550ms var(--ease),
    box-shadow 550ms var(--ease);
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--teal-deep);
  color: #f4f1e6;
}
.btn-primary:hover {
  box-shadow: var(--shadow-tiny);
}
.btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  border: 1.5px solid var(--line);
  padding: 6px 8px 6px 22px;
}
.btn-ghost:hover {
  border-color: var(--teal);
}
.btn .ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 550ms var(--ease);
  background: var(--teal);
}
.btn-ghost .ic {
  background: var(--teal-tint);
  color: var(--teal-deep);
}
.btn:hover .ic {
  transform: translate(2px, -2px) scale(1.06);
}
.btn .ic svg {
  width: 15px;
  height: 15px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* nav */
.nav-shell {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}
.nav-pill {
  pointer-events: all;
  width: 100%;
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(250, 247, 240, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(6, 58, 51, 0.1);
  border-radius: 999px;
  padding: 9px 10px 9px 22px;
  box-shadow: 0 18px 40px -24px rgba(6, 58, 51, 0.35);
  transition: box-shadow 400ms var(--ease);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--teal-deep);
}
.nav-logo .mark {
  width: 30px;
  height: 30px;
  flex: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 300ms;
}
.nav-links a.active {
  color: var(--teal-deep);
}
.nav-links a:hover {
  color: var(--teal-deep);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--teal);
  transition: width 350ms var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  background: var(--teal-tint);
  border-radius: 999px;
  padding: 4px;
}
.lang-toggle span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
}
.lang-toggle span.active {
  background: var(--teal-deep);
  color: #fff;
}
@media (max-width: 940px) {
  .nav-links {
    display: none;
  }
}

/* hero */
.ct-hero {
  padding: 160px 0 20px;
  overflow: hidden;
  position: relative;
}
.ct-hero::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -220px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(11, 110, 99, 0.15),
    rgba(11, 110, 99, 0) 70%
  );
  pointer-events: none;
}
.ct-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: end;
}
@media (max-width: 960px) {
  .ct-hero-grid {
    grid-template-columns: 1fr;
  }
}
.ct-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
}
.ct-hero p {
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 520px;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
}
.mini-stats div {
  background: var(--paper-raised);
  padding: 18px 16px;
}
.mini-stats .num {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--teal-deep);
}
.mini-stats .lbl {
  margin-top: 4px;
  font-family: var(--Font-2);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* form + info layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}
@media (max-width: 920px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.form-card {
  background: var(--paper-raised);
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow-tiny);
}
.form-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.form-card .sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.field label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field textarea {
  border: 1.5px solid var(--line);
  background: var(--teal-tint-2);
  border-radius: 14px;
  padding: 13px 16px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 300ms;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--teal);
}
.field textarea {
  min-height: 120px;
}
.form-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-soft);
}
.form-note svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
  flex: none;
  margin-top: 1px;
}

.info-stack .side-card {
  background: var(--paper-raised);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 26px;
  margin-bottom: 20px;
}
.side-h {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}
.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-row .ic4 {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--teal-tint);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.contact-row .ic4 svg {
  width: 17px;
  height: 17px;
}
.contact-row .lbl2 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.contact-row .val {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13.5px;
}
.hours-row b {
  color: var(--ink);
}
.hours-row.closed {
  color: #b5473b;
  font-weight: 600;
}
.side-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.side-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 300ms,
    color 300ms;
}
.side-social a:hover {
  background: var(--teal-deep);
  color: #fff;
}
.side-social svg {
  width: 16px;
  height: 16px;
}
.whatsapp-card {
  background: var(--teal-deep);
  border-radius: 24px;
  padding: 26px 24px;
  color: #eff4f0;
}
.whatsapp-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}
.whatsapp-card p {
  font-size: 13px;
  color: #b7ccc5;
  line-height: 1.6;
  margin: 0 0 18px;
}
.whatsapp-card .btn-primary {
  background: #fff;
  color: var(--teal-deep);
}
.whatsapp-card .btn-primary .ic {
  background: var(--teal-tint);
  color: var(--teal-deep);
}

.head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 44px;
}
@media (max-width: 760px) {
  .head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.head-row h2 {
  font-size: clamp(26px, 3vw, 38px);
  max-width: 640px;
}
.head-tagline {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 340px;
  line-height: 1.6;
}

/* branches */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }
}
.loc-card {
  background: var(--paper-raised);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 500ms var(--ease),
    box-shadow 500ms var(--ease);
}
.loc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.loc-map {
  height: 150px;
  background: linear-gradient(140deg, var(--teal-tint), var(--teal-tint-2));
  position: relative;
}
.loc-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.loc-map .pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(6, 58, 51, 0.5);
}
.loc-map .pin svg {
  position: static;
  width: 16px;
  height: 16px;
}
.loc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.loc-city {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.loc-body h3 {
  font-family: var(--Font-2);
  font-weight: 500;
  font-size: 19px;
  margin-top: 2px;
  margin-bottom: 0;
  color: #04211d;
}
.loc-body address {
  font-style: normal;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 0;
  font-family: var(--Font-2);
}
.loc-hours {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}
.loc-hours b {
  color: var(--ink);
  font-weight: 600;
}
.loc-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.loc-actions a {
  flex: 1;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--teal-deep);
  transition: border-color 300ms;
}
.loc-actions a:hover {
  border-color: var(--teal);
}
.loc-actions a.primary {
  background: var(--teal-deep);
  color: #fff;
  border-color: var(--teal-deep);
}

/* faq */
.faq-list {
  max-width: 820px;
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  cursor: pointer;
}
.faq-q h3 {
  font-size: 17px;
  font-weight: 500;
}
.faq-q .plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 400ms var(--ease);
}
.faq-q .plus svg {
  width: 13px;
  height: 13px;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 450ms var(--ease);
}
.faq-a-inner {
  padding: 0 4px 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 640px;
}

.cta-band {
  background: var(--teal-deep);
  border-radius: 36px;
  margin: 0 32px;
  padding: 70px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .cta-band {
    margin: 0 16px;
    padding: 48px 28px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(127, 217, 182, 0.16),
    transparent 70%
  );
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  max-width: 560px;
}
.cta-band p {
  color: #b7ccc5;
  margin-top: 12px;
  font-size: 14.5px;
  max-width: 440px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--teal-deep);
}
.cta-band .btn-primary .ic {
  background: var(--teal-tint);
  color: var(--teal-deep);
}
.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.cta-band .btn-ghost .ic {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

footer {
  background: var(--paper);
  padding: 90px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 860px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
}
@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.foot-logo .mark {
  width: 32px;
  height: 32px;
}
.foot-blurb {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 300px;
}
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 300ms,
    color 300ms;
}
.foot-social a:hover {
  background: var(--teal-deep);
  color: #fff;
}
.foot-social svg {
  width: 15px;
  height: 15px;
}
.foot-h {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.foot-links li {
  margin-bottom: 11px;
  font-size: 14px;
  color: var(--ink-soft);
}
.foot-links a:hover {
  color: var(--teal-deep);
}
.foot-contact li {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.5;
}
.foot-contact b {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 12.5px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 10px;
}

.mbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 190;
  display: none;
  gap: 1px;
  background: var(--line-soft);
}
@media (max-width: 760px) {
  .mini-stats{
    grid-template-columns: repeat(2, 1fr);
  }
  .mbar {
    display: flex;
  }
}
.mbar a {
  flex: 1;
  background: var(--paper-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
}
.mbar a:first-child {
  background: var(--teal-deep);
  color: #fff;
}
.mbar svg {
  width: 16px;
  height: 16px;
}
