/* ========== HOME ========== */
.hero-home {
  position: relative;
  min-height: 810px;
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--color-black);
}
.hero-home__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-home__title {
  position: relative;
  z-index: 1;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 1;
  color: #f2eee7;
}
.hero-home__title-accent { color: var(--color-accent); }

.home-experience {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 102px 0;
}
.home-experience__title {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  text-align: right;
  color: var(--color-text);
}

.home-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--color-black);
}
.home-service {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-service__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-service__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}
.home-service__title {
  position: relative;
  z-index: 2;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  color: var(--color-cream);
  text-align: center;
}

.home-card {
  position: relative;
  min-height: 810px;
  display: flex;
  align-items: center;
  background: var(--color-cream);
}
.home-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-card__title {
  position: relative;
  z-index: 1;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  color: var(--color-text);
}

.home-contact {
  background: var(--color-black);
  color: var(--color-cream);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 82px 0;
}
.home-contact__label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.home-contact__email {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-cream);
}
.home-contact__domain {
  color: var(--color-accent);
}

/* ========== ABOUT ========== */
.about-hero {
  background: #050505;
  color: #f7f2ea;
  min-height: 850px;
  padding: 160px 0 80px;
  display: flex;
  align-items: flex-start;
}
.about-hero__stage {
  position: relative;
  width: min(1280px, calc(100% - (var(--side) * 2)));
  margin: 0 auto;
  min-height: 610px;
}
/* Figma: left text x=80→0 in stage, w=715/1280 */
.about-hero__bg-text {
  position: absolute;
  left: 0;
  top: 5px;
  width: 55.859375%; /* 715 / 1280 */
  margin: 0;
  font-size: clamp(80px, 17.36vw, 250px);
  line-height: 0.8; /* 200 / 250 */
  letter-spacing: -0.01em;
  color: rgba(247, 242, 234, 0.2);
}
.about-hero__accent {
  color: var(--color-accent);
}
.about-hero__right {
  position: absolute;
  left: 62.109375%; /* 795 / 1280 */
  top: 196px;
  width: 44.140625%; /* 565 / 1280 */
  max-width: 565px;
}
.about-hero__bar {
  display: block;
  width: 84px;
  height: 3px;
  background: #ff0090;
  margin: 0 0 22px; /* text starts 25px below bar top */
}
.about-hero__title {
  margin: 0;
  max-width: 437px;
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.333;
  color: #f7f2ea;
}

.about-overview-section {
  background: #f7f2ea;
  height: 480px;
}
/* Figma body1: full 1440 split into 720 | 720 */
.about-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(1440px, 100%);
  height: 100%;
  margin: 0 auto;
}
.about-overview__left {
  display: flex;
  align-items: flex-start;
  padding: 80px 0 0 clamp(24px, 5.556vw, 80px);
}
.about-overview__right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 112px clamp(24px, 5.556vw, 80px) 0;
}
.about-overview__content {
  width: 100%;
  max-width: 560px;
  text-align: right;
}
.about-overview__title {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.045;
  letter-spacing: 0.01em;
  color: #161616;
  margin: 0 0 40px;
}
.about-overview__desc {
  font-size: 20px;
  font-weight: 400;
  color: #161616;
  opacity: 0.6;
  line-height: 1.6;
  margin: 0;
}

.about-identity {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 930px;
}
.about-identity__detail {
  position: relative;
  margin-top: 20px;
  min-height: 729px;
  display: flex;
  flex-direction: column;
}
.identity-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 99px;
  width: 100%;
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}
.identity-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  /* Figma: 80px inset each side inside 1280 */
  margin: 263px 80px 0;
  text-align: center;
}
.identity-item {
  text-align: center;
  padding: 29px 0 0;
}
.identity-item__title {
  font-size: 96px;
  line-height: 1.2;
  color: #f7f2ea;
  margin: 0;
}
.identity-item__desc {
  font-size: 24px;
  line-height: 1.193;
  color: #f7f2ea;
  margin: 0;
}
.identity-summary {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.19;
  color: #f7f2ea;
  opacity: 0.6;
  margin: 263px 0 0;
}

