/* =============================================
   案05「シック実績訴求」style.css
   竹下建設株式会社 HP サンプル
   カラー: チャコールグレー × ダークゴールド
   フォント: Noto Serif JP / Noto Sans JP / Montserrat
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;600&family=Montserrat:wght@400;600;700&display=swap');

/* ── CSS変数 ─── */
:root {
  --bg:      #ffffff;
  --bg-dark: #2c2c2c;
  --bg-mid:  #f5f5f5;
  --fg:      #1a1a1a;
  --fg-sub:  #666666;
  --fg-w:    #f8f8f8;
  --accent:  #8b6914;
  --acc-lt:  #c4a245;
  --border:  #e0e0e0;
  --max-w:   1160px;
  --py:      84px;
  --f-ser:   "Noto Serif JP", "游明朝", serif;
  --f-sans:  "Noto Sans JP", sans-serif;
  --f-en:    "Montserrat", sans-serif;
  --tr:      0.25s ease;
}

/* ── リセット ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-sans);
  font-weight: 300;
  line-height: 1.75;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ── ヘッダー ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-ja {
  font-family: var(--f-ser); font-size: .95rem; font-weight: 600;
  color: var(--fg); letter-spacing: .08em;
}
.logo-en {
  font-family: var(--f-en); font-size: .58rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--fg-sub);
}
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-size: .8rem; color: var(--fg-sub); letter-spacing: .04em;
  transition: color var(--tr);
}
.header-nav a:hover { color: var(--accent); }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-tel {
  font-family: var(--f-en); font-size: 1rem; font-weight: 600;
  color: var(--fg); letter-spacing: .04em;
}
.header-tel small { font-size: .68rem; font-weight: 400; color: var(--fg-sub); display: block; }
.btn-reform-sm {
  display: inline-block; font-size: .78rem; font-weight: 700;
  color: var(--bg); background: var(--accent);
  padding: 9px 18px; letter-spacing: .04em;
  transition: background var(--tr);
}
.btn-reform-sm:hover { background: var(--acc-lt); }

/* ── FV ─── */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  padding-top: 68px;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video,
.hero-video-wrap .hero-poster {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(44,44,44,.68); z-index: 1;
}
.hero-body {
  position: relative; z-index: 2;
  text-align: center; max-width: 760px; padding: 0 24px;
}
.hero-en {
  font-family: var(--f-en); font-size: .65rem; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--acc-lt); display: block; margin-bottom: 20px;
}
.hero-catch {
  font-family: var(--f-ser);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 600; color: var(--fg-w);
  letter-spacing: .06em; line-height: 1.5; margin-bottom: 20px;
}
.hero-sub {
  font-size: .88rem; color: rgba(248,248,248,.72);
  line-height: 1.9; margin-bottom: 36px;
}
.btn-gold-border {
  display: inline-block; font-family: var(--f-en); font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--acc-lt); border: 1px solid var(--acc-lt);
  padding: 13px 40px; transition: background var(--tr), color var(--tr);
}
.btn-gold-border:hover { background: var(--acc-lt); color: var(--bg-dark); }

/* ── セクション共通 ─── */
.section { padding: var(--py) 0; }
.section.bg-mid { background: var(--bg-mid); }
.section.bg-dark { background: var(--bg-dark); }
.sec-en {
  font-family: var(--f-en); font-size: .62rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--acc-lt);
  display: block; margin-bottom: 8px;
}
.sec-title {
  font-family: var(--f-ser);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600; color: var(--fg); margin-bottom: 48px;
  letter-spacing: .04em; line-height: 1.5;
}
.section.bg-dark .sec-title { color: var(--fg-w); }
.sec-title.center { text-align: center; }

/* ── 業務4軸（チャコール横並びバー） ─── */
.service-bar {
  background: var(--bg-dark);
  padding: 0;
}
.service-bar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.svc-col {
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.svc-col:last-child { border-right: none; }
.svc-en {
  font-family: var(--f-en); font-size: .6rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--acc-lt); display: block; margin-bottom: 12px;
}
.svc-name {
  font-family: var(--f-ser); font-size: .95rem; font-weight: 600;
  color: var(--fg-w); line-height: 1.5; margin-bottom: 10px;
}
.svc-desc { font-size: .78rem; color: rgba(248,248,248,.55); line-height: 1.85; }

