:root {
  --bg: #f5f8fb;
  --bg-soft: #eef4f8;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #14202c;
  --muted: #657589;
  --accent: #d3af37;
  --accent-soft: #ebd78a;
  --aqua: #0bb1df;
  --aqua-soft: #a6ecff;
  --navy: #0f2d45;
  --navy-deep: #071824;
  --line: rgba(11, 177, 223, 0.16);
  --line-soft: rgba(15, 45, 69, 0.08);
  --shadow: 0 24px 60px rgba(13, 38, 58, 0.10);
  --shadow-soft: 0 16px 34px rgba(13, 38, 58, 0.07);
  --radius: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.herevital {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 177, 223, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(211, 175, 55, 0.13), transparent 20%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8fc 40%, #fbfdff 100%);
  line-height: 1.7;
}

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

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

.page-shell {
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.82);
  border-bottom: 1px solid rgba(15, 45, 69, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand-mark {
  width: min(230px, 52vw);
  border-radius: 24px;
  padding: 0.8rem 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(243,248,252,0.96));
  border: 1px solid rgba(11, 177, 223, 0.16);
  box-shadow: var(--shadow-soft);
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.nav-links a:hover {
  color: var(--navy);
}

.hero-section {
  padding: 5.5rem 0 4rem;
}

.hero-grid,
.split-grid,
.approach-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-kicker,
.mini-label {
  display: inline-block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.76rem;
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.01em;
  margin: 0 0 1.1rem;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  max-width: 10.2ch;
}

.hero-copy p,
.section-copy p,
.section-heading p,
.contact-copy p,
.service-card p,
.stat-card p,
.floating-panel p,
.band-grid p,
.contact-list a,
.hero-highlights span,
.feature-list li,
.footer-inner a {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #0db8e8 0%, #d7b233 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(11, 177, 223, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(15, 45, 69, 0.12);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-highlights div,
.service-card,
.contact-panel,
.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 251, 0.96));
  border: 1px solid rgba(11, 177, 223, 0.14);
  box-shadow: var(--shadow);
}

.hero-highlights div {
  padding: 1.15rem;
  border-radius: 22px;
}

.hero-highlights strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 0.95rem;
}

.hero-visual-card,
.image-frame,
.showcase-card.large {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 45, 69, 0.09);
  background: #fff;
}

.hero-visual-card img,
.image-frame img,
.showcase-card.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-card {
  min-height: 640px;
}

.hero-visual-card::after,
.image-frame::after,
.showcase-card.large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(7, 24, 36, 0.18));
}

.floating-panel {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 2;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.floating-panel span {
  display: block;
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.signature-band,
.collections-section,
.showcase-section,
.contact-section {
  padding: 1.5rem 0 4.5rem;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.band-grid > div {
  border-top: 1px solid rgba(11, 177, 223, 0.16);
  padding-top: 1.2rem;
}

.about-section,
.philosophy-section {
  padding: 0 0 4.5rem;
}

.section-copy,
.contact-copy {
  max-width: 38rem;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.25rem);
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 2rem;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.tall-frame {
  min-height: 580px;
}

.wide-frame {
  min-height: 520px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card,
.stat-card,
.contact-panel {
  border-radius: 26px;
  padding: 1.5rem;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--navy);
  background: rgba(11, 177, 223, 0.10);
  margin-bottom: 1rem;
}

.service-card h3,
.contact-panel h3 {
  color: var(--navy);
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.feature-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--accent));
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.45fr 0.45fr;
  gap: 1rem;
  align-items: stretch;
}

.showcase-card.large {
  min-height: 420px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.contact-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,247,251,0.95));
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 45, 69, 0.08);
}

.contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list strong {
  color: var(--navy);
}

.site-footer {
  padding: 1.4rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(15, 45, 69, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .approach-grid,
  .contact-grid,
  .showcase-grid,
  .service-grid,
  .band-grid,
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-visual-card,
  .tall-frame,
  .wide-frame,
  .showcase-card.large {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }

  .hero-section {
    padding-top: 3.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
    max-width: 100%;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .hero-visual-card,
  .tall-frame,
  .wide-frame,
  .showcase-card.large {
    min-height: 320px;
  }

  .floating-panel {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