.about-mark { padding: 80px 0 100px; }
.logo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}
.logo-box {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

/* ========== BUSINESS ========== */
.business-hero {
  background: var(--color-black);
  color: var(--color-cream);
  padding: 160px 0 100px;
  min-height: 820px;
}
.business-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 80px;
}
.business-hero__title {
  font-family: "Pretendard", sans-serif;
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.28;
  color: var(--color-cream);
  margin-bottom: 48px; /* Figma: text frame at y=212, title h=164 → gap 48 */
}
.business-hero__desc-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px; /* Figma: vector h=3, text at y=35 → ~32px */
}
.business-hero__bar {
  display: block;
  width: 78px;
  height: 3px;
  background: var(--color-accent);
}
.business-hero__desc {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--color-cream);
  margin: 0;
}
.business-hero__visual {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.business-services { padding: 80px 0 40px; }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(22, 22, 22, 0.2);
}
.service-block:last-of-type {
  border-bottom: none;
  padding-bottom: 80px;
}
.service-block__no {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 20px;
}
.service-block__logo {
  display: block;
  width: auto;
  max-width: 280px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
}
.service-block__title {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: 16px;
}
.service-block__subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 32px;
}
.service-block__image-wrap {
  position: relative;
  container-type: inline-size;
}
.service-block__image {
  display: block;
  width: 100%;
  aspect-ratio: 560 / 420;
  object-fit: cover;
}
/* Figma: image 560×420, CARD FUNCTIONS at (379, 243.246) · 12px */
.service-block__caption {
  position: absolute;
  left: calc(379 / 560 * 100%);
  top: calc(243.246 / 420 * 100%);
  font-size: calc(12 / 560 * 100cqw);
  line-height: calc(14 / 12);
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

/* ========== KEYN ========== */
/* Figma hero 1440×820: left @y160, label→title 80px, title→bar 48px, bar 78×3, bar→desc 32px */
.keyn-hero {
  background: #050505;
  color: #f7f2ea;
  padding: 160px 0 80px;
  min-height: 820px;
  box-sizing: border-box;
}
.keyn-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  min-height: 580px;
}
.keyn-hero__content {
  max-width: 640px;
  padding-right: 40px;
}
.keyn-hero__title {
  font-size: clamp(56px, 7vw, 100px);
  line-height: 1;
  margin: 80px 0 48px;
  color: #f7f2ea;
}
.keyn-hero__desc-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px; /* Figma: vector h=3, text at y=35 */
}
.keyn-hero__bar {
  display: block;
  width: 78px;
  height: 3px;
  background: #ff0090;
}
.keyn-hero__desc {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.545; /* 34 / 22 */
  letter-spacing: -0.01em;
  color: #f7f2ea;
}
.keyn-hero__visual {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 400 / 592;
  object-fit: cover;
}

