:root {
  --ink: #121212;
  --muted: #5f6575;
  --line: #d9dde8;
  --accent: #5D658D;
  --accent-soft: #eef1fa;
  --panel: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 70px rgba(20, 28, 60, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fff;
}


body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

.site-shell {
  position: relative;
  width: min(100%, 1440px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 72px);
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  min-height: 32px;
  color: #1c1c1c;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.brand-small {
  color: inherit;
  text-decoration: none;
}

.brand-small:hover,
.contact-card:hover .value {
  color: var(--accent);
}

.header-divider {
  width: 1px;
  height: 22px;
  background: rgba(38, 49, 106, 0.38);
}

.header-service {
  white-space: nowrap;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 860px) 1fr;
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  min-height: calc(100vh - 180px);
  padding: clamp(56px, 11vh, 136px) 0 56px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.wordmark {
  display: block;
  width: min(100%, 980px);
  max-height: 132px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 clamp(54px, 7vw, 84px);
  color: var(--accent);
  font-size: clamp(0.95rem, 1.6vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  text-align: center;
  .eyebrow {
  color: #5D658D;
}
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.rule {
  width: 96px;
  height: 2px;
  margin: clamp(32px, 4.5vw, 50px) 0;
  background: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 1fr));
  gap: 24px;
  max-width: 1050px;
}

.contact-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 22px 24px;
  color: inherit;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(20, 28, 60, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(38, 49, 106, 0.34);
  box-shadow: var(--shadow);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.contact-icon svg,
.location-icon svg {
  display: block;
  width: 31px;
  height: 31px;
  fill: var(--accent);
}

.contact-text {
  min-width: 0;
}

.label {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.96rem;
}

.value {
  display: block;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow-wrap: normal;
}

.arrow {
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
}

.background-mark {
  position: absolute;
  z-index: 1;
  right: -17%;
  top: 34%;
  width: min(62vw, 780px);
  opacity: 0.32;
  pointer-events: none;
  user-select: none;
}

.site-footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 930px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.05rem;
}

.location-icon svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 900px) {
  .site-shell {
    padding: 28px 22px 36px;
  }

  .site-header {
    justify-content: flex-start;
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 72px 0 46px;
  }

  .wordmark {
    max-height: 94px;
    margin-bottom: 16px;
  }

  .eyebrow {
    text-align: left;
    letter-spacing: 0.28em;
    margin-bottom: 46px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .background-mark {
    right: -42%;
    top: 28%;
    width: 92vw;
    opacity: 0.16;
  }
}

@media (max-width: 620px) {
  .value {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .site-header {
    flex-wrap: wrap;
  }

  .wordmark {
    width: 100%;
    max-height: 78px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .contact-card {
    grid-template-columns: 50px 1fr auto;
    min-height: 96px;
    padding: 18px;
    gap: 14px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon svg {
    width: 27px;
    height: 27px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: #fff;
  background: #25d366;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(18, 18, 18, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(18, 18, 18, 0.22);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 620px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 13px;
  }

  .whatsapp-float span {
    display: none;
  }
}
