/* =========================================
   aspectNINE — Brand Identity CSS
   Minimal, modern, black-and-white system
   ========================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --color-black:       #0a0a0a;
  --color-white:       #ffffff;
  --color-off-white:   #f7f7f5;
  --color-light-gray:  #efefed;
  --color-mid-gray:    #9e9e9e;
  --color-dark-gray:   #3a3a3a;
  --color-accent:      #0a0a0a;

  --font-sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height:        72px;
  --max-width:         1200px;
  --section-padding:   120px;
  --section-padding-sm: 72px;

  --radius-sm:         4px;
  --radius-md:         8px;
  --radius-lg:         16px;

  --shadow-sm:         0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:         0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:         0 12px 40px rgba(0,0,0,0.14);

  --transition-base:   0.25s ease;
  --transition-slow:   0.45s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: var(--font-sans);
  font-size: 1rem;
}

/* --- Typography Scale --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

p {
  color: var(--color-dark-gray);
  font-size: 1rem;
  line-height: 1.75;
}

.text-sm  { font-size: 0.875rem; }
.text-xs  { font-size: 0.75rem; letter-spacing: 0.08em; }
.label    { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--color-mid-gray); }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: var(--section-padding) 0;
}

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

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

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--dark p {
  color: rgba(255,255,255,0.72);
}

.section-header {
  margin-bottom: 64px;
}

.section-header .label {
  display: block;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  max-width: 600px;
  font-size: 1.1rem;
}

/* --- Divider --- */
.divider {
  width: 40px;
  height: 2px;
  background: var(--color-black);
  margin: 24px 0;
}

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

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--color-light-gray);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 32px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-dark-gray);
  transition: color var(--transition-base);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-black);
  transition: width var(--transition-base);
}

.nav__links a:hover {
  color: var(--color-black);
  opacity: 1;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a.active {
  color: var(--color-black);
}

.nav__cta {
  background: var(--color-black) !important;
  color: var(--color-white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition-base), opacity var(--transition-base);
}

.nav__cta:hover {
  opacity: 0.85 !important;
}

.nav__cta::after {
  display: none !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-black);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7.25px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7.25px) rotate(-45deg);
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-light-gray);
  padding: 24px 48px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark-gray);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-light-gray);
  transition: color var(--transition-base);
}

.nav__mobile a:last-child {
  border-bottom: none;
}

.nav__mobile a:hover {
  color: var(--color-black);
  opacity: 1;
}

.nav__mobile .nav__cta {
  margin-top: 16px;
  text-align: center;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
}

/* Page offset for fixed nav */
.page-top {
  padding-top: var(--nav-height);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn--primary:hover {
  background: var(--color-dark-gray);
  border-color: var(--color-dark-gray);
  opacity: 1;
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn--outline:hover {
  background: var(--color-black);
  color: var(--color-white);
  opacity: 1;
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-black);
  opacity: 1;
}

/* Arrow icon */
.btn__arrow {
  transition: transform var(--transition-base);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--color-off-white);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-mid-gray);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid var(--color-light-gray);
  border-radius: 100px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--color-black);
}

.hero__title span {
  display: block;
  font-weight: 300;
  color: var(--color-mid-gray);
  font-size: 0.55em;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

.hero__body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-dark-gray);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-mid-gray);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-mid-gray), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =========================================
   WHAT WE DO — DIAGRAM
   ========================================= */
.genre-diagram {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.genre-card {
  border: 1px solid var(--color-light-gray);
  padding: 40px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.genre-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-black);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.genre-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.genre-card:hover::before {
  transform: scaleX(1);
}

.genre-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--color-off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.genre-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.genre-card p {
  font-size: 0.875rem;
  color: var(--color-mid-gray);
  line-height: 1.65;
}

/* =========================================
   LABELS PAGE
   ========================================= */
.labels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.label-card {
  border: 1px solid var(--color-light-gray);
  padding: 56px 48px;
  border-radius: var(--radius-md);
  transition: all var(--transition-slow);
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.label-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--color-black);
  transition: height var(--transition-slow);
  z-index: 0;
}

.label-card:hover {
  border-color: var(--color-black);
  box-shadow: var(--shadow-lg);
}

.label-card__content {
  position: relative;
  z-index: 1;
}

.label-card__number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  margin-bottom: 32px;
  display: block;
}

.label-card__icon {
  width: 64px;
  height: 64px;
  background: var(--color-off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 28px;
  transition: background var(--transition-base);
}

.label-card:hover .label-card__icon {
  background: var(--color-light-gray);
}

.label-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.label-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-dark-gray);
}

/* =========================================
   WHY CHOOSE — CONTENT BLOCKS
   ========================================= */
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.why-block:last-child {
  border-bottom: none;
}

.why-block--reverse {
  direction: rtl;
}

.why-block--reverse > * {
  direction: ltr;
}

.why-block__text {}

.why-block__number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  margin-bottom: 20px;
  display: block;
}

.why-block h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.why-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark-gray);
}

.why-block__visual {
  aspect-ratio: 4/3;
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--color-mid-gray);
  border: 1px solid var(--color-light-gray);
  position: relative;
  overflow: hidden;
}

