/* Base */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

.hidden,
[hidden] {
  display: none !important;
}

/* Tokens */
:root {
  --color-primary: var(--primary, #0b3d2e);
  --color-surface: #f5f8f8;
  --color-white: #ffffff;
  --color-text-dark: #0f172a;
  --color-text-muted: #64748b;
  --color-text-soft: #ffffffb2;
  --radius-sm: 8px;
  --radius-md: 12px;
  --content-max: 390px;
}

body {
  font-family: "Poppins", Helvetica, sans-serif;
  background: var(--color-surface);
}

.site {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  background: var(--color-surface);
}

/* Shared */
.section {
  width: 100%;
  max-width: var(--content-max);
  padding: 0 25px 40px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading__eyebrow {
  padding-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.6px;
  color: var(--color-primary);
  text-align: center;
  text-transform: uppercase;
}

.section-heading__title {
  font-size: 26px;
  font-weight: 900;
  line-height: 36px;
  color: var(--color-text-dark);
  text-align: center;
}

.section-heading__title--about {
  font-size: 30px;
}

.section-line {
  width: 64px;
  height: 4px;
  margin-top: 16px;
  background: var(--color-primary);
}

.section-line--light {
  width: 48px;
  margin-top: 0;
  background: var(--color-white);
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 65px;
  padding: 12px 16px;
  background: #ffffffe6;
  border-bottom: 1px solid #0042351a;
  backdrop-filter: blur(5px) brightness(100%);
  -webkit-backdrop-filter: blur(5px) brightness(100%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand__logo-wrap {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
}

.brand__logo {
  width: 33px;
  height: 32px;
  object-fit: cover;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: "Playfair Display", Helvetica, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.brand__subtitle {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 600;
  line-height: 10px;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button__icon {
  width: 22.5px;
  height: 15px;
}

/* Hero */
.page-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero {
  width: 100%;
  min-height: 510px;
  display: flex;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(
    180deg,
    rgba(11, 61, 46, 0.9) 13%,
    rgba(11, 61, 46, 0.6) 61%,
    rgba(11, 61, 46, 0) 85%
  );
}

.hero__inner {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  padding: 20px 0 40px;
}

.hero__title {
  font-size: 30px;
  font-weight: 900;
  line-height: 39.6px;
  letter-spacing: -0.9px;
  color: var(--color-white);
}

.hero__description {
  max-width: 350px;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #ffffffcc;
}

.hero__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: var(--color-primary);
  text-align: center;
}

.btn--solid {
  background: var(--color-white);
  box-shadow: 0 4px 4px #00000040;
  text-transform: uppercase;
}

.btn--outline {
  border-color: var(--color-primary);
  text-transform: uppercase;
}

/* Specialties */
.section--specialties {
  display: flex;
  flex-direction: column;
  gap: 40px;
  scroll-margin-top: calc(65px + env(safe-area-inset-top) + 16px);
}

.specialties-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.area-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 40px 30px;
  border: 1px solid #0042350d;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 1px 2px #0000000d;
}

.area-card__icon-wrap {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: #0042351a;
}

.area-card__icon {
  width: 22.5px;
  height: 23.75px;
}

.area-card__icon--shield {
  width: 20px;
  height: 25px;
}

.area-card__icon--square {
  width: 25px;
  height: 25px;
}

.area-card__icon--wide {
  width: 30px;
  height: 15px;
}

.area-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-text-dark);
}

.area-card__text {
  width: 100%;
  font-size: 14px;
  line-height: 22.8px;
  color: var(--color-text-muted);
}

/* About */
.section--about {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.member-card {
  width: 100%;
  max-width: 1024px;
}

.member-card__photo {
  width: 100%;
  height: 28rem;
  border-radius: var(--radius-md);
  background: blue;
}

.member-card__name {
  margin-top: 1rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-text-dark);
}

.member-card__role {
  margin-top: 4px;
  padding-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1.2px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.member-card__description {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text-muted);
}

/* Footer */
.site-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 24px;
  background: var(--color-primary);
}

.site-footer__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid #ffffff1a;
}

.site-footer__brand-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand--footer .brand__logo-wrap {
  background: transparent;
}

.brand__name--footer,
.brand__subtitle--footer {
  color: var(--secondary);
  text-transform: uppercase;
}

.site-footer__about {
  font-size: 12px;
  line-height: 22.8px;
  color: var(--color-text-soft);
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons__item {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #005a48b8;
}

.social-icons__icon {
  width: 22.5px;
  height: 23.75px;
}

.site-footer__contact-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__contact-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1.8px;
  color: #ffffffe6;
  text-transform: uppercase;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item__icon {
  width: 16px;
  height: 20px;
}

.contact-item__icon--phone {
  width: 18px;
  height: 18px;
}

.contact-item__icon--email {
  width: 20px;
  height: 16px;
}

.contact-item__text {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text-soft);
}

.site-footer__bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.site-footer__legal {
  font-size: 12px;
  line-height: 16px;
  color: #ffffff66;
}

.site-footer__links {
  display: flex;
  gap: 24px;
}

.site-footer__links a {
  font-size: 12px;
  line-height: 16px;
  color: #ffffff66;
}

.whatsapp-fab {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.whatsapp-fab:active {
  transform: translateY(0);
}

.whatsapp-fab__icon {
  width: 28px;
  height: 28px;
}
