:root {
  --bg: #0b0b0c;
  --bg-alt: #121213;
  --surface: #161618;
  --surface-2: #1b1b1e;
  --accent: #c8a45b;
  --accent-soft: rgba(200, 164, 91, 0.12);
  --text: #f3f1ea;
  --muted: #b6b1a7;
  --border: rgba(255, 255, 255, 0.12);
  --card-bg: var(--surface);
  --danger: #ef4444;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman",
    serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(11, 11, 12, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-image {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-main {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.logo-sub {
  font-size: 0.73rem;
  color: var(--muted);
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.15s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 91, 0.55);
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.03);
}

.nav-cta.active {
  background: var(--accent);
  color: #0b0b0c !important;
  border-color: rgba(200, 164, 91, 0.75);
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 3.5rem 0 3.75rem;
}

.hero--fullwidth {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 0;
}

@media (max-width: 720px) {
  .hero--fullwidth {
    min-height: 60vh;
  }
  
  .hero--fullwidth h1 {
    font-size: 1.8rem;
  }
  
  .hero--fullwidth .hero-text {
    font-size: 0.9rem;
  }
  
  .hero--fullwidth .hero-inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .hero--fullwidth .hero-copy {
    max-width: 100%;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 11, 12, 0.75) 0%,
    rgba(11, 11, 12, 0.4) 50%,
    rgba(11, 11, 12, 0.6) 100%
  );
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--fullwidth .hero-inner {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero--fullwidth .hero-copy {
  max-width: 600px;
}

.hero--fullwidth h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin-bottom: 1.2rem;
}

.hero--fullwidth .hero-text {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(0, 2.3fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 241, 234, 0.72);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.1vw, 2.8rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.accent {
  color: var(--accent);
}

.hero-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.btn.primary {
  background: var(--accent);
  border-color: rgba(200, 164, 91, 0.85);
  color: #0b0b0c;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn.ghost:hover {
  border-color: rgba(200, 164, 91, 0.6);
  background: rgba(255, 255, 255, 0.03);
}

.btn.full {
  width: 100%;
}

.btn.large {
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
}

.btn.text-link {
  padding: 0;
  border: none;
  color: var(--accent);
  background: none;
}

.btn.text-link::after {
  content: "→";
  font-size: 0.9rem;
  margin-left: 0.3rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: rgba(182, 177, 167, 0.9);
}

.hero-points span {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  margin: 0;
}

.hero-photo-frame {
  aspect-ratio: 4 / 5;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-credit {
  margin-top: 0.55rem;
  font-size: 0.75rem;
  color: rgba(182, 177, 167, 0.75);
}

.media-credit a {
  color: rgba(200, 164, 91, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  padding: 1.5rem 1.4rem 1.5rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero-image .hero-card {
  margin-top: -3.1rem;
  margin-right: 0.95rem;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(200, 164, 91, 0.35);
  opacity: 0.55;
  pointer-events: none;
}

.hero-card h2 {
  font-size: 1.15rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--text);
}

.hero-card li::before {
  content: "●";
  font-size: 0.5rem;
  margin-right: 0.45rem;
  color: var(--accent);
}

.section {
  padding: 2.8rem 0;
}

.section-light {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg);
}

.section-accent {
  background: var(--bg-alt);
  border-top: 1px solid rgba(200, 164, 91, 0.18);
  border-bottom: 1px solid rgba(200, 164, 91, 0.18);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  margin: 0 0 1.2rem;
}

.section-title.center {
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.feature-grid-small {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  border-radius: 1.1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.section-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .section-with-image {
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
  }
  
  .section-with-image--reverse {
    grid-template-columns: 1fr 320px;
  }
  
  .section-with-image--reverse .section-image {
    order: 2;
  }
}

.section-image {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .brand-showcase {
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.brand-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand-logo {
  margin: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  max-width: 200px;
  height: auto;
}

.section-image--tall {
  aspect-ratio: 3 / 4;
}

.section-lead {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.pillar-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.pillar-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.pillar-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.pillar-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.consulting-grid {
  display: grid;
  gap: 1rem;
}

.consulting-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.consulting-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--accent);
}

.consulting-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}

@media (min-width: 600px) {
  .flow-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.85rem;
  text-align: center;
}

.flow-step span {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.85rem;
}

.brand-image {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-image .media-credit {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.5rem;
  text-align: right;
}

.brand-image .media-credit a {
  color: var(--accent);
}

.brand-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 1.25rem 1.2rem 1.3rem;
}

.card-dark {
  background: rgba(255, 255, 255, 0.03);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

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

.list {
  list-style: none;
  padding: 0;
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.list li::before {
  content: "・";
  position: absolute;
  left: 0.2rem;
  top: 0;
}

.note {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: rgba(182, 177, 167, 0.85);
}

.section-header-flex {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.link-inline {
  font-size: 0.85rem;
  color: var(--accent);
}

.highlight-box {
  border-radius: 1.25rem;
  border: 1px solid rgba(200, 164, 91, 0.45);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.25rem 1.3rem;
}

.highlight-box h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.highlight-box p {
  margin: 0;
  font-size: 0.86rem;
  color: #e5e7eb;
  line-height: 1.8;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.cta-note {
  font-size: 0.8rem;
  color: rgba(200, 164, 91, 0.95);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.results-image {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.results-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-cta {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 12, 0.7),
    rgba(11, 11, 12, 0.85)
  );
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
}

.cta-content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.page-hero {
  padding: 4rem 0 3rem;
  min-height: 40vh;
  display: flex;
  align-items: center;
}

@media (max-width: 720px) {
  .page-hero {
    padding: 3rem 0 2rem;
    min-height: 30vh;
  }
  
  .page-hero h1 {
    font-size: 1.5rem;
  }
  
  .page-lead {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

.page-hero.page-hero--image {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background-image: linear-gradient(
      180deg,
      rgba(11, 11, 12, 0.6),
      rgba(11, 11, 12, 0.4) 50%,
      rgba(11, 11, 12, 0.85)
    ),
    var(--page-hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero-credit {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  color: rgba(182, 177, 167, 0.72);
}

.page-hero-credit a {
  color: rgba(200, 164, 91, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 241, 234, 0.72);
  margin-bottom: 0.4rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0 0 0.8rem;
}

.page-lead {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 640px;
}

.stepper {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: flex-start;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text);
}

.step-body h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
}

.step-body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.case {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  padding: 1.4rem 1.3rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 1.4rem;
}

.case-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}

.case-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.case-text h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.case-text p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
}

.case-with-image .case-body-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .case-with-image .case-body-grid {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
  }
}

.case-image {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-image .media-credit {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.4rem;
  text-align: right;
}

.case-image .media-credit a {
  color: var(--accent);
}

.section-nested {
  margin-top: 2.2rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .profile-grid {
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.profile-image {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-content h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.profile-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.2rem;
}

@media (min-width: 900px) {
  .profile-details {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.media-gallery figure {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.media-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.case-highlights {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.highlight-stat {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
  background: rgba(200, 164, 91, 0.1);
  border: 1px solid rgba(200, 164, 91, 0.3);
  border-radius: 0.5rem;
  text-align: center;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.case-card {
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.case-card-image {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card-content {
  padding: 1.25rem;
}

.case-card-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.case-card-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.case-card-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

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

.stat-arrow {
  color: var(--accent);
}

.stat-after {
  color: var(--accent);
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}

.tag-list li {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  margin-top: 0.8rem;
}

.info-table th,
.info-table td {
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  width: 140px;
  text-align: left;
  font-weight: 500;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.info-table td {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.01);
}

.contact-grid {
  align-items: flex-start;
}

.contact-form {
  margin-top: 1rem;
}

.form-field {
  margin-bottom: 0.9rem;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.required {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.72rem;
  padding: 0.05rem 0.35rem;
  border-radius: 999px;
  background: rgba(248, 113, 113, 0.18);
  color: #fecaca;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 0.86rem;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(182, 177, 167, 0.7);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(200, 164, 91, 0.75);
  box-shadow: 0 0 0 1px rgba(200, 164, 91, 0.35);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.info-panel {
  margin-top: 1rem;
  border-radius: 1.1rem;
  border: 1px solid var(--border);
  padding: 1rem 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.02);
}

.info-panel h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 0.96rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  margin-top: 2.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding: 1.8rem 1.25rem 1.6rem;
}

.footer-brand {
  max-width: 360px;
}

.footer-copy {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.8rem;
}

.footer-links h4 {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  padding: 0.7rem 1.25rem 0.9rem;
  font-size: 0.75rem;
  color: rgba(182, 177, 167, 0.7);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.3fr);
    gap: 2rem;
  }

  .hero-image {
    justify-content: flex-start;
  }

  .hero-image .hero-card {
    margin-top: -2.4rem;
    margin-right: 0;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-grid-small {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 0.4rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: fixed;
    inset-inline: 0.75rem;
    top: 3.2rem;
    border-radius: 1rem;
    background: rgba(11, 11, 12, 0.96);
    flex-direction: column;
    padding: 0.7rem 0.9rem 0.8rem;
    border: 1px solid var(--border);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a,
  .nav-cta {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero-image .hero-card {
    margin-top: 1rem;
  }

  .section {
    padding: 2.2rem 0;
  }

  .card-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero {
    padding-top: 2.4rem;
  }
}

/* Profile Stats */
.profile-stats {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.profile-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(200, 164, 91, 0.1);
  border: 1px solid rgba(200, 164, 91, 0.3);
  border-radius: 0.5rem;
  text-align: center;
  min-width: 80px;
}

.profile-stat .stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.profile-stat .stat-label {
  font-size: 0.7rem;
  color: var(--muted);
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-image {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-form-wrapper {
  max-width: 100%;
}

/* Mobile Responsive Additions */
@media (max-width: 720px) {
  .section-with-image {
    gap: 1.5rem;
  }
  
  .section-image {
    max-height: 250px;
    overflow: hidden;
    border-radius: 0.75rem;
  }
  
  .section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .section-image--tall {
    aspect-ratio: 4 / 3;
  }
  
  .pillar-card {
    padding: 0.75rem;
  }
  
  .consulting-card {
    padding: 0.75rem;
  }
  
  .case-highlights {
    gap: 0.5rem;
  }
  
  .highlight-stat {
    padding: 0.5rem 0.75rem;
    flex: 1;
    min-width: auto;
  }
  
  .stat-value {
    font-size: 1rem;
  }
  
  .case-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .case-card-content {
    padding: 1rem;
  }
  
  .brand-showcase {
    gap: 1.5rem;
  }
  
  .brand-images {
    gap: 1rem;
  }
  
  .results-grid {
    gap: 1rem;
  }
  
  .results-image {
    max-height: 200px;
  }
  
  .contact-layout {
    gap: 1.5rem;
  }
  
  .contact-image {
    max-height: 200px;
    overflow: hidden;
  }
}
