* {
  box-sizing: border-box;
}

:root {
  --bg: #f3f3f3;
  --surface: #ffffff;
  --surface-2: #f7f7f7;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.7);
  --muted-2: rgba(17, 17, 17, 0.55);
  --line: rgba(17, 17, 17, 0.1);
  --dark: #111111;
  --gold: #f0a52d;
  --gold-deep: #d88910;
  --white: #ffffff;
  --radius: 32px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-light {
  background: var(--surface);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 243, 243, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

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

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--bg);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.brand-top {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted-2);
}

.brand-bottom {
  margin: 4px 0 0;
  font-weight: 900;
  font-size: 1rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  transition: 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--gold-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white) !important;
  box-shadow: var(--shadow-soft);
}

.btn-light {
  background: var(--white);
  border: 1px solid var(--line);
}

.btn-sm {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--dark);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
}

.mobile-nav a {
  padding: 14px 12px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--muted);
}

.mobile-nav a:hover {
  background: #f7f7f7;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(240,165,45,0.18), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(0,0,0,0.07), transparent 20%),
    radial-gradient(circle at 20% 85%, rgba(0,0,0,0.05), transparent 18%);
}

.hero-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: var(--dark);
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 29%;
  width: 80px;
  height: 100%;
  background: var(--gold);
  transform: skewX(-18deg);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 52px;
  padding-bottom: 72px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--muted-2);
}

.dot, .dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--dark);
  animation: pulseDot 2.7s ease-in-out infinite;
}

.dot {
  background: var(--gold);
}

.hero-copy h1,
.section-copy h2,
.section-intro h2,
.center-intro h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.hero-copy h1 span {
  display: block;
  color: var(--gold);
}

.hero-text,
.section-copy p,
.section-intro p,
.info-card p,
.objective-card p,
.value-body p,
.dark-card p,
.contact-copy {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.05rem;
}

.section-dark .section-intro p,
.section-dark .dark-card p,
.section-dark .contact-copy {
  color: rgba(255,255,255,0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.mini-cards {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.mini-card p {
  margin: 0;
  font-weight: 800;
  color: rgba(17,17,17,0.8);
  font-size: 0.95rem;
}

.mini-line {
  width: 40px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  margin-bottom: 12px;
}

.gold-line {
  background: var(--gold);
}

.hero-card-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 500px;
  overflow: hidden;
  border-radius: 40px;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-strong);
}

.hero-card-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #ececec 36%, #dcdcdc 100%);
}

.hero-card-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--dark);
}

.hero-card-accent {
  position: absolute;
  top: 0;
  right: 34%;
  width: 64px;
  height: 100%;
  background: var(--gold);
  transform: skewX(-18deg);
}

.hero-card-logo {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--dark);
  color: var(--gold);
  font-weight: 900;
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-card-frame {
  position: absolute;
  top: 110px;
  left: 40px;
  width: 240px;
  height: 210px;
  border: 12px solid var(--dark);
  border-radius: 36px;
  background: linear-gradient(135deg, #d7d7d7 0%, #fafafa 100%);
  box-shadow: var(--shadow-soft);
}

.hero-card-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-card-content h2 {
  margin: 12px 0 0;
  font-size: 1.75rem;
  line-height: 1.08;
  font-weight: 900;
}

.hero-card-content p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.tiny-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(17,17,17,0.45);
  font-weight: 700;
}

.tiny-label.light {
  color: rgba(255,255,255,0.5);
}

.dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.dots span {
  width: 12px;
  height: 12px;
  background: var(--dark);
}

