/* Haunts 365 — company pages (premium / about) */

:root {
  --co-bg: #080a0f;
  --co-bg-elevated: #0f131a;
  --co-surface: rgba(255, 255, 255, 0.045);
  --co-surface-hover: rgba(255, 255, 255, 0.07);
  --co-text: #f2f4f8;
  --co-text-muted: #9aa3b2;
  --co-border: rgba(255, 255, 255, 0.1);
  --co-gold: #d4a017;
  --co-gold-bright: #f0c94a;
  --co-gold-dim: rgba(212, 160, 23, 0.35);
  --co-gold-fill: linear-gradient(135deg, #f0c94a 0%, #d4a017 55%, #b8860b 100%);
  --co-on-gold: #0a0c0f;
  --co-navy: #141a22;
  --co-max: 1160px;
  --co-font: "Inter", system-ui, sans-serif;
  --co-display: "Sora", var(--co-font);
  --co-radius: 16px;
  --co-radius-lg: 24px;
  --co-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --co-glow: 0 0 80px rgba(212, 160, 23, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body.company-page {
  margin: 0;
  font-family: var(--co-font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--co-text);
  background: var(--co-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background */
.co-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.co-ambient-mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(212, 160, 23, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 12%, rgba(90, 120, 180, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(20, 26, 34, 0.9), transparent 60%);
  animation: co-mesh-drift 22s ease-in-out infinite alternate;
}

.co-ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black 0%, transparent 85%);
}

.co-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: co-orb-float 18s ease-in-out infinite;
}

.co-ambient-orb--1 {
  width: 320px;
  height: 320px;
  background: rgba(212, 160, 23, 0.2);
  top: 8%;
  right: -8%;
}

.co-ambient-orb--2 {
  width: 240px;
  height: 240px;
  background: rgba(60, 80, 120, 0.25);
  bottom: 30%;
  left: -6%;
  animation-delay: -6s;
}

@keyframes co-mesh-drift {
  to { transform: translate(2%, -1%) scale(1.02); }
}

@keyframes co-orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-12px, 18px); }
}

@media (prefers-reduced-motion: reduce) {
  .co-ambient-mesh,
  .co-ambient-orb {
    animation: none;
  }
}

/* —— Header —— */
.co-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}

.co-header.is-scrolled {
  background: rgba(8, 10, 15, 0.82);
  border-bottom-color: var(--co-border);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.co-header-inner {
  max-width: var(--co-max);
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.co-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--co-text);
}

.co-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--co-gold-fill);
  display: grid;
  place-items: center;
  font-family: var(--co-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--co-on-gold);
  box-shadow: 0 4px 20px var(--co-gold-dim);
}

.co-brand-text strong {
  display: block;
  font-family: var(--co-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.co-brand-text {
  min-width: 0;
}

.co-brand-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--co-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.25;
}

.co-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.co-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--co-text-muted);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.co-nav a:hover {
  color: var(--co-text);
  background: var(--co-surface);
}

.co-nav a.is-active {
  color: var(--co-on-gold);
  background: var(--co-gold-fill);
  font-weight: 600;
  box-shadow: 0 2px 12px var(--co-gold-dim);
}

.co-nav-cta {
  margin-left: 8px;
  padding: 10px 18px !important;
  background: transparent !important;
  color: var(--co-gold-bright) !important;
  font-weight: 600 !important;
  border: 1px solid var(--co-gold-dim);
  box-shadow: none;
}

.co-nav-cta:hover {
  background: var(--co-surface) !important;
  color: var(--co-text) !important;
  border-color: var(--co-gold-fill);
}

.co-nav-cta.is-active {
  background: transparent !important;
  color: var(--co-gold-bright) !important;
  box-shadow: none;
}

.co-menu-btn {
  display: none;
  border: 1px solid var(--co-border);
  background: var(--co-surface);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--co-text);
}