/* Figma body1 1440×580: detail 1280×420 @y80 — left logo+tagline, right QR+store */
.keyn-download-section {
  padding: 80px 0;
}
.keyn-download {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  min-height: 420px;
}
.keyn-download__left {
  display: flex;
  flex-direction: column;
  max-width: 640px;
}
/* Frame 640×360 @y60 — graphic (70,75.5) 500×155, tagline (132.5,250.5) */
.keyn-download__visual {
  position: relative;
  margin-top: 40px; /* 60 - 20 label */
  width: 100%;
  aspect-ratio: 640 / 360;
  container-type: inline-size;
}
.keyn-download__graphic {
  position: absolute;
  left: calc(70 / 640 * 100%);
  top: calc(75.5 / 360 * 100%);
  width: calc(500 / 640 * 100%);
  height: auto;
  display: block;
}
.keyn-download__tagline {
  position: absolute;
  left: 50%;
  top: calc(250.5 / 360 * 100%);
  transform: translateX(-50%);
  margin: 0;
  width: max-content;
  max-width: 100%;
  font-size: clamp(14px, calc(22 / 640 * 100cqw), 22px);
  font-weight: 600;
  line-height: 1.545;
  letter-spacing: -0.01em;
  color: rgba(22, 22, 22, 0.5);
  text-align: center;
  white-space: nowrap;
}
.keyn-download__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  min-height: 420px;
  box-sizing: border-box;
}
.keyn-download__scan-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 280px;
}
.keyn-download__scan {
  margin: 0;
  width: 100%;
  height: 34px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 34px;
  color: #505050;
}
.keyn-download__qr {
  width: 200px;
  height: 206px;
  object-fit: contain;
  display: block;
}
.store-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px; /* CTA @y360 after scan block end 340 */
}
.store-btn {
  display: block;
  width: 218px;
  height: 60px;
  padding: 0;
  background: none;
  border-radius: 0;
}
.store-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.keyn-features { padding: 80px 0; }
.features-header {
  text-align: center;
  padding: 40px 0 20px;
}
.features-header__title {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  color: var(--color-cream);
}
.features-header__desc {
  font-size: 22px;
  color: var(--color-cream);
  opacity: 0.8;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border-top: 1px solid rgba(247, 242, 234, 0.12);
}
.feature-card {
  padding: 48px 20px;
  text-align: center;
  border-right: 1px solid rgba(247, 242, 234, 0.12);
}
.feature-card:last-child { border-right: none; }
.feature-card__no {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  text-align: left;
  margin-bottom: 24px;
}
.feature-card__icon {
  width: 72px;
  height: 50px;
  margin: 0 auto 24px;
  object-fit: contain;
}
.feature-card__title {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--color-cream);
}
.feature-card__desc {
  font-size: 14px;
  color: var(--color-cream);
  opacity: 0.6;
}

.card-collection {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 60px;
}
.card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card-item__media {
  width: 78.75%;
  aspect-ratio: 189 / 300;
  margin-bottom: 16px;
}
.card-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-item__soon {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(22, 22, 22, 0.2);
  border-radius: 20px;
  display: grid;
  place-items: center;
}
.card-item__soon span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(22, 22, 22, 0.5);
  text-transform: lowercase;
}
.card-item__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
.card-item__meta {
  font-size: 13px;
  color: var(--color-text);
  opacity: 0.5;
  margin-top: 8px;
}
/* ========== PORTFOLIO ========== */
/* Figma hero 1440×690: content @y160, label→title 80px, title→bar 48px, bar 78×3, bar→desc 32px */
.portfolio-hero {
  position: relative;
  min-height: 690px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 160px 0 80px;
  color: #f7f2ea;
  background: #050505;
}
.portfolio-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-hero__content { position: relative; z-index: 1; }
.portfolio-hero__title {
  font-size: clamp(56px, 7vw, 100px);
  line-height: 1;
  margin: 80px 0 48px;
  color: #f7f2ea;
}
.portfolio-hero__desc-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.portfolio-hero__bar {
  display: block;
  width: 78px;
  height: 3px;
  background: #ff0090;
}
.portfolio-hero__desc {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.545;
  letter-spacing: -0.01em;
  color: #f7f2ea;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}
.poster-card__image {
  width: 100%;
  aspect-ratio: 400 / 566;
  object-fit: cover;
  margin-bottom: 20px;
}
.poster-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}
.poster-card__meta {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 16px;
}
.poster-card__lineup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.poster-card__bar {
  display: block;
  width: 78px;
  height: 2px;
  background: #ff0090;
  margin-bottom: 10px; /* Figma: Artist text @y13 after bar h=3 */
}
.poster-card__artist-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
  margin: 0 0 5px;
}
.poster-card__artist {
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

.history-list { padding: 20px 0 40px; }
.history-list__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 24px;
}
.history-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 56px;
  padding: 10px 0;
  align-items: baseline;
}
.history-item__year {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-cream);
}
.history-item__title {
  font-size: 17px;
  color: var(--color-muted);
}
/* Figma line frame: left bar · text · 12px dot · right bar */
.history-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 40px 37.5px; /* Figma: lines inset ~37.5 within 1280 */
  margin: 0;
}
.history-divider__line {
  flex: 1 1 auto;
  min-width: 0;
  height: 1px;
  background: #ff0090;
}
.history-divider__label {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #ff0090;
  white-space: nowrap;
}
.history-divider__dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff0090;
}