.why-block__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 24px,
    var(--color-light-gray) 24px,
    var(--color-light-gray) 25px
  );
  opacity: 0.5;
}

/* =========================================
   LEADERSHIP PAGE
   ========================================= */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.leader-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  background: var(--color-white);
}

.leader-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.leader-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 2px solid var(--color-light-gray);
  position: relative;
}

.leader-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: filter var(--transition-slow);
}

.leader-card:hover .leader-card__photo img {
  filter: grayscale(0%);
}

.leader-card__initials {
  width: 100%;
  height: 100%;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.leader-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.leader-card p {
  font-size: 0.875rem;
  color: var(--color-mid-gray);
  line-height: 1.5;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.contact-detail .label {
  color: var(--color-mid-gray);
}

.contact-detail a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-detail a:hover {
  opacity: 0.6;
}

/* Contact Form */
.contact-form {
  background: var(--color-off-white);
  padding: 48px;
  border-radius: var(--radius-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark-gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 0.95rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group .error-msg {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 6px;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-success {
  display: none;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--color-mid-gray);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 80px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.footer__brand {}

.footer__logo {
  height: 28px;
  width: auto;
  margin-bottom: 20px;
  filter: invert(1) brightness(2);
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 300px;
}

.footer__col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  transition: color var(--transition-base);
}

.footer__col a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer__col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-base);
}

.footer__legal a:hover {
  color: var(--color-white);
  opacity: 1;
}

/* =========================================
   LEGAL PAGES (Privacy / Terms)
   ========================================= */
.legal-page {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 120px;
}

.legal-header {
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-light-gray);
}

.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.legal-header .last-updated {
  font-size: 0.85rem;
  color: var(--color-mid-gray);
}

.legal-toc {
  background: var(--color-off-white);
  padding: 32px 36px;
  border-radius: var(--radius-md);
  margin-bottom: 56px;
}

.legal-toc h3 {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  margin-bottom: 16px;
  font-weight: 700;
}

.legal-toc ol {
  list-style: decimal;
  padding-left: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 40px;
}

.legal-toc ol li {
  list-style: decimal;
}

.legal-toc a {
  font-size: 0.875rem;
  color: var(--color-dark-gray);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-toc a:hover {
  color: var(--color-black);
  opacity: 1;
}

.legal-section {
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--nav-height) + 32px);
}

.legal-section h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-top: 0;
}

.legal-section p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
  margin: 16px 0 16px 0;
}

.legal-section ul li,
.legal-section ol li {
  font-size: 0.95rem;
  color: var(--color-dark-gray);
  padding: 6px 0 6px 24px;
  position: relative;
}

.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-mid-gray);
  font-size: 0.85rem;
}

.legal-section ol {
  counter-reset: legal-counter;
}
.legal-section ol li {
  counter-increment: legal-counter;
}
.legal-section ol li::before {
  content: counter(legal-counter) '.';
  position: absolute;
  left: 0;
  color: var(--color-mid-gray);
  font-size: 0.85rem;
  font-weight: 600;
}

.legal-section strong {
  color: var(--color-black);
  font-weight: 600;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-black);
  border: 1px solid var(--color-light-gray);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  margin-top: 24px;
  transition: all var(--transition-base);
}

.back-to-top:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
  opacity: 1;
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-light-gray);
}

.page-hero .label {
  display: block;
  margin-bottom: 16px;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.75;
}

/* =========================================
   STATS / NUMBERS STRIP
   ========================================= */
.stats-strip {
  background: var(--color-black);
  padding: 64px 0;
  color: var(--color-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.stat p {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* =========================================
   INTRO TEXT BLOCK
   ========================================= */
.intro-block {
  padding: var(--section-padding) 0;
  text-align: center;
}

.intro-block h2 {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.intro-block p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* =========================================
   SUMMARY GRID (Why Choose Us page)
   ========================================= */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.summary-item {
  text-align: center;
}

.summary-item__icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: rgba(255,255,255,0.6);
}

.summary-item p {
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* Label quick-reference icon (contact page) */
.label-quick-icon {
  width: 48px;
  height: 48px;
  background: var(--color-off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--color-dark-gray);
  transition: background var(--transition-base);
}

a:hover .label-quick-icon {
  background: var(--color-light-gray);
}

@media (max-width: 768px) {
  .summary-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   ANIMATION CLASSES
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =========================================
   ASPECT RATIO LOGO MARK (SVG fallback)
   ========================================= */
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Tablet (768px and below) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .container {
    padding: 0 32px;
  }

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

  .why-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0;
  }

  .why-block--reverse {
    direction: ltr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

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

/* Mobile (768px and below) */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --nav-height: 64px;
  }

  .container {
    padding: 0 24px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__inner {
    padding: 0 24px;
  }

  .nav__mobile {
    padding: 24px 24px 32px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .hero::before {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .labels-grid {
    grid-template-columns: 1fr;
  }

  .label-card {
    padding: 40px 32px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .genre-diagram {
    grid-template-columns: 1fr;
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .label-card {
    padding: 32px 24px;
  }
}
