:root {
  --surface: rgba(255, 255, 255, 0.82);
  --text: #1f3552;
  --muted: #4f6874;
  --gold: #f28c38;
  --gold-soft: #ffd67c;
  --line: rgba(242, 140, 56, 0.22);
  --shadow: 0 24px 70px rgba(88, 104, 117, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 196, 92, 0.35), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(90, 200, 250, 0.2), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 152, 180, 0.18), transparent 30%),
    linear-gradient(180deg, #fff2a8 0%, #ffe9f3 24%, #e8f7ff 58%, #ecfff1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 28%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0.16) 1px, transparent 1px, transparent 130px);
  z-index: -2;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
  animation: ambientFloat 16s ease-in-out infinite;
}

.ambient-left {
  width: 240px;
  height: 240px;
  left: -90px;
  top: 140px;
  background: radial-gradient(circle, rgba(255, 170, 0, 0.45), transparent 70%);
}

.ambient-right {
  width: 280px;
  height: 280px;
  right: -120px;
  top: 460px;
  background: radial-gradient(circle, rgba(0, 182, 255, 0.28), transparent 68%);
  animation-duration: 20s;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 42px;
}

.hero,
.section,
.metrics {
  position: relative;
  overflow: hidden;
}

.hero > *,
.section > *,
.metrics > * {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 24px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.26)),
    linear-gradient(135deg, rgba(255, 247, 186, 0.95), rgba(255, 218, 241, 0.86) 45%, rgba(214, 243, 255, 0.86));
  border: 1px solid rgba(242, 140, 56, 0.22);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(242, 140, 56, 0.28);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 216, 124, 0.45), transparent 35%),
    linear-gradient(145deg, #ff9d4d, #ef5da8);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}

.brand-subtitle {
  color: var(--muted);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link,
.button {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
  padding-top: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  font-weight: 800;
  color: #e66c13;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
  max-width: 11.5ch;
}

h2 {
  font-size: clamp(1.6rem, 3.1vw, 2.5rem);
}

h3 {
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
}

h4 {
  font-size: 2rem;
}

p {
  line-height: 1.75;
}

.hero-text,
.section-intro,
.story-panel p,
.contact-intro p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions,
.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-signals {
  margin-top: 22px;
}

.hero-feature-panel {
  margin-top: 22px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(242, 140, 56, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 236, 0.66));
  box-shadow: 0 18px 36px rgba(88, 104, 117, 0.1);
}

.feature-stat {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.feature-stat strong {
  font-size: 1.05rem;
  color: #23385d;
}

.feature-stat span {
  color: var(--muted);
}

.feature-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.highlight-card {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(242, 140, 56, 0.14);
}

.highlight-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff9d00, #ff5fb2);
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(242, 140, 56, 0.26);
  color: #ffffff;
  background: linear-gradient(135deg, #ff9d00, #ff5fb2 52%, #49b7ff);
  box-shadow: 0 20px 36px rgba(255, 95, 178, 0.24);
}

.button:hover,
.button:focus-visible,
.button-outline:hover,
.button-outline:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  transform: translateY(-2px);
}

.button-outline,
.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(242, 140, 56, 0.18);
  box-shadow: none;
}

.signal-pill {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(242, 140, 56, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: #5e5b2d;
}

.hero-showcase {
  display: grid;
  gap: 14px;
}

.hero-photo-stack {
  display: grid;
  gap: 12px;
}

.hero-photo-row,
.gallery-grid {
  display: grid;
  gap: 14px;
}

.hero-photo-row {
  grid-template-columns: 1fr 1fr;
}

.photo-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 35px rgba(73, 183, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 177, 66, 0.25), rgba(255, 95, 178, 0.18));
}

.photo-card img,
.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-large {
  min-height: 190px;
}

.photo-card:not(.photo-card-large) {
  min-height: 112px;
}

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

.gallery-card {
  min-height: 260px;
}

.gallery-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #1f3552;
  font-weight: 800;
}

