/* ==========================================
   reno/base.css
   新デザイン系ページ 共通コンポーネント
   ========================================== */

/* ------------------------------------------
   変数
   ------------------------------------------ */
:root {
  --reno-max: 1440px;
  --reno-pv:  clamp(48px, 8vw, 120px);
  --reno-ph:  clamp(16px, 4vw, 80px);
  --reno-text: #333333;
}

/* ------------------------------------------
   ページ内リセット
   ------------------------------------------ */
.reno-page {
  background: var(--reno-bg);
  color: var(--reno-text);
  font-family: 'Noto Sans JP', sans-serif;
}

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

.reno-page h1, .reno-page h2, .reno-page h3,
.reno-page p,
.reno-page dl, .reno-page dt, .reno-page dd,
.reno-page figure { margin: 0; padding: 0; }

.reno-page a { text-decoration: none; color: inherit; }

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

/* ------------------------------------------
   ボタン
   ------------------------------------------ */
.reno-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}

.reno-btn--fill {
  background: var(--reno-btn);
  color: #fff;
  border-color: var(--reno-btn);
}
.reno-btn--fill:hover {
  background: var(--reno-brown);
  border-color: var(--reno-brown);
  color: #fff;
}

.reno-btn--outline {
  background: transparent;
  color: var(--reno-btn);
  border-color: var(--reno-btn);
}
.reno-btn--outline:hover {
  background: var(--reno-btn);
  color: #fff;
}

/* ------------------------------------------
   タイポグラフィ
   ------------------------------------------ */
.reno-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--reno-gold);
}

.reno-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--reno-brown);
  line-height: 1.6;
}

.reno-lead {
  font-size: 13px;
  color: #777;
  line-height: 1.9;
}

.reno-tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 12px;
  background: var(--reno-tag-bg);
  color: var(--reno-tag-text);
  border-radius: 2px;
}

/* ------------------------------------------
   セクション共通
   ------------------------------------------ */
.reno-section {
  padding: var(--reno-pv) var(--reno-ph);
}

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

.reno-section__inner {
  width: min(var(--reno-max), 100%);
  margin-inline: auto;
}

.reno-section__head {
  text-align: center;
  margin-bottom: 56px;
}

.reno-section__head .reno-label   { margin-bottom: 10px; }
.reno-section__head .reno-heading { margin-bottom: 14px; }

/* ------------------------------------------
   h2 大見出しブロック
   全 reno 系ページ共通の大見出しコンポーネント
   ------------------------------------------ */
.reno-h2-block {
  position: relative;
  overflow: hidden;
  padding-inline: var(--reno-ph);
  margin: 100px 0;
}

/* 英字大テキスト：通常フローでコンテナの高さを決める */
.reno-h2-block__en {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(60px, 10vw, 158px);
  font-weight: 200;         /* Extra Light */
  color: #C6C2BE;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
}

/* 日本語 h2：absolute で英字テキストに重ねる        */
/* left: 8% = BloomCort の "l" 付近（中央よりやや左） */
.reno-h2-block__ja {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 1;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  color: #1e2d5a;
  line-height: 1.4;
}

/* 中央揃えが必要なとき .reno-h2-block--center を追加 */
.reno-h2-block--center .reno-h2-block__ja {
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .reno-h2-block__ja {
    font-size: 24px;
    left: 1rem;
    top: 1.2rem;
    transform: none;
  }
}

/* ------------------------------------------
   ヒーロー
   ------------------------------------------ */
.reno-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.reno-hero__bg img,
.reno-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reno-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.55));
}

.reno-hero__body {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.reno-hero__logo {
  height: 80px;
  width: auto;
  margin: 0 auto 14px;
}

.reno-hero__en {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  opacity: 0.85;
  margin-bottom: 22px;
}

.reno-hero__catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}

.reno-hero__sub {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 2;
  opacity: 0.9;
}

/* ------------------------------------------
   紹介（about）
   ------------------------------------------ */
.reno-about__inner {
  max-width: var(--reno-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* テキスト列：flex縦並び、gapで余白管理 */
.reno-about__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 画像列 */
.reno-about__right {
  display: flex;
  align-items: center;
}

.reno-about__logo {
  height: 68px;
  width: auto;
}

.reno-about__text {
  font-size: 14px;
  line-height: 2.2;
  color: #4a3728;
}

.reno-about__photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--reno-radius);
}

/* ------------------------------------------
   物件カード
   ------------------------------------------ */
.reno-cards {
  max-width: var(--reno-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.reno-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--reno-white);
  border-radius: var(--reno-radius);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
}

.reno-card--rev .reno-card__img  { order: 2; }
.reno-card--rev .reno-card__body { order: 1; }

.reno-card__img {
  overflow: hidden;
  min-height: 320px;
}

.reno-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.reno-card:hover .reno-card__img img {
  transform: scale(1.04);
}

.reno-card__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reno-card__badge {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--reno-gold);
  border: 1px solid var(--reno-gold);
  padding: 3px 12px;
  margin-bottom: 10px;
}

.reno-card__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--reno-brown);
  margin-bottom: 6px;
}

.reno-card__caption {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 14px;
}

.reno-card__desc {
  font-size: 13px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.reno-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  padding: 14px 16px;
  background: #faf8f4;
  border-radius: 4px;
  margin-bottom: 16px;
}

.reno-card__specs dl {
  display: flex;
  gap: 6px;
  font-size: 12px;
  align-items: baseline;
}

.reno-card__specs dt { color: #aaa; white-space: nowrap; flex-shrink: 0; }
.reno-card__specs dd { color: var(--reno-text); font-weight: 500; }

.reno-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.reno-card__price {
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--reno-brown);
  margin-bottom: 20px;
}

.reno-card__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* ------------------------------------------
   レスポンシブ
   ------------------------------------------ */
@media screen and (max-width: 1024px) {
  .reno-grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .reno-about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reno-about__photo { height: 250px; }

  .reno-card { grid-template-columns: 1fr; }

  .reno-card--rev .reno-card__img,
  .reno-card--rev .reno-card__body { order: unset; }

  .reno-card__img   { min-height: 230px; }
  .reno-card__body  { padding: 28px 20px; }

  .reno-card__specs { grid-template-columns: 1fr; }

  .reno-card__btns { flex-direction: column; }
  .reno-card__btns .reno-btn { width: 100%; }

}

@media screen and (max-width: 480px) {
  .reno-hero__logo { height: 56px; }
}
