:root {
  --bg: #f8f6f1;
  --bg-soft: #f2eee5;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #1c2430;
  --muted: #647184;
  --gold: #c9a35b;
  --gold-soft: #e2c688;
  --navy: #102238;
  --line: rgba(201, 163, 91, 0.18);
  --line-soft: rgba(16, 34, 56, 0.08);
  --shadow: 0 24px 60px rgba(28, 36, 48, 0.08);
  --shadow-soft: 0 16px 36px rgba(28, 36, 48, 0.06);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.hillcrestgroup {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 163, 91, 0.11), transparent 24%),
    radial-gradient(circle at top right, rgba(89, 125, 168, 0.12), transparent 20%),
    linear-gradient(180deg, #fbfaf6 0%, #f6f2ea 42%, #fcfbf8 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(252, 250, 245, 0.86);
  border-bottom: 1px solid rgba(16, 34, 56, 0.06);
}

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

.brand-mark {
  width: min(260px, 52vw);
  background: linear-gradient(180deg, #0d1c2f 0%, #132841 100%);
  border: 1px solid rgba(201, 163, 91, 0.28);
  border-radius: 22px;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow-soft);
}

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

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

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

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

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

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

.eyebrow,
.section-kicker,
.mini-label {
  display: inline-block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  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.95;
  letter-spacing: 0.01em;
  margin: 0 0 1.1rem;
}

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

.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 {
  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, #ecd6a6 0%, #c9a35b 100%);
  color: #172232;
  box-shadow: 0 14px 30px rgba(201, 163, 91, 0.2);
}

.btn-secondary {
  border: 1px solid rgba(16, 34, 56, 0.12);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
}

.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.96), rgba(249, 246, 239, 0.96));
  border: 1px solid var(--line);
  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-highlights span {
  display: block;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.hero-visual-card,
.image-frame,
.showcase-card.large {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 34, 56, 0.08);
  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.04), rgba(16, 34, 56, 0.22));
}

.floating-panel {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(201, 163, 91, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

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

.signature-band,
.about-section,
.services-section,
.approach-section,
.showcase-section,
.contact-section {
  padding: 1.4rem 0 5rem;
}

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

.band-grid > div {
  padding: 1.35rem;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

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

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2.4rem;
}

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

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

.service-card {
  padding: 1.45rem;
  border-radius: 24px;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 91, 0.32);
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
  background: rgba(201, 163, 91, 0.08);
}

.service-card h3,
.contact-panel h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--navy);
}

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

.feature-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

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

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

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

.stat-card {
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  display: block;
  margin-bottom: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--navy);
}

.contact-panel {
  padding: 2rem;
  border-radius: 30px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(16, 34, 56, 0.08);
}

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

.contact-list strong {
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list a {
  font-size: 1.02rem;
  word-break: break-word;
}

.contact-list a:hover,
.footer-inner a:hover {
  color: var(--navy);
}

.site-footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(16, 34, 56, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

  .showcase-card.large {
    grid-column: 1 / -1;
  }
}

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

  .header-inner,
  .footer-inner,
  .nav-links,
  .hero-grid,
  .split-grid,
  .approach-grid,
  .contact-grid,
  .showcase-grid,
  .band-grid,
  .service-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .hero-copy h1 {
    max-width: 100%;
  }

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

  .hero-visual-card img,
  .image-frame img,
  .showcase-card.large img {
    aspect-ratio: 4 / 5;
  }

  .showcase-card.large img {
    aspect-ratio: 16 / 10;
  }

  .service-card,
  .contact-panel,
  .stat-card,
  .hero-highlights div,
  .band-grid > div {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .brand-mark {
    width: min(220px, 68vw);
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .btn {
    width: 100%;
  }
}