/* ── 施工実績数字バー ─── */
.merit-bar { background: var(--bg-dark); padding: 48px 0; }
.merit-bar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.merit-item {
  text-align: center; padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.merit-item:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.merit-num {
  font-family: var(--f-en); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; color: var(--acc-lt); line-height: 1; display: block;
}
.merit-num span { font-size: .42em; }
.merit-label { font-size: .76rem; color: rgba(248,248,248,.55); margin-top: 10px; display: block; }

/* ── リフォームギャラリー（費用キャプション付き） ─── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 40px;
}
.gallery-card {}
.gallery-pair {
  display: flex; border: 1px solid var(--border); overflow: hidden;
}
.gallery-side { flex: 1; position: relative; overflow: hidden; }
.gallery-divider { width: 1px; background: var(--border); flex-shrink: 0; }
.gallery-side img { width: 100%; height: 185px; object-fit: cover; display: block; }
.g-badge {
  position: absolute; top: 8px; left: 8px;
  font-family: var(--f-en); font-size: .62rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 10px;
  background: var(--bg-dark); color: var(--fg-w);
}
.g-badge.after { background: var(--accent); }
.gallery-caption { padding: 16px 0 0; }
.g-work {
  font-family: var(--f-ser); font-size: .9rem; color: var(--fg);
  display: block; margin-bottom: 10px;
}
.g-cost {
  display: inline-block;
  font-family: var(--f-en); font-size: .78rem; font-weight: 700;
  color: var(--acc-lt); background: var(--bg-dark);
  padding: 4px 14px; margin-bottom: 8px;
  letter-spacing: .06em;
}
.g-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.g-meta span { font-size: .73rem; color: var(--fg-sub); }
.g-meta span::before { content: attr(data-label) "："; color: var(--accent); font-weight: 700; }
.gallery-more { text-align: center; margin-top: 48px; }
.btn-outline-gold {
  display: inline-block; font-family: var(--f-en); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent);
  padding: 11px 36px; transition: background var(--tr), color var(--tr);
}
.btn-outline-gold:hover { background: var(--accent); color: var(--bg); }

/* ── About ─── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photo img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.about-lead {
  font-family: var(--f-ser); font-size: 1.05rem; line-height: 1.9;
  color: var(--fg); margin-bottom: 18px;
}
.about-text { font-size: .85rem; color: var(--fg-sub); line-height: 2; margin-bottom: 24px; }
.about-table { width: 100%; font-size: .8rem; border-collapse: collapse; }
.about-table tr { border-bottom: 1px solid var(--border); }
.about-table th {
  text-align: left; padding: 8px 12px 8px 0;
  color: var(--accent); font-weight: 700; white-space: nowrap; width: 8em;
}
.about-table td { padding: 8px 0; color: var(--fg-sub); }

/* ── 施工事例 ─── */
.works-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.work-card { overflow: hidden; }
.work-thumb { overflow: hidden; position: relative; }
.work-thumb img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  transition: transform .5s ease;
}
.work-card:hover .work-thumb img { transform: scale(1.04); }
.work-cost {
  position: absolute; bottom: 0; right: 0;
  font-family: var(--f-en); font-size: .72rem; font-weight: 700;
  color: var(--acc-lt); background: rgba(44,44,44,.85);
  padding: 4px 12px; letter-spacing: .04em;
}
.work-body { padding: 14px 0; border-bottom: 1px solid var(--border); }
.work-tag {
  font-family: var(--f-en); font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); background: rgba(139,105,20,.08);
  padding: 2px 8px; display: inline-block; margin-bottom: 6px;
}
.work-title { font-family: var(--f-ser); font-size: .9rem; color: var(--fg); line-height: 1.5; }

