/* === CONTAINER === */
.container {
  width: 100%;
  padding: 0 var(--container-pad);
}

/* === SECTION BASE === */
section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
  padding: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg-secondary);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 120px;
  padding-bottom: 200px;
}

.hero__left {
  flex: 1;
  min-width: 0;
}

.hero__right {
  flex-shrink: 0;
  padding-left: 40px;
  align-self: flex-end;
  padding-bottom: 8px;
}

.hero h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
  color: var(--text-primary);
}

.hero__sub {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.hero__sub p {
  font-size: 16px;
  color: var(--text-subtle);
  max-width: 280px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__agency-label {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  text-align: right;
  line-height: 1.2;
}

.hero__plus-bar {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  place-items: center;
  pointer-events: none;
}

.plus {
  color: rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 300;
}

.hero__giant-logo {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 700;
  color: var(--accent);
  opacity: 0.08;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
  letter-spacing: -0.03em;
}

.hero__giant-logo sup {
  font-size: 0.3em;
  vertical-align: super;
}

/* === INTRO === */
.intro {
  background: var(--bg-primary);
  padding: var(--section-pad) 0;
}

.intro__content {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro__heading {
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  text-align: center;
}

.intro__line {
  display: block;
}

.intro__img {
  position: absolute;
  width: clamp(150px, 20vw, 300px);
  border-radius: 8px;
  overflow: hidden;
}

.intro__img--left {
  left: 0;
  top: 10%;
}

.intro__img--right {
  right: 0;
  bottom: 10%;
}

.intro__img img {
  width: 100%;
  height: auto;
  display: block;
}

.intro__video {
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
}

.intro__video video {
  width: 100%;
  display: block;
}

/* === SCROLLING IMAGES === */
.scroll-images {
  overflow: hidden;
  padding: 40px 0;
  background: var(--bg-primary);
}

.scroll-img {
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0 8px;
}

.scroll-img--tall { width: 260px; height: 380px; }
.scroll-img--short { width: 260px; height: 300px; }

/* === PROJECTS === */
.projects {
  padding: 0;
  background: var(--bg-primary);
}

.project-card {
  display: block;
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
}

.project-card__bg {
  position: absolute;
  inset: 0;
}

.project-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card__bg img {
  transform: scale(1.03);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.project-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px var(--container-pad);
  display: flex;
  align-items: flex-end;
  gap: 24px;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.project-card__name {
  font-size: var(--project-title-size);
  font-weight: var(--project-title-weight);
  line-height: 1.1;
  color: var(--text-primary);
}

.project-card__role {
  font-size: 14px;
  color: var(--text-subtle);
  display: block;
  margin-top: 4px;
}

.project-card__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.project-card__client {
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.project-card__visit {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-card__visit {
  opacity: 1;
}

/* === ACHIEVEMENTS === */
.achievements {
  background: var(--bg-secondary);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.stat-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
}

.stat-card__label {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.stat-card__num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.logo-ticker {
  overflow: hidden;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.ticker-logo {
  height: 32px;
  width: auto;
  margin: 0 40px;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.ticker-logo:hover {
  opacity: 1;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding-top: 220px;
  padding-bottom: 120px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.page-hero__label {
  font-size: var(--label-size);
  font-weight: var(--label-weight);
  text-transform: var(--label-transform);
  letter-spacing: var(--label-spacing);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.page-hero__title {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
  color: var(--text-primary);
  margin-bottom: 32px;
}

.page-hero__sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.page-hero__meta {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.page-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-hero__meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.page-hero__meta-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

/* === ABOUT PAGE === */
.about-mission {
  background: var(--bg-primary);
}

.about-mission__text {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 760px;
}

.about-mission__text em {
  font-style: italic;
  color: var(--text-muted);
}

.about-values {
  background: var(--bg-secondary);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px;
}

.value-card__num {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card__img {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 20px;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.team-card__role {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.team-card__bio {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* === SERVICES PAGE === */
.services-detail {
  background: var(--bg-primary);
}

.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

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

.service-detail-block__left {
  position: sticky;
  top: 100px;
}

.service-detail-block__num {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.service-detail-block__left h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.2;
}

.service-detail-block__right p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-feature {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
}

.service-feature h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Process section */
.process-section {
  background: var(--bg-secondary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.process-step {
  padding: 32px;
  border-left: 1px solid var(--border);
}

.process-step:first-child {
  border-left: none;
  padding-left: 0;
}

.process-step__num {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-disabled);
  display: block;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === WORK PAGE === */
.work-page {
  background: var(--bg-primary);
  padding: 0;
}

.work-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.work-page .project-card {
  height: 60vh;
}

/* === CONTACT PAGE === */
.contact-page {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.contact-detail__value {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-detail__value:hover {
  opacity: 0.7;
}

/* Contact form */
.contact-form-wrap {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 48px;
}

.contact-form-wrap h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text-primary);
  font-size: 16px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--border-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A91' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

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

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* === JOURNAL PAGE === */
.journal-page {
  background: var(--bg-primary);
}

.journal-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* === CASE STUDY PAGE === */
.case-hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--bg-secondary);
}

.case-hero__bg {
  position: absolute;
  inset: 0;
}

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

.case-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.75) 100%);
}

.case-hero__content {
  position: relative;
  z-index: 1;
  padding: 60px;
  width: 100%;
}

.case-hero__role {
  font-size: var(--label-size);
  text-transform: var(--label-transform);
  letter-spacing: var(--label-spacing);
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.case-hero__title {
  font-size: var(--project-title-size);
  font-weight: var(--project-title-weight);
  line-height: 1.1;
  color: var(--text-primary);
}

.case-overview {
  background: var(--bg-secondary);
}

.case-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.case-overview__item {
  padding: 40px;
  border-left: 1px solid var(--border);
}

.case-overview__item:first-child {
  border-left: none;
  padding-left: 0;
}

.case-overview__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.case-overview__value {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}

.case-body {
  background: var(--bg-primary);
}

.case-body__inner {
  max-width: 760px;
}

.case-body h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  color: var(--text-primary);
  margin: 60px 0 24px;
}

.case-body h2:first-child {
  margin-top: 0;
}

.case-body p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.case-body__image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 48px 0;
}

.case-body__image img {
  width: 100%;
  display: block;
}

.case-results {
  background: var(--bg-secondary);
}

.case-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.case-next {
  background: var(--bg-primary);
  text-align: center;
}

.case-next__link {
  display: block;
  text-decoration: none;
  color: var(--text-primary);
  padding: 60px;
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.case-next__link:hover {
  border-color: var(--border-light);
  background: var(--bg-card);
}

.case-next__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.case-next__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
}

/* === LEGAL PAGES === */
.legal-page {
  background: var(--bg-primary);
}

.legal-page__content {
  max-width: 760px;
}

.legal-page h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 48px 0 16px;
}

.legal-page h2:first-child {
  margin-top: 0;
}

.legal-page p,
.legal-page li {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.legal-page ul li {
  list-style: disc;
}

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

.legal-page a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Text-based ticker fallback (used instead of SVG logos) */
.ticker-logo-text {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  white-space: nowrap;
  margin: 0 40px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.ticker-logo-text:hover {
  color: var(--text-primary);
}

/* === PLACEHOLDER IMAGE STYLES (until real assets arrive) === */
.hero__video + .hero__overlay,
.scroll-img,
.project-card__bg img,
.intro__img img,
.bento__card--img img,
.journal-card img,
.testimonials__featured img,
.test-card__author img,
.faq__photo img {
  background: var(--bg-card);
}

/* === SERVICES === */
.services {
  background: var(--bg-secondary);
}

.services__header {
  margin-bottom: 60px;
  text-align: center;
}

.services__header h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.services__header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.dot-enlarge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  padding: 60px 0;
  align-items: start;
}

.service-block__num {
  font-size: var(--service-num-size);
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.service-block__col1 h3 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--text-primary);
}

.service-block__col2 p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  border-left: 1px solid var(--border-light);
  padding-left: 24px;
}

.service-block__col3 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.service-block__col3 span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.service-divider {
  height: 1px;
  background: var(--border);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-divider .dot {
  position: absolute;
}

.services__cta {
  display: flex;
  gap: 16px;
  margin-top: 60px;
  justify-content: center;
}

/* === BENEFITS === */
.benefits {
  background: var(--bg-primary);
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento__card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.bento__card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 12px 0 8px;
}

.bento__card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 8px 0 6px;
}

.bento__card p {
  font-size: 15px;
  color: var(--text-muted);
}

.bento__card--wide {
  grid-column: span 2;
}

.bento__card--img {
  padding: 0;
}

.bento__card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  min-height: 250px;
}

.bento__card--accent {
  background: var(--bg-elevated);
}

.bento__tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-block;
}

.bento__product-img {
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
}

.bento__stat-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-top: 8px;
}

.bento__stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.bento__process-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.bento__process-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.bento__circles {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.bento__circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: block;
}

.bento__circle--md {
  width: 36px;
  height: 36px;
}

.bento__circle--lg {
  width: 48px;
  height: 48px;
}

.bento__stars {
  color: var(--accent);
  font-size: 18px;
  margin: 8px 0;
}

.bento__uptime {
  font-size: 13px;
  color: var(--green-highlight);
  font-weight: 500;
}

/* === ENGAGEMENT === */
.engagement {
  background: var(--bg-secondary);
}

.engagement__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.engagement__card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.engagement__card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.engagement__card p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.engagement__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}

.engagement__card li {
  font-size: 15px;
  color: var(--text-subtle);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.engagement__card li::before {
  content: "→ ";
  color: var(--accent);
}

.engagement__card .btn {
  margin-top: 32px;
  align-self: flex-start;
}

.engagement__card--featured {
  border: 1px solid var(--border-light);
  background: var(--bg-elevated);
}

.engagement__badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 16px;
  align-self: flex-start;
}

/* === FAQ === */
.faq {
  background: var(--bg-primary);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.faq__photo img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
}

.faq__photo p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
}

.faq-item summary span:first-child {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-icon {
  font-size: 24px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--bg-secondary);
}

.testimonials__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.testimonials__featured img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.testimonials__featured-info {
  margin-top: 16px;
}

.testimonials__featured-info strong {
  font-size: 20px;
  color: var(--text-primary);
  display: block;
}

.testimonials__featured-info span {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonials__ticker-wrap {
  overflow-x: auto;
  scrollbar-width: none;
}

.testimonials__ticker-wrap::-webkit-scrollbar {
  display: none;
}

.testimonials__ticker {
  display: flex;
  gap: 16px;
}

.test-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  min-width: 320px;
  flex-shrink: 0;
}

.test-card__quote {
  font-size: 48px;
  color: var(--text-disabled);
  line-height: 1;
  display: block;
}

.test-card__msg {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 12px 0 24px;
}

.test-card__author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.test-card__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.test-card__author strong {
  font-size: 14px;
  color: var(--text-primary);
  display: block;
}

.test-card__author span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

/* === JOURNAL === */
.journal {
  background: var(--bg-primary);
}

.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.journal-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 3/4;
}

.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-card:hover img {
  transform: scale(1.05);
}

.journal-card__fader {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85) 100%);
}

.journal-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: var(--text-primary);
}

.journal-card__date {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

.journal-card__author {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.journal-card__content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.journal-card__content p {
  font-size: 14px;
  color: var(--text-subtle);
}

/* === CTA BAND === */
.cta-band {
  background: var(--bg-secondary);
  text-align: center;
}

.cta-band h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  color: var(--text-primary);
}

.cta-band p {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 16px;
}

.cta-band__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-band__partners {
  margin-top: 80px;
}

.cta-band__partners > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.cta-band__logos {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-band__logos img {
  height: 28px;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.cta-band__logos img:hover {
  opacity: 0.8;
}

/* === FOOTER === */
.footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(255, 110, 30, 0.18) 0%, rgba(255, 60, 0, 0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__wordmark {
  display: block;
  margin: 0 auto 60px;
  height: 40px;
  width: auto;
  mix-blend-mode: screen;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer__location {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__location p {
  font-size: 16px;
  color: var(--text-muted);
}

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

.footer__time {
  text-align: right;
}

.footer__clock {
  font-size: 32px;
  font-weight: 300;
  color: var(--text-primary);
  display: block;
  font-variant-numeric: tabular-nums;
}

.footer__tz {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
}

.footer__mid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 40px;
  padding: 40px 0;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__menu a {
  font-size: 16px;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__menu a:hover {
  color: var(--text-primary);
}

.footer__newsletter h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer__newsletter p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 999px 0 0 999px;
  padding: 12px 20px;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  font-family: var(--font);
  transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
  border-color: var(--border-light);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: 0 999px 999px 0;
  padding: 12px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--accent-hover);
}

.footer__social {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer__social a {
  font-size: 15px;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer__social a:hover {
  color: var(--text-primary);
}

.arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer__social a:hover .arrow {
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer__address {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__address strong {
  color: var(--text-subtle);
  display: block;
  margin-bottom: 2px;
}

.footer__address span {
  display: block;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__lang {
  display: flex;
  gap: 8px;
}

.footer__lang a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.footer__lang a.active {
  color: var(--text-primary);
}

.scroll-top {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.scroll-top:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}


/* ─────────────────────────────────────────────
   PORTFOLIO GRID (work.html)
───────────────────────────────────────────── */
.portfolio-section {
  padding: 0 0 var(--section-pad);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.portfolio-item--wide {
  grid-column: 1 / -1;
}

.portfolio-item {
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio-item__img {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.portfolio-item--wide .portfolio-item__img {
  aspect-ratio: 21 / 9;
}

.portfolio-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.03);
}

.portfolio-item:hover .portfolio-item__img img {
  transform: scale(1.08);
}

.portfolio-item__meta {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.portfolio-item__top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.portfolio-item__num {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  opacity: 0.5;
}

.portfolio-item__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
}

.portfolio-item__body {
  flex: 1;
}

.portfolio-item__title {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.portfolio-item__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
}

.portfolio-item__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.portfolio-item__client {
  font-size: 13px;
  color: var(--text-subtle);
  font-weight: 500;
}

.portfolio-item__year {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item--wide {
    grid-column: 1;
  }
  .portfolio-item--wide .portfolio-item__img {
    aspect-ratio: 16 / 9;
  }
  .portfolio-item__meta {
    padding: 20px 20px 24px;
  }
}