/* —— Layout —— */
.co-main {
  position: relative;
  z-index: 1;
  max-width: var(--co-max);
  margin: 0 auto;
  padding: 0 28px 80px;
}

/* —— Hero —— */
.co-hero {
  position: relative;
  padding: 120px 0 64px;
  min-height: min(92vh, 880px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.co-hero-content {
  padding-bottom: 0;
}

.co-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--co-on-gold);
  margin: 0 0 20px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 12, 15, 0.15);
  background: var(--co-gold-fill);
  box-shadow: 0 4px 20px var(--co-gold-dim);
}

.co-hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--co-on-gold);
  box-shadow: none;
}

.co-hero h1 {
  margin: 0 0 24px;
  font-family: var(--co-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
}

.co-hero h1 em {
  font-style: normal;
  color: var(--co-gold-bright);
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.co-hero-lead {
  margin: 0 0 32px;
  font-size: 1.125rem;
  color: var(--co-text-muted);
  max-width: 34rem;
  line-height: 1.75;
}

.co-hero-lead strong {
  color: var(--co-text);
  font-weight: 600;
}

.co-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.co-hero-visual {
  position: relative;
  border-radius: var(--co-radius-lg);
  overflow: hidden;
  aspect-ratio: 1731 / 909;
  width: 100%;
  max-height: min(420px, 42vw);
  align-self: center;
  justify-self: end;
  background: var(--co-navy);
  box-shadow: var(--co-shadow), var(--co-glow);
  border: 1px solid var(--co-border);
}

.co-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 8s ease-out;
}

.co-hero:hover .co-hero-visual img {
  transform: scale(1.02);
}

.co-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(8, 10, 15, 0.5) 70%,
    rgba(8, 10, 15, 0.92) 100%
  );
  pointer-events: none;
}

.co-hero-visual-cap {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  font-family: var(--co-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.co-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--co-border);
  border-radius: var(--co-radius);
  overflow: hidden;
  border: 1px solid var(--co-border);
  margin-bottom: 72px;
}

.co-stat {
  background: var(--co-bg-elevated);
  padding: 22px 24px;
  text-align: center;
}

.co-stat strong {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 8px;
  font-family: var(--co-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--co-on-gold);
  background: var(--co-gold-fill);
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 16px var(--co-gold-dim);
}

.co-stat span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--co-text-muted);
}

/* —— Reveal —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }

/* —— Sections —— */
.co-section {
  margin-bottom: 88px;
}

.co-section[id],
#top {
  scroll-margin-top: 88px;
}

.co-section-head {
  margin-bottom: 36px;
  max-width: 100%;
}

.co-section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--co-on-gold);
  background: var(--co-gold-fill);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
  box-shadow: 0 2px 12px var(--co-gold-dim);
}

.co-section h2 {
  margin: 0 0 12px;
  font-family: var(--co-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}

.co-section-intro {
  margin: 0;
  max-width: none;
  width: 100%;
  color: var(--co-text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Content below each 01–05 header — same pattern for all sections */
.co-section-body {
  margin-top: 0;
}

.co-section-body + .co-section-body {
  margin-top: 20px;
}

/* In-card subtitle (not a section label) */
.co-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8b4c4;
  margin: 0 0 10px;
}

/* —— Cards —— */
.co-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.co-card {
  position: relative;
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s, box-shadow 0.35s;
}

.co-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--co-gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.co-card:hover {
  border-color: var(--co-gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--co-glow);
}

.co-card:hover::before {
  opacity: 1;
}

.co-card h3 {
  margin: 0 0 12px;
  font-family: var(--co-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.co-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--co-text-muted);
  line-height: 1.65;
}

.co-why-grid .co-card {
  width: 100%;
}

.co-offerings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.co-offerings .co-card p {
  margin: 0 0 8px;
}

.co-offerings .co-card p:last-child {
  margin-bottom: 0;
}

.co-bento-item a {
  color: var(--co-gold-bright);
  font-weight: 600;
  text-decoration: none;
}

.co-bento-item a:hover {
  text-decoration: underline;
}

.co-list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--co-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.co-list li {
  margin-bottom: 10px;
}

.co-list li:last-child {
  margin-bottom: 0;
}

.co-list a {
  color: var(--co-gold-bright);
  text-decoration: none;
}

.co-list a:hover {
  text-decoration: underline;
}

.co-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: co-step;
}

.co-steps li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 14px;
  font-size: 0.9375rem;
  color: var(--co-text-muted);
  line-height: 1.65;
}