/* ── お客様の声 ─── */
.voices-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.voice-card {
  padding: 28px; border: 1px solid var(--border);
  border-top: 2px solid var(--acc-lt);
}
.voice-text { font-size: .85rem; line-height: 1.9; color: var(--fg); margin-bottom: 14px; }
.voice-name { font-size: .8rem; font-weight: 700; color: var(--fg-sub); }
.voice-type {
  font-family: var(--f-en); font-size: .6rem; font-weight: 700; letter-spacing: .08em;
  color: var(--accent); background: rgba(139,105,20,.1); padding: 2px 8px; margin-left: 8px;
}

/* ── リフォーム導線CTA ─── */
.reform-cta {
  margin-top: 48px; padding: 40px 56px;
  background: var(--bg-dark); text-align: center;
}
.reform-cta-label {
  font-family: var(--f-en); font-size: .62rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--acc-lt); display: block; margin-bottom: 10px;
}
.reform-cta-title {
  font-family: var(--f-ser); font-size: 1.2rem; font-weight: 600;
  color: var(--fg-w); margin-bottom: 10px;
}
.reform-cta-desc { font-size: .84rem; color: rgba(248,248,248,.65); margin-bottom: 26px; }

/* ── お問い合わせ ─── */
.contact { background: var(--bg-dark); }
.contact .container { text-align: center; padding: var(--py) 32px; }
.contact .sec-en { color: var(--acc-lt); }
.contact .sec-title { color: var(--fg-w); }
.contact-tel {
  font-family: var(--f-en); font-size: 2.2rem; font-weight: 700;
  color: var(--fg-w); letter-spacing: .1em; display: block; margin-bottom: 8px;
}
.contact-hours { font-size: .73rem; color: rgba(248,248,248,.45); margin-bottom: 32px; }

/* ── フッター ─── */
.site-footer { background: #1a1a1a; padding: 48px 0 28px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.footer-logo {
  font-family: var(--f-ser); font-size: .95rem; font-weight: 600;
  color: rgba(248,248,248,.75); letter-spacing: .08em; margin-bottom: 4px;
}
.footer-address { font-size: .75rem; color: rgba(248,248,248,.38); line-height: 2.1; margin-bottom: 28px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: .69rem; color: rgba(248,248,248,.28); }
.footer-license { font-size: .69rem; color: rgba(248,248,248,.23); }

/* ── レスポンシブ ─── */
@media (max-width: 960px) {
  .service-bar-inner { grid-template-columns: repeat(2,1fr); }
  .svc-col:nth-child(2) { border-right: none; }
  .svc-col:nth-child(3),
  .svc-col:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
  .svc-col:nth-child(4) { border-right: none; }
  .merit-bar-inner { grid-template-columns: repeat(2,1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .works-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --py: 56px; }
  .header-nav { display: none; }
  .gallery-grid { grid-template-columns: 1fr; gap: 32px; }
  .voices-list { grid-template-columns: 1fr; }
  .reform-cta { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .service-bar-inner { grid-template-columns: 1fr; }
  .svc-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .svc-col:nth-child(3), .svc-col:nth-child(4) { border-top: none; }
  .merit-bar-inner { grid-template-columns: repeat(2,1fr); }
}

/* ============================================
   販売中物件 (properties.html / detail) 追加CSS
   案05「シック実績訴求」テイスト
   チャコールグレー × ダークゴールド・角丸なし・空白で語る
   ============================================ */

/* ── btn-outline-prop（物件ページ用） ─── */
.btn-outline-prop {
  display: inline-block;
  font-family: var(--f-en); font-size: .76rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent);
  padding: 13px 36px;
  transition: background var(--tr), color var(--tr);
}
.btn-outline-prop:hover { background: var(--accent); color: var(--bg); }

/* ── ページタイトル帯 ─── */
.page-hero {
  background: var(--bg-mid); padding: 80px 0 64px;
  border-bottom: 1px solid var(--border); margin-top: 68px;
}
.page-hero .sec-en { margin-bottom: 10px; }
.page-hero-title {
  font-family: var(--f-ser);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 600;
  letter-spacing: .08em; line-height: 1.45; color: var(--fg); margin: 0 0 16px;
}
.page-hero-sub {
  font-size: .87rem; color: var(--fg-sub); line-height: 1.95; max-width: 560px;
}

/* ── 物件グリッド ─── */
.properties-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px;
}

