:root {
  --bg: #f8f6ef;
  --bg-soft: #f2efe6;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #212526;
  --muted: #6c756f;
  --accent: #baa06c;
  --accent-soft: #dcc9a0;
  --forest: #5f6c5f;
  --forest-deep: #2f3a33;
  --line: rgba(186, 160, 108, 0.18);
  --line-soft: rgba(95, 108, 95, 0.12);
  --shadow: 0 26px 60px rgba(37, 45, 39, 0.08);
  --shadow-soft: 0 14px 34px rgba(37, 45, 39, 0.06);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.claruspro {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(186, 160, 108, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(126, 151, 126, 0.13), transparent 20%),
    linear-gradient(180deg, #fcfbf8 0%, #f6f3eb 45%, #fdfcf8 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.84);
  border-bottom: 1px solid rgba(95, 108, 95, 0.08);
}

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

.brand-mark {
  width: min(220px, 48vw);
  background: linear-gradient(180deg, #161919 0%, #242828 100%);
  border: 1px solid rgba(186, 160, 108, 0.28);
  border-radius: 22px;
  padding: 0.85rem 1rem;
  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(--forest-deep);
}

.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.95;
  letter-spacing: 0.01em;
  margin: 0 0 1.1rem;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 5.7rem);
  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,
.hero-highlights span {
  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, #e6d3a8 0%, #baa06c 100%);
  color: #1d2320;
  box-shadow: 0 14px 30px rgba(186, 160, 108, 0.2);
}

.btn-secondary {
  border: 1px solid rgba(95, 108, 95, 0.16);
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.82);
}

.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.98), rgba(247, 244, 238, 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(--forest-deep);
  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(95, 108, 95, 0.12);
  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(31, 39, 34, 0.16));
}

.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.84);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(186, 160, 108, 0.22);
  box-shadow: var(--shadow-soft);
}

.floating-panel span {
  display: block;
  color: var(--forest-deep);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.signature-band,
.collections-section,
.showcase-section {
  padding: 1rem 0 4.8rem;
}

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

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

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

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

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

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

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

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

.service-grid,
.showcase-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.service-index {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.service-card h3,
.contact-panel h3 {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--forest-deep);
}

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

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dcc9a0 0%, #baa06c 100%);
  left: 0;
  top: 0.72em;
  transform: translateY(-50%);
}

.showcase-grid {
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  align-items: stretch;
}

.showcase-card {
  border-radius: 26px;
  overflow: hidden;
}

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

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

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--forest-deep);
  margin-bottom: 0.8rem;
}

.contact-panel {
  border-radius: 28px;
  padding: 1.7rem;
}

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

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(95, 108, 95, 0.1);
}

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

.contact-list strong {
  color: var(--forest-deep);
  font-weight: 600;
}

.contact-list a {
  text-align: right;
  transition: color 0.25s ease;
}

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

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

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

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .approach-grid,
  .contact-grid,
  .service-grid,
  .showcase-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,
  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .brand-mark {
    width: 100%;
    max-width: 220px;
  }

  .btn {
    width: 100%;
  }

  .contact-list a {
    text-align: left;
  }
}
