:root {
  --ink: #111827;
  --muted: #4b5563;
  --line: rgba(0, 0, 0, 0.1);
  --soft: #f3f4f6;
  --soft2: #eef0f3;
  --teal: #0e6b73;
  --max: 90%;

  --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 12px 26px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.nav-toggle {
  display: none;
}
/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 3px solid var(--line);
  box-shadow: 2px 5px 5px #e2e6eb;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}
.brand__logo {
  height: 120px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__link {
  text-decoration: none;
  font-size: 14px;
  color: #111;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav__link:hover {
  border-bottom-color: rgba(14, 107, 115, 0.35);
}
.nav__link.active {
  border-bottom-color: var(--teal);
}
.nav__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #111;
  text-decoration: none;
}
.nav__icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* HERO (CENTERED FRAME like screenshot) */
.hero {
  background: #fff;
  padding: 18px 0 10px;
}
.hero__frame {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 46px;
  text-align: center;
  letter-spacing: 0.2px;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  padding: 0 10px;
}

/* VALUE / OVERVIEW (pattern + curved bottom) */
.value {
  position: relative;
  padding: 44px 0 70px;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.035) 0%,
      rgba(0, 0, 0, 0) 60%
    ),
    repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.025) 0px,
      rgba(0, 0, 0, 0.025) 10px,
      rgba(255, 255, 255, 0) 10px,
      rgba(255, 255, 255, 0) 24px
    ),
    var(--soft);
}

.value__grid {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 42px;
  align-items: center;
}
.value__left {
  padding-left: 6px;
}
.value__line {
  font-size: 20px;
  line-height: 1.55;
  margin: 10px 0;
  font-style: italic;
  color: #111;
}
.value__line span {
  font-weight: 700;
}
.value__right p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.9;
  color: #1f2937;
  max-width: 720px;
}

/* CORE SERVICES */
.services {
  padding: 54px 0 64px;
}
.section-title {
  font-size: 56px;
  font-weight: 500;
  margin: 0 0 22px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  overflow: hidden;
}
.card__img img {
  width: 100%;
  height: auto; /*210px;*/
  object-fit: cover;
}
.card h3 {
  margin: 12px 0 6px;
  font-size: 18px;
  font-weight: 400;
}
.card p {
  margin: 0 0 16px;
  font-size: 13px;
  color: #111;
  line-height: 1.7;
}

/* STORY */
.story {
  /* background: var(--soft2); */
  padding: 0; /* 54px 0; */
}
.story__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center;
  background-color: var(--soft2);
}

.story__img img {
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}
.story__title {
  margin: 0 0 14px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 600;
}
.story__text p {
  margin: 0 0 18px;
  line-height: 1.85;
  font-size: 13.5px;
  color: #1f2937;
}
.story__link {
  display: inline-block;
  text-decoration: none;
  border-bottom: 2px solid #111;
  padding-bottom: 8px;
  font-size: 13.5px;
}

/* FOOTER */
.footer {
  color: #fff;
  padding: 52px 0;
  /*background: radial-gradient(
    1000px 600px at 10% 20%,
    #3a4047 0%,
    #2a2f35 35%,
    #1d2126 100%
  );
  */
  background-color: #3b4044;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.footer__logo {
  height: 120px;
  width: auto;
  opacity: 0.95;
}
.footer__tag {
  margin-top: 10px;
  opacity: 0.85;
  font-size: 13px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
}
.footer ul {
  margin: 0;
  padding-left: 18px;
}
.footer li {
  margin: 10px 0;
  opacity: 0.95;
}
.footer__text {
  opacity: 0.95;
  line-height: 1.7;
}
.footer a {
  opacity: 0.95;
}