/* ── 物件カード ─── */
.property-card {
  background: var(--bg); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: box-shadow var(--tr);
}
.property-card:hover { box-shadow: 0 8px 32px rgba(26,26,26,.09); }

.property-thumb {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
}
.property-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.55s ease;
}
.property-card:hover .property-thumb img { transform: scale(1.04); }

/* バッジ: --bg-dark + --fg-w（シック） */
.property-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--bg-dark); color: var(--fg-w);
  font-family: var(--f-en); font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px;
}
.property-badge.ask { background: var(--fg-sub); }

/* タグ: --accent ゴールド線 */
.property-tag-corner {
  position: absolute; top: 14px; right: 14px;
  background: transparent; color: var(--acc-lt);
  border: 1px solid var(--acc-lt);
  font-family: var(--f-en); font-size: .64rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px;
}

.property-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.property-meta-top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .73rem; color: var(--fg-sub); margin-bottom: 10px; gap: 8px;
}
.property-type {
  background: var(--bg-mid); padding: 3px 8px;
  color: var(--accent); font-weight: 500; font-size: .71rem; flex-shrink: 0;
  letter-spacing: .04em;
}
.property-area { letter-spacing: .04em; text-align: right; }

/* タイトル: 明朝体 */
.property-title {
  font-family: var(--f-ser); font-size: 1.08rem; font-weight: 600;
  color: var(--fg); letter-spacing: .06em; margin: 0 0 12px;
}

/* 価格: 明朝体 × ダークゴールド */
.property-price {
  font-family: var(--f-ser); font-size: 1.7rem; font-weight: 600;
  color: var(--accent); letter-spacing: .02em; margin-bottom: 14px; line-height: 1.15;
}
.property-price span {
  font-size: .83rem; margin-left: 4px; color: var(--fg-sub);
  font-weight: 400; font-family: var(--f-sans);
}

/* スペック */
.property-spec {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px;
  padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin: 0 0 18px;
}
.property-spec > div { display: flex; flex-direction: column; font-size: .8rem; }
.property-spec dt { color: var(--fg-sub); font-size: .68rem; margin-bottom: 2px; letter-spacing: .08em; text-transform: uppercase; font-family: var(--f-en); }
.property-spec dd { color: var(--fg); margin: 0; font-weight: 500; }

.property-card .btn-outline-prop { margin-top: auto; text-align: center; display: block; }

/* ── index.html 物件抜粋 ─── */
.properties-pickup { background: var(--bg-mid); }
.properties-pickup .properties-grid { grid-template-columns: repeat(2, 1fr); }
.properties-pickup-more { text-align: center; margin-top: 44px; }

/* ── 物件ページ レスポンシブ ─── */
@media (max-width: 960px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-pickup .properties-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .properties-grid { grid-template-columns: 1fr; }
  .properties-pickup .properties-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 56px 0 48px; }
  .page-hero-title { font-size: 1.5rem; }
}

/* ── 物件詳細ページ ─── */
.property-detail-hero {
  background: var(--bg-mid); padding: 56px 0 48px;
  border-bottom: 1px solid var(--border); margin-top: 68px;
}
.property-breadcrumb { font-size: .75rem; color: var(--fg-sub); letter-spacing: .04em; margin-bottom: 22px; }
.property-breadcrumb a { color: var(--accent); text-decoration: none; }
.property-breadcrumb a:hover { text-decoration: underline; }

.property-detail-head {
  display: grid; grid-template-columns: 3fr 2fr; gap: 48px; align-items: start;
}