.co-steps li:last-child {
  margin-bottom: 0;
}

.co-steps li::before {
  counter-increment: co-step;
  content: counter(co-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: var(--co-gold-fill);
  color: var(--co-on-gold);
  font-family: var(--co-display);
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.co-steps a {
  color: var(--co-gold-bright);
}

.co-partner-block {
  margin-top: 0;
}

/* —— FAQ (inside contact section) —— */
.co-faq {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--co-border);
}

.co-faq-title {
  margin: 0 0 16px;
  font-family: var(--co-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}

.co-faq-item {
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius);
  background: var(--co-surface);
  margin-bottom: 10px;
  overflow: hidden;
}

.co-faq-item:last-child {
  margin-bottom: 0;
}

.co-faq-item summary {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.co-faq-item summary::-webkit-details-marker {
  display: none;
}

.co-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--co-gold-bright);
  font-weight: 700;
}

.co-faq-item[open] summary::after {
  content: "−";
}

.co-faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 0.9rem;
  color: var(--co-text-muted);
  line-height: 1.65;
}

.co-faq-item a {
  color: var(--co-gold-bright);
}

/* —— Services bento —— */
.co-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.co-bento-item {
  grid-column: span 6;
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius);
  padding: 28px 26px;
  transition: background 0.3s, border-color 0.3s, transform 0.35s;
}

.co-bento-item:hover {
  background: var(--co-surface-hover);
  border-color: var(--co-gold-dim);
  transform: translateY(-3px);
}

.co-bento-item:nth-child(1) { grid-column: span 7; }
.co-bento-item:nth-child(2) { grid-column: span 5; }
.co-bento-item:nth-child(3) { grid-column: span 5; }
.co-bento-item:nth-child(4) { grid-column: span 7; }

.co-bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--co-gold-fill);
  border: 1px solid rgba(10, 12, 15, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: var(--co-on-gold);
  margin-bottom: 16px;
  box-shadow: 0 4px 14px var(--co-gold-dim);
}

.co-bento-item h3 {
  margin: 0 0 8px;
  font-family: var(--co-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}

.co-bento-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--co-text-muted);
  line-height: 1.6;
}

/* —— Process strip —— */
.co-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 28px;
  border-radius: var(--co-radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--co-border);
}

.co-process-step {
  text-align: center;
  padding: 8px;
}

.co-process-step strong {
  display: block;
  font-family: var(--co-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.co-process-step span {
  font-size: 0.8125rem;
  color: var(--co-text-muted);
}

.co-process-arrow {
  display: none;
}

/* —— Production —— */
.co-production {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--co-radius-lg);
  overflow: hidden;
  border: 1px solid var(--co-border);
  box-shadow: var(--co-shadow);
}

.co-production-media {
  position: relative;
  min-height: 280px;
  background: var(--co-navy);
}

.co-production-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.co-production-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(8, 10, 15, 0.85) 100%);
}