.showcase-frame,
.showcase-card,
.metric-card,
.service-card,
.story-panel,
.point-card,
.partner-chip,
.contact-card,
.contact-intro {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 28%),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.showcase-frame {
  padding: 18px;
  border-radius: 28px;
}

.showcase-label,
.card-overline,
.contact-type {
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
}

.showcase-divider {
  width: 100%;
  height: 1px;
  margin: 14px 0;
  background: linear-gradient(90deg, rgba(239, 93, 168, 0.8), transparent);
}

.showcase-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.showcase-list li {
  position: relative;
  padding-left: 18px;
}

.showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.showcase-card {
  padding: 14px 16px;
  border-radius: 22px;
}

.showcase-card p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.showcase-card p {
  margin: 0;
  color: var(--muted);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.32;
  pointer-events: none;
  animation: ambientFloat 14s ease-in-out infinite;
  z-index: 0;
}

.hero-glow-one {
  width: 220px;
  height: 220px;
  right: -40px;
  top: 70px;
  background: radial-gradient(circle, rgba(255, 154, 0, 0.44), transparent 70%);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(73, 183, 255, 0.34), transparent 72%);
  animation-duration: 18s;
}

.metrics,
.section {
  margin-top: 24px;
  border-radius: 30px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric-card {
  padding: 26px;
  border-radius: 26px;
  text-align: center;
}

.metric-value {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #ea6f16;
}

.metric-label {
  color: var(--muted);
}

.section {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 20%),
    linear-gradient(135deg, rgba(255, 250, 224, 0.9), rgba(255, 235, 245, 0.9) 46%, rgba(231, 248, 255, 0.88));
  border: 1px solid rgba(242, 140, 56, 0.18);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.service-grid,
.partner-grid,
.contact-grid,
.story-band {
  display: grid;
  gap: 18px;
}

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

.service-card {
  padding: 26px;
  border-radius: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-image {
  overflow: hidden;
  margin: -10px -10px 18px;
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(73, 183, 255, 0.14);
  min-height: 180px;
}

.service-image img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card:hover,
.partner-chip:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 93, 168, 0.38);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #ffb84d, #ff7f50);
}

.service-card p {
  color: var(--muted);
}

.story-band {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.story-panel,
.contact-intro {
  padding: 30px;
  border-radius: 28px;
}

.story-points {
  display: grid;
  gap: 16px;
}

.point-card {
  padding: 22px;
  border-radius: 24px;
}

.point-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #ea6f16;
}

.point-card span {
  color: var(--muted);
  line-height: 1.65;
}

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

.partner-chip {
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  text-align: center;
  font-weight: 700;
  color: #245064;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.partner-chip img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.partner-chip span {
  display: block;
  padding: 14px 12px 16px;
}

.contact-wrap {
  background:
    linear-gradient(180deg, rgba(255, 168, 87, 0.12), transparent 18%),
    linear-gradient(135deg, rgba(255, 248, 228, 0.92), rgba(255, 230, 244, 0.88) 50%, rgba(228, 250, 255, 0.9));
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.contact-card {
  padding: 24px;
  border-radius: 24px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  color: #ea6f16;
}

.contact-card span:last-child,
.social-row {
  color: var(--muted);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .gallery-grid,
  .story-band,
  .service-grid,
  .partner-grid,
  .contact-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

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

  .topbar-actions {
    justify-content: flex-start;
  }

  .feature-highlights {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    margin: 10px auto 24px;
  }

  .hero,
  .section,
  .metric-card,
  .story-panel,
  .contact-intro,
  .contact-card,
  .showcase-frame,
  .showcase-card,
  .service-card {
    padding: 20px;
  }

  .hero-photo-row {
    grid-template-columns: 1fr;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-mark {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-actions,
  .topbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-outline,
  .button-ghost {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ambient,
  .hero-glow,
  .reveal,
  .button,
  .service-card,
  .partner-chip,
  .contact-card,
  .nav-link {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