/* メタバッジ群 */
.property-detail-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.property-detail-meta .badge {
  background: var(--bg-dark); color: var(--fg-w);
  font-family: var(--f-en); font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px;
}
.property-detail-meta .badge.tag {
  background: transparent; color: var(--acc-lt); border: 1px solid var(--acc-lt);
}
.property-detail-meta .badge.area {
  background: transparent; color: var(--fg-sub); border: 1px solid var(--border);
  font-family: var(--f-sans); text-transform: none; letter-spacing: .04em;
}

/* タイトル: 明朝体 */
.property-detail-title {
  font-family: var(--f-ser);
  font-size: clamp(1.35rem, 3vw, 1.95rem); font-weight: 600;
  color: var(--fg); letter-spacing: .06em; line-height: 1.5; margin: 0 0 18px;
}

/* 価格: 明朝体 × ダークゴールド */
.property-detail-price {
  font-family: var(--f-ser); font-size: 2.4rem; font-weight: 600;
  color: var(--accent); line-height: 1.15; margin: 0 0 6px;
}
.property-detail-price span {
  font-size: .92rem; margin-left: 6px; color: var(--fg-sub); font-weight: 400; font-family: var(--f-sans);
}

/* クイック仕様: --bg-mid で dt 背景 */
.property-detail-quick {
  background: var(--bg); border: 1px solid var(--border); padding: 0;
}
.property-detail-quick dl {
  display: grid; grid-template-columns: auto 1fr; margin: 0; font-size: .84rem;
}
.property-detail-quick dt {
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  background: var(--bg-mid); color: var(--fg-sub);
  font-family: var(--f-en); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
}
.property-detail-quick dd {
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  color: var(--fg); margin: 0; font-weight: 500;
}
.property-detail-quick dt:last-of-type,
.property-detail-quick dd:last-of-type { border-bottom: none; }

/* メイン画像 */
.property-main-image { margin-top: 0; }
.property-main-image img { width: 100%; height: auto; display: block; }

/* 内見グリッド */
.property-interior-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 32px 0 0; }
.property-interior-grid figure {
  margin: 0; background: var(--bg); border: 1px solid var(--border);
}
.property-interior-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.property-interior-grid figcaption {
  text-align: center; font-size: .75rem; color: var(--fg-sub);
  padding: 10px 0; letter-spacing: .08em;
  font-family: var(--f-en); text-transform: uppercase;
}

/* 物件説明 */
.property-description {
  background: var(--bg-mid); padding: 36px; margin: 36px 0 0;
  border-left: 3px solid var(--accent);
}
.property-description h3 {
  font-family: var(--f-en); font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px;
}
.property-description p { font-size: .88rem; line-height: 2; color: var(--fg); margin: 0 0 14px; }
.property-description p:last-child { margin-bottom: 0; }

/* 物件詳細スペック: dt 背景に --bg-mid、しっかり境界線 */
.property-full-spec { border: 1px solid var(--border); margin: 36px 0 0; }
.property-full-spec dl { display: grid; grid-template-columns: 200px 1fr; margin: 0; }
.property-full-spec div { display: contents; }
.property-full-spec dt,
.property-full-spec dd {
  padding: 13px 20px; border-bottom: 1px solid var(--border); margin: 0; font-size: .84rem;
}
.property-full-spec dt {
  background: var(--bg-mid); color: var(--fg-sub);
  font-family: var(--f-en); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.property-full-spec dd { color: var(--fg); font-weight: 400; }

.property-back-link { text-align: center; margin: 48px 0 0; }

@media (max-width: 768px) {
  .property-detail-head { grid-template-columns: 1fr; gap: 24px; }
  .property-detail-title { font-size: 1.45rem; }
  .property-detail-price { font-size: 2rem; }
  .property-interior-grid { grid-template-columns: 1fr; gap: 14px; }
  .property-full-spec dl { grid-template-columns: 100px 1fr; }
  .property-full-spec dt, .property-full-spec dd { padding: 11px 14px; font-size: .8rem; }
  .property-description { padding: 24px 20px; }
  .property-detail-hero { padding: 40px 0 36px; }
}