.co-production-body {
  padding: 36px 32px;
  background: var(--co-bg-elevated);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.co-production-body h2 {
  margin: 0 0 12px;
  font-family: var(--co-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.co-production-body p {
  margin: 0 0 24px;
  font-size: 0.9375rem;
  color: #b8c2d0;
  line-height: 1.65;
}

.co-production-body a {
  color: #e8d48a;
  text-decoration: none;
}

.co-production-body a:hover {
  text-decoration: underline;
}

.co-production-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* —— Buttons —— */
.co-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform 0.2s, filter 0.2s, background 0.2s, border-color 0.2s;
}

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

.co-btn-primary {
  background: var(--co-gold-fill);
  color: var(--co-on-gold) !important;
  border-color: #b8860b;
  box-shadow: 0 8px 28px var(--co-gold-dim);
}

.co-btn-primary:hover {
  color: var(--co-on-gold) !important;
}

.co-btn-ghost {
  background: transparent;
  color: var(--co-text);
  border-color: var(--co-border);
}

.co-btn-ghost:hover {
  background: var(--co-surface);
  border-color: var(--co-gold-dim);
}

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

.co-btn-outline:hover {
  border-color: var(--co-gold);
  color: var(--co-gold-bright);
}

/* —— Contact (section body panel, matches process strip) —— */
.co-contact-panel {
  border-radius: var(--co-radius-lg);
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--co-border);
}

.co-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.co-contact-panel {
  overflow-x: hidden;
}

.co-contact-item {
  padding: 20px;
  border-radius: var(--co-radius);
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  transition: border-color 0.25s;
}

.co-contact-item:hover {
  border-color: var(--co-gold-dim);
}

.co-contact-item dt {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--co-gold-bright);
  margin: 0 0 10px;
}

.co-contact-item dd {
  margin: 0;
  font-size: 1rem;
}

.co-contact-item a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.co-contact-item a:hover {
  color: var(--co-gold-bright);
}

.co-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* —— Footer —— */
.co-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--co-border);
  background: rgba(8, 10, 15, 0.9);
  margin-top: 40px;
}

.co-footer-inner {
  max-width: var(--co-max);
  margin: 0 auto;
  padding: 40px 28px 48px;
}

.co-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.co-footer-brand strong {
  display: block;
  font-family: var(--co-display);
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 8px;
}

.co-footer-brand p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--co-text-muted);
  max-width: 300px;
}

.co-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.co-footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--co-text-muted);
  text-decoration: none;
}

.co-footer-links a:hover {
  color: var(--co-gold-bright);
}

.co-footer-legal {
  padding-top: 24px;
  border-top: 1px solid var(--co-border);
  font-size: 0.75rem;
  color: var(--co-text-muted);
}

.co-footer-legal a {
  color: var(--co-text-muted);
}

.co-footer-legal a:hover {
  color: var(--co-gold-bright);
}

/* —— Booking / inquiry forms —— */
.co-form-panel {
  border-radius: var(--co-radius-lg);
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--co-border);
}

.co-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.co-form-grid .co-field--full {
  grid-column: 1 / -1;
}

.co-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--co-gold-bright);
  margin-bottom: 8px;
}

.co-field input,
.co-field select,
.co-field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--co-text);
  background: rgba(8, 10, 15, 0.65);
  border: 1px solid var(--co-border);
  border-radius: 10px;
  padding: 12px 14px;
}

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

.co-field input:focus,
.co-field select:focus,
.co-field textarea:focus {
  outline: none;
  border-color: var(--co-gold-dim);
  box-shadow: 0 0 0 2px var(--co-gold-dim);
}

.co-field-hint {
  margin: 6px 0 0;
  font-size: 0.8125rem;
  color: var(--co-text-muted);
}

.co-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.co-form-actions {
  margin-top: 8px;
}

.co-form-status {
  margin-top: 14px;
  font-size: 0.9375rem;
  color: var(--co-text-muted);
}

.co-form-status--success {
  color: #8fd99a;
}

.co-form-status--error {
  color: #f0a0a0;
}

.co-package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.co-package-card {
  padding: 18px 20px;
  border-radius: var(--co-radius);
  background: var(--co-surface);
  border: 1px solid var(--co-border);
}

.co-package-card h3 {
  margin: 0 0 8px;
  font-family: var(--co-display);
  font-size: 1.05rem;
  color: #fff;
}