.dots span.active {
  background: var(--gold);
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.image-feature {
  position: relative;
}

.feature-accent {
  position: absolute;
  top: 32px;
  left: -12px;
  width: 96px;
  height: 224px;
  border-radius: 26px;
  background: var(--gold);
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

.feature-image {
  aspect-ratio: 4 / 4.5;
  border-radius: 26px;
  background: linear-gradient(135deg, #dbdbdb 0%, #f7f7f7 35%, #e4e4e4 100%);
}

.feature-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 20px;
  border-radius: 24px;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-overlay-text {
  margin: 8px 0 0;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 700;
}

.section-copy,
.section-intro {
  max-width: 780px;
}

.section-tag {
  margin: 0 0 14px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 900;
}

.section-tag.gold {
  color: var(--gold);
}

.section-copy h2,
.section-intro h2,
.center-intro h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.section-copy p,
.section-intro p {
  margin: 18px 0 0;
}

.center-intro {
  margin-bottom: 44px;
  text-align: center;
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.dark-card,
.info-card,
.objective-card,
.value-card,
.team-card,
.contact-card {
  border-radius: 32px;
}

.dark-card {
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.dark-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.dark-card.large p {
  margin: 16px 0 0;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 32px;
}

.info-card.dark {
  background: var(--dark);
  color: var(--white);
}

.info-card.dark p {
  color: rgba(255,255,255,0.8);
}

.pill {
  display: inline-flex;
  min-height: 40px;
  padding: 0 16px;
  align-items: center;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.gold-pill {
  background: var(--gold);
  color: var(--dark);
}

.objective-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.num-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.objective-card h3,
.value-card h3,
.team-body h3,
.contact-item a,
.contact-item p:last-child {
  margin: 0;
  font-weight: 900;
}

.objective-card h3 {
  font-size: 1.6rem;
}

.value-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.value-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: var(--gold);
}

.value-top h3 {
  font-size: 1.55rem;
}

.value-top span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid var(--dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.value-body {
  padding: 20px;
}

.square-icon {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: var(--bg);
  margin-bottom: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.square-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.service-list {
  display: grid;
  gap: 28px;
}

.service-card {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.service-card.reverse .service-text {
  order: 2;
}

.service-card.reverse .service-visual {
  order: 1;
}

.service-text {
  padding: 40px;
}

.service-icon,
.service-panel-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--gold);
  font-size: 1.7rem;
  box-shadow: var(--shadow-soft);
}

.service-text h3 {
  margin: 18px 0 0;
  font-size: 2rem;
  font-weight: 900;
}

.service-text p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

.service-visual {
  position: relative;
  min-height: 320px;
}

.service-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #101010 0%, #2b2b2b 10%, #f5f5f5 10%, #ececec 100%);
}

.service-ellipse {
  position: absolute;
  top: 0;
  right: 32px;
  width: 72%;
  height: 100%;
  border-radius: 8rem;
  background: linear-gradient(180deg, #ececec 0%, #d8d8d8 100%);
  box-shadow: inset 0 0 24px rgba(0,0,0,0.05);
}

.service-panel {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(84%, 320px);
  height: fit-content;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-soft);
  text-align: center;
  backdrop-filter: blur(10px);
}

.service-panel-icon {
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--gold);
}

.service-panel h4 {
  margin: 10px 0 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.team-card {
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(17,17,17,0.05);
  box-shadow: var(--shadow-soft);
}

.team-image {
  height: 260px;
  background: linear-gradient(135deg, #2b2b2b 0%, #111111 100%);
}

.team-body {
  padding: 24px;
  text-align: center;
}

.team-body h3 {
  font-size: 1.7rem;
  line-height: 1.25;
}

.contact-section {
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.contact-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 55%);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  padding: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.contact-item + .contact-item {
  margin-top: 28px;
}

.contact-item a,
.contact-item p:last-child {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.7;
}

.contact-item:last-child a {
  color: var(--gold);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px 0;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

.floaty {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (max-width: 1100px) {
  .hero-right,
  .hero-accent,
  .contact-glow {
    display: none;
  }

  .hero-grid,
  .two-col,
  .contact-grid,
  .service-card {
    grid-template-columns: 1fr;
  }

  .hero-card-wrap {
    justify-content: center;
  }

  .feature-accent {
    display: none;
  }

  .service-card.reverse .service-text,
  .service-card.reverse .service-visual {
    order: initial;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: inline-block;
  }

  .cards-grid.four,
  .cards-grid.three,
  .cards-grid.two,
  .mini-cards {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 74px 0;
  }

  .hero-grid {
    padding-top: 36px;
    padding-bottom: 56px;
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 24px));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .hero-card {
    height: 420px;
    border-radius: 30px;
  }

  .hero-card-frame {
    top: 96px;
    left: 24px;
    width: 180px;
    height: 160px;
    border-width: 10px;
  }

  .hero-card-logo {
    top: 22px;
    left: 22px;
    width: 56px;
    height: 56px;
    border-radius: 20px;
  }

  .hero-card-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 22px;
  }

  .hero-card-content h2 {
    font-size: 1.4rem;
  }

  .service-text,
  .contact-card,
  .info-card,
  .objective-card,
  .dark-card {
    padding: 24px;
  }

  .service-visual {
    min-height: 260px;
  }

  .team-image {
    height: 220px;
  }

  .contact-item a,
  .contact-item p:last-child {
    font-size: 1rem;
  }
}
.hero-img {
  position: absolute;
  top: 110px;
  left: 40px;
  width: 240px;
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
  border: 8px solid #111;
}
.feature-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}
.service-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 120px;
}
.feature-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}
.hero-img {
  position: absolute;
  top: 110px;
  left: 40px;
  width: 240px;
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
  border: 8px solid #111;
}
.map-container {
  width: 100%;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}