/* ========== CONTACT ========== */
/* Figma hero 1440×560: @y160, label→title 80px, title→bar 40px, bar 78×3, bar→desc 32px */
.contact-hero {
  background: #050505;
  color: #f7f2ea;
  padding: 160px 0 80px;
  min-height: 560px;
  box-sizing: border-box;
}
.contact-hero__title {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  margin: 80px 0 40px;
  color: #f7f2ea;
}
.contact-hero__desc-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.contact-hero__bar {
  display: block;
  width: 78px;
  height: 3px;
  background: #ff0090;
}
.contact-hero__desc {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.545;
  letter-spacing: -0.01em;
  color: #f7f2ea;
}

.contact-body { padding: 80px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 124px; /* right starts at 624 */
  margin: 40px 0 0;
  align-items: start;
}
.contact-email-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 258px;
}
.contact-email {
  display: block;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: #161616;
  margin: 0 0 40px;
}
.contact-note-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 33px; /* Figma: bar h=3, text @y36 */
}
.contact-note__bar {
  display: block;
  width: 78px;
  height: 3px;
  background: #ff0090;
}
.contact-note {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #161616;
}

.email-guide__title {
  margin: 0 0 29px;
  font-size: 13px;
  font-weight: 700;
  color: #161616;
}
/* Figma Send_Guide: horizontal rules @ y45 / 116 / 187 / 258 */
.email-guide__table {
  border-top: 1px solid rgba(22, 22, 22, 0.2);
}
.email-guide__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(22, 22, 22, 0.2);
  box-sizing: border-box;
  min-height: 71px;
}
.guide-item {
  display: flex;
  gap: 20px; /* no @0, label @58 → ~38–40; Figma 58-18≈40 */
  align-items: center;
}
.guide-item__no {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #ff0090;
  min-width: 24px;
}
.guide-item__text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #161616;
}

/* Divider Vector 2168:639 above company info */
.company-info {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(22, 22, 22, 0.2);
}
.company-info__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 80px; /* title @2478, fields @2578 */
  color: #161616;
}
.company-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.company-info__label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.5;
  margin: 0 0 14px;
  color: #161616;
}
.company-info__value {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #161616;
}
.company-info__value a {
  color: inherit;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .home-services,
  .about-overview,
  .identity-grid,
  .logo-row,
  .business-hero__grid,
  .service-block,
  .keyn-hero__inner,
  .keyn-download,
  .features-grid,
  .card-collection,
  .poster-grid,
  .contact-grid,
  .company-info__grid,
  .email-guide__row {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 120px 0 64px;
    min-height: 0;
  }
  .about-hero__stage {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .about-hero__bg-text,
  .about-hero__right {
    position: static;
    width: 100%;
    max-width: none;
    top: auto;
    left: auto;
  }
  .about-hero__title { max-width: none; }
  .identity-item:nth-child(1),
  .identity-item:nth-child(2),
  .identity-item:nth-child(3) { text-align: center; }
  .about-identity {
    min-height: 0;
    padding: 64px 0 80px;
  }
  .about-identity__detail {
    min-height: 0;
  }
  .identity-wave {
    top: 40px;
  }
  .identity-grid {
    margin: 80px 0 0;
    gap: 48px;
  }
  .identity-item__title {
    font-size: clamp(56px, 12vw, 96px);
  }
  .identity-item__desc {
    font-size: clamp(18px, 4vw, 24px);
  }
  .identity-summary {
    margin-top: 80px;
  }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .card-collection { grid-template-columns: repeat(2, 1fr); }
  .about-overview-section {
    height: auto;
    min-height: 0;
    padding: 64px 0;
  }
  .about-overview__left {
    padding: 0 clamp(24px, 5.556vw, 80px);
  }
  .about-overview__right {
    justify-content: flex-start;
    padding: 24px clamp(24px, 5.556vw, 80px) 0;
  }
  .about-overview__content {
    max-width: none;
    text-align: left;
  }
  .home-experience__title { text-align: left; }
  .service-block:nth-child(even) .service-block__image-wrap { order: -1; }
  .contact-grid { gap: 48px; }
  .feature-card:nth-child(2n) { border-right: none; }
}

@media (max-width: 640px) {
  .features-grid,
  .card-collection { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid rgba(247, 242, 234, 0.12); }
}