.co-package-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--co-text-muted);
  line-height: 1.55;
}

.co-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.co-example-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: var(--co-radius);
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.co-example-card:hover {
  border-color: var(--co-gold-dim);
  background: rgba(255, 255, 255, 0.04);
}

.co-example-card strong {
  font-family: var(--co-display);
  font-size: 1rem;
  color: #fff;
}

.co-example-card span {
  font-size: 0.8125rem;
  color: var(--co-text-muted);
  line-height: 1.5;
}

.co-legal-notice {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(212, 148, 10, 0.25);
  background: rgba(8, 10, 15, 0.55);
  margin-bottom: 12px;
}

.co-legal-notice p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--co-text-muted);
}

.co-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--co-text);
  cursor: pointer;
}

.co-check input {
  margin-top: 3px;
  flex-shrink: 0;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .co-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 100px;
    gap: 32px;
  }

  .co-hero-visual {
    max-height: 320px;
    aspect-ratio: 1731 / 909;
    justify-self: stretch;
  }

  .co-bento-item,
  .co-bento-item:nth-child(n) {
    grid-column: span 12;
  }

  .co-production {
    grid-template-columns: 1fr;
  }

  .co-production-media::after {
    background: linear-gradient(180deg, transparent 30%, rgba(8, 10, 15, 0.9) 100%);
  }

  .co-process {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .co-offerings {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .co-stats {
    grid-template-columns: 1fr;
  }

  .co-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 20px;
  }

  .co-stat strong {
    font-size: 1.35rem;
    margin-bottom: 0;
  }

  .co-stat span {
    max-width: 18rem;
    line-height: 1.35;
  }
}

@media (max-width: 768px) {
  .co-header-inner {
    height: 56px;
    padding: 0 16px;
    gap: 10px;
  }

  .co-brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .co-brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .co-brand-text strong {
    font-size: 1rem;
    line-height: 1.15;
  }

  .co-brand-text span {
    font-size: 0.56rem;
    letter-spacing: 0.07em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(56vw, 220px);
  }

  .co-main {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 64px;
  }

  .co-section[id],
  #top {
    scroll-margin-top: 64px;
  }

  .co-hero {
    padding-top: 88px;
    padding-bottom: 40px;
  }

  .co-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .co-hero-lead {
    font-size: 1rem;
  }

  .co-hero-eyebrow {
    font-size: 0.65rem;
    padding: 6px 12px;
    letter-spacing: 0.1em;
  }

  .co-stats {
    margin-bottom: 48px;
  }

  .co-menu-btn {
    display: block;
    flex-shrink: 0;
  }

  .co-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    background: rgba(8, 10, 15, 0.96);
    border-bottom: 1px solid var(--co-border);
    backdrop-filter: blur(16px);
  }

  .co-nav.is-open {
    display: flex;
  }

  .co-header {
    position: fixed;
  }

  .co-header.is-scrolled,
  .co-header {
    background: rgba(8, 10, 15, 0.9);
    border-bottom-color: var(--co-border);
  }

  .co-two-col,
  .co-contact-grid {
    grid-template-columns: 1fr;
  }

  .co-form-grid,
  .co-package-grid,
  .co-examples {
    grid-template-columns: 1fr;
  }

  .co-contact-panel,
  .co-form-panel {
    padding: 20px 16px;
  }

  .co-card {
    padding: 24px 20px;
  }

  .co-hero-actions {
    flex-direction: column;
  }

  .co-hero-actions .co-btn {
    width: 100%;
  }

  .co-faq-item summary {
    padding-right: 36px;
    line-height: 1.35;
  }

  .co-contact-item dd,
  .co-contact-item a {
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .co-brand-text span {
    max-width: 46vw;
    font-size: 0.5rem;
  }

  .co-stat strong {
    font-size: 1.2rem;
    padding: 5px 12px;
  }

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

  .co-footer-inner {
    padding: 32px 16px 40px;
  }
}
