/* =========================================
   UPTOME — ABOUT
   Typography inherits from common.css
========================================= */

.about-page {
  --about-ink: var(--navy);
  --about-paper-safe: var(--about-paper, #f4f0e7);
  --about-ivory-safe: var(--ivory, #f5f0e5);
  --about-sage-safe: var(--sage, #87937a);
  --about-red-safe: var(--red, #cf2f22);
  --about-muted: rgba(20, 36, 64, 0.64);
  --about-gutter: clamp(28px, 4.8vw, 78px);
  --about-section: clamp(112px, 9vw, 156px);
  --about-max: 1500px;

  overflow: clip;
  background: var(--about-paper-safe);
  color: var(--about-ink);
}

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

.about-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-shell {
  width: min(90%, var(--about-max));
  margin-inline: auto;
  padding-inline: var(--about-gutter);
}

.about-kicker,
.farm-section__label,
.press-card__meta,
.press-card__luxury-label {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pc-only { display: block; } @media (max-width: 768px) { .pc-only { display: none; } }
.mobile-only { display: none; } @media (max-width: 768px) { .mobile-only { display: block; } }


/* =========================================
   HEADER RHYTHM
========================================= */

.about-body .site-header {
  height: 76px;
}

.about-body .site-header--dark {
  min-height: 76px;
}


/* =========================================
   01. BRAND INTRO
========================================= */

.about-intro {
  padding: clamp(30px, 3vw, 50px) 0 clamp(96px, 8vw, 132px);
}

.about-intro__headline {
  padding-bottom: 0;
}

.about-intro h1 {
  max-width: 1240px;
  margin: 0 0 0 auto;
  font-size: clamp(64px, 7.2vw, 112px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.055em;
  text-align: center;
  color: black;
}


.about-intro__body{
  margin: 0;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.95;
  letter-spacing: -0.02em;
  text-align: center;
  margin-top: clamp(60px, 5vw, 80px);
}



.chef-section__text p,
.farm-section__body p {
  margin: 0;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.95;
  letter-spacing: -0.02em;
  text-align: center;
  margin-top: clamp(40px, 2.4vw, 50px);
}


.chef-section__text p + p {
  margin-top: 18px;
}


/* =========================================
   02. CHEF
========================================= */

.chef-section {
  display: grid;
  grid-template-columns: minmax(0, 53%) minmax(420px, 47%);
  min-height: clamp(720px, 56vw, 860px);
  background: var(--about-ink);
  color: #fff;
}

.chef-section__media {
  position: relative;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--about-paper-safe);
}

.chef-section__media img {
  object-position: center top;
  transform: scale(1.035);
  transform-origin: center center;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.chef-section__media:hover img {
  transform: scale(1.075);
}

.chef-section__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(70px, 7vw, 108px)
    clamp(48px, 5.5vw, 92px);
}

.chef-section__content h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 5.6vw, 90px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.052em;
}

.chef-name {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: clamp(34px, 3vw, 46px) 0 clamp(28px, 2.4vw, 38px);
}

.chef-name__role,
.chef-name__name {
  margin: 0;
}

.chef-name__role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chef-name__name {
  color: #fff;
  font-family: var(--serif-en);
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.chef-section__text {
  width: min(100%, 500px);
}

.chef-section__text p {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   03. FARM
========================================= */

.farm-section {
  padding-block: clamp(100px, 9vw, 150px);
  background: var(--about-sage-safe);
  color: var(--about-ivory-safe);
  
}

.farm-section__grid {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(0, 0.8fr);
  align-items: center; /* stretch → center */
  gap: clamp(64px, 7vw, 100px);
  
}

/* LEFT */
.farm-section__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(6px, 1vw, 18px);
}

.farm-section__heading {
  display: block;
}

.farm-section__heading h2 {
  max-width: 680px;
  margin: 0;
  color: var(--about-ivory-safe);
  font-family: "Bodoni Moda", serif;
  font-size: clamp(62px, 6.3vw, 104px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.farm-section__body {
  width: min(100%, 440px);
  margin-top: clamp(70px, 8vw, 130px);
}

.farm-section__body p {
  margin: 0;
  color: rgba(245, 240, 229, 0.82);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.9;
  letter-spacing: -0.02em;
  text-align: left;
}

/* RIGHT */
.farm-section__visual {
  width: 100%;
  max-width: 650px;   /* 사진 최대 크기 */
  justify-self: end;
}

.farm-section__image {
  width: 100%;
  height: 100%;
  min-height: 0;      /* 기존 큰 높이 제거 */
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
}

.farm-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;

  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.farm-section__image:hover img {
  transform: scale(1.025);
}

/* =========================================
   04. PRESS & FEATURES — DESKTOP FIX
========================================= */

.press-section {
  padding-block: var(--about-section);
  background: var(--about-paper-safe);
}

.press-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  align-items: end;
  gap: clamp(48px, 6vw, 96px);
}

.press-section__heading h2 {
  max-width: 1050px;
  margin: 0;
  color: var(--about-red-safe);
  font-size: clamp(50px, 7.5vw, 90px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.press-section__intro {
  max-width: 320px;
  margin: 0 0 8px;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: -0.02em;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(72px, 6vw, 104px) clamp(30px, 3vw, 48px);
  margin-top: clamp(40px, 5vw, 50px);
}

.press-card {
  min-width: 0;
  color: var(--about-ink);
  text-decoration: none;
}

.press-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d8d4cc;
}

.press-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(6, 18, 26, 0.02) 34%,
    rgba(6, 18, 26, 0.48) 100%
  );
  pointer-events: none;
}

.press-card__media img {
  object-position: center;
  transition: transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.press-card:hover .press-card__media img {
  transform: scale(1.035);
}

.press-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(12, 28, 49, 0.15);
  color: #fff;
  transform: translate(-50%, -50%);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.press-card__play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.press-card:hover .press-card__play {
  background: rgba(255, 255, 255, 0.94);
  color: var(--about-ink);
  transform: translate(-50%, -50%) scale(1.04);
}

.press-card__info {
  position: relative;
  padding: clamp(20px, 2.6vw, 25px) 2px 0;
}

.press-card__meta {
  color: var(--about-muted);
}

.press-card__info h3 {
  max-width: 620px;
  margin: 10px 0 0;
  font-size: clamp(30px, 3vw, 35px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.press-card__text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.press-card__text-link span {
  font-size: 15px;
  transition: transform 0.3s ease;
  line-height: 1.2;
}

.press-card:hover .press-card__text-link span {
  transform: translate(3px, -3px);
}

/* Luxury card is full-width and horizontal on desktop */
.press-card--luxury {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  min-height: clamp(440px, 34vw, 560px);
  overflow: hidden;
  background: var(--about-ink);
  color: #fff;
}

.press-card__luxury-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #172946;
}

.press-card__luxury-media img {
  object-position: center;
  transition: transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.press-card--luxury:hover .press-card__luxury-media img {
  transform: scale(1.035);
}

.press-card__luxury-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 36, 0.02) 44%,
    rgba(8, 20, 36, 0.54) 100%
  );
  pointer-events: none;
}

.press-card__luxury-label {
  position: absolute;
  right: clamp(24px, 2.8vw, 42px);
  bottom: clamp(24px, 2.8vw, 40px);
  left: clamp(24px, 2.8vw, 42px);
  z-index: 1;
  color: rgba(255, 255, 255, 0.8);
}

.press-card__luxury-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 5vw, 82px);
}

.press-card--luxury .press-card__meta {
  color: rgba(255, 255, 255, 0.58);
}

.press-card__luxury-content h3 {
  max-width: 520px;
  margin: 26px 0 0;
  font-size: clamp(38px, 3.6vw, 58px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.press-card__action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(46px, 4.8vw, 74px);
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.76);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.press-card__action span {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.press-card--luxury:hover .press-card__action span {
  transform: translateX(4px);
}


/* =========================================
   TABLET / SMALL DESKTOP
========================================= */

@media (max-width: 1180px) {
  .about-page {
    --about-gutter: 38px;
    --about-section: 118px;
  }

  .chef-section {
    grid-template-columns: minmax(0, 52%) minmax(390px, 48%);
    
  }

  .chef-section__content {
    padding-inline: 46px;

  }

  .chef-section__content h2 {
    font-size: clamp(52px, 5.4vw, 72px);
  }

  .farm-section__grid {
    grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
    gap: 54px;
  }

  .press-section__heading {
    grid-template-columns: 1fr minmax(240px, 0.4fr);
  }

  .press-card__info h3 {
    font-size: clamp(31px, 3.2vw, 40px);
  }

  .press-card--luxury {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.86fr);
  }
}


/* =========================================
   MOBILE / TABLET STACK
========================================= */

@media (max-width: 820px) {
  .about-page {
    --about-gutter: 22px;
    --about-section: 96px;
  }

  .about-body .site-header,
  .about-body .site-header--dark {
    height: 68px;
    min-height: 68px;
  }

  .about-intro {
    padding: 20px 0 50px;
  }

  .about-intro__headline {
    padding-bottom: 0;
  }

  .about-intro h1 {
    max-width: 100%;
    font-size: clamp(48px, 14.8vw, 68px);
    line-height: 0.94;
    text-align: left;
  }

  .about-intro__bottom {
    padding-top: 0px;
  }

  .about-intro__body {
    margin-top: 40px;
    text-align: left;
    font-size: 14px;
    line-height: 1.85;
    max-width: 680px;
    margin-inline: auto;
    
  }

  .chef-section__text p,
  .farm-section__body p {
    margin-top:20px;
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
  }

  .chef-section {
    display: flex;
    width: 100%;
    min-height: 0;
    flex-direction: column;
  }

  .chef-section__media {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
    aspect-ratio: 4 / 5;
  }

  .chef-section__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
    visibility: visible;
    transform: scale(1.025);
  }

  .chef-section__media:hover img {
    transform: scale(1.055);
  }

  .chef-section__content {
    padding: 80px 20px 80px ;
  }

  .chef-section__content h2 {
    font-size: clamp(48px, 14.8vw, 68px);
    line-height: 0.94;
  }

  .chef-name {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin: 30px 0 24px;
  }

  .chef-name__role {
    font-size: 11px;
  }

  .chef-name__name {
    font-size: 23px;
  }

  .chef-section__text {
    width: 100%;
  }

  .farm-section {
  padding: 64px 0 56px;
}

  .farm-section__grid {
  grid-template-columns: 1fr;
  gap: 30px;
  }

  .farm-section__copy {
    padding: 0;
  }

  .farm-section__heading h2 {
    max-width: 100%;
    font-size: clamp(48px, 14.8vw, 68px);
    line-height: 0.94;
    text-align: right;
  }

  .farm-section__body {
    width: 100%;
    margin-top: 10px;
  }

  .farm-section__body p {
    font-size: 14px;
    line-height: 1.85;
    text-align: right;
  }

  .farm-section__image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .press-section {
  padding: 64px 0 40px;
  }
  .press-section__heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .press-section__heading h2 {
    text-align: right;
  }

  .press-section__intro {
    max-width: 300px;
    margin: 0;
    font-size: 13px;
  }

  .press-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 42px;
  }

  .press-card__media {
    aspect-ratio: 4 / 3;
  }

  .press-card__play {
    width: 58px;
    height: 58px;
  }

  .press-card__play-icon {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }

  .press-card__info {
    padding-top: 15px;
  }

  .press-card__info h3 {
    font-size: clamp(20px, 7vw, 30px);
    line-height: 1.4;
  }

  .press-card__text-link {
    margin-top: 22px;
  }

  .press-card--luxury {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .press-card__luxury-media {
    aspect-ratio: 4 / 3;
  }

  .press-card__luxury-content {
    padding: 34px 24px 38px;
  }

  .press-card__luxury-content h3 {
    margin-top: 20px;
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .press-card__action {
    margin-top: 38px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {
  .about-page {
    --about-gutter: 20px;
    --about-section: 88px;
  }

  .about-intro h1,
  .chef-section__content h2,
  .farm-section__heading h2,
  .press-section__heading h2 {
    font-size: 48px;
  }

  .press-card__luxury-content {
    padding: 30px 20px 34px;
  }

  .press-card__luxury-content h3 {
    font-size: 29px;
  }
}


/* =========================================
   ACCESSIBILITY / MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {
  .chef-section__media img,
  .farm-section__image img,
  .press-card__media img,
  .press-card__play,
  .press-card__text-link span,
  .press-card__luxury-media img,
  .press-card__action span {
    transition: none;
  }

  .chef-section__media img,
  .chef-section__media:hover img {
    transform: scale(1.035);
  }

  .farm-section__image:hover img,
  .press-card:hover .press-card__media img,
  .press-card--luxury:hover .press-card__luxury-media img {
    transform: none;
  }

  .press-card:hover .press-card__play {
    transform: translate(-50%, -50%);
  }


  
  @media (max-width: 820px) {
    .chef-section__media img,
    .chef-section__media:hover img {
      transform: scale(1.025);
    }
  }

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}
  
}