/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f1923;
  --primary-light: #1a2a3a;
  --accent: #c9a96e;
  --accent-light: #dcc08a;
  --accent-dark: #a8884d;
  --text: #2d3748;
  --text-light: #718096;
  --text-lighter: #a0aec0;
  --bg: #ffffff;
  --bg-warm: #faf8f5;
  --bg-alt: #f5f1ec;
  --border: #e8e2d9;
  --border-light: #f0ece6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(15, 25, 35, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.logo-yp {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-light);
}

.logo-dot {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  transition: all 0.3s var(--ease);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5.5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* 上: 固定ナビの高さぶん / 下: 絶対配置の .hero-stats (bottom:100px + 高さ約60px) と .hero-scroll (bottom:32px + 高さ約40px) を避けるための余白 */
  padding: 120px 0 240px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a0f18 0%, #0f1923 25%, #162235 50%, #1a2a3a 75%, #0f1923 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  top: 10%;
  left: 15%;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
  animation-delay: -3s;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(100,150,200,0.06) 0%, transparent 70%);
  top: 50%;
  right: 30%;
  animation-delay: -5s;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 32px;
  max-width: 800px;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-badge span:not(.hero-badge-line) {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 400;
}

.hero-badge-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent));
}

.hero-badge-line:last-child {
  background: linear-gradient(to left, transparent, var(--accent));
}

.hero-title {
  margin-bottom: 28px;
}

.hero-title-line {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 4px;
}

.hero-title-accent {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 6px;
  background: linear-gradient(135deg, var(--accent-light) 0%, #e8d5a8 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 2.2;
  opacity: 0.7;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 40px;
  color: #fff;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 2px;
}

.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  opacity: 0.5;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 2px;
  height: 6px;
  background: var(--accent-light);
  border-radius: 1px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-transform: uppercase;
  min-width: 180px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--accent-light);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

/* ===== Section Common ===== */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  font-weight: 400;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--primary);
}

.section-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  margin: 20px auto 0;
}

.section-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 20px;
  letter-spacing: 1px;
}

/* ===== Numbers ===== */
.numbers {
  background: var(--primary);
  padding: 80px 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.number-item {
  text-align: center;
  color: #fff;
}

.number-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
  opacity: 0.6;
}

.number-icon svg {
  width: 100%;
  height: 100%;
}

.number-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 2px;
  line-height: 1;
}

.number-unit {
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent-light);
  margin-left: 2px;
}

.number-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  text-transform: uppercase;
}

/* ===== About ===== */
.about {
  background: var(--bg-warm);
}

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

.about-message {
  position: relative;
  padding-left: 32px;
}

.about-message-deco {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--accent);
  opacity: 0.12;
  position: absolute;
  top: -40px;
  left: -10px;
  line-height: 1;
  pointer-events: none;
}

.about-message-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: 2px;
  line-height: 1.6;
}

.about-message-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 16px;
}

.about-table-wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.about-table {
  width: 100%;
  border-collapse: collapse;
}

.about-table tr {
  border-bottom: 1px solid var(--border-light);
}

.about-table tr:last-child {
  border-bottom: none;
}

.about-table th,
.about-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 0.88rem;
  vertical-align: top;
}

.about-table th {
  font-weight: 600;
  color: var(--primary);
  width: 140px;
  white-space: nowrap;
  background: var(--bg-warm);
  border-radius: 4px;
}

.table-label-en {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 2px;
}

.about-table td {
  color: var(--text);
  line-height: 1.8;
}

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

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

.service-card {
  background: #fff;
  padding: 44px 32px 40px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--border);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}

.service-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  color: var(--accent);
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 2px;
  color: var(--primary);
}

.service-card p {
  font-size: 0.83rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.78rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
  letter-spacing: 0.5px;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

/* ===== Properties ===== */
.properties {
  background: var(--bg-warm);
}

.property-category {
  margin-bottom: 80px;
}

.property-category:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.category-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}

.category-en {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  font-weight: 400;
}

.category-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 3px;
}

/* Property Grid */
.property-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.property-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Property Card */
.property-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.5s var(--ease);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.property-image {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.property-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.property-image-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-image-icon {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(201,169,110,0.9);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 5px 14px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 2px;
}

/* Property Image Gradients */
.hotel-1 { background: linear-gradient(135deg, #1a2a3a 0%, #2c5f7c 40%, #1e3a50 70%, #0f1923 100%); }
.hotel-2 { background: linear-gradient(135deg, #1a2332 0%, #8b5e3c 40%, #4a3728 70%, #1a1510 100%); }
.hotel-3 { background: linear-gradient(135deg, #0a2e26 0%, #1a6b5a 40%, #2e8b7a 60%, #0a2e26 100%); }
.tower-1 { background: linear-gradient(135deg, #1a1a2e 0%, #4a3f6b 40%, #2d2545 70%, #0f0f1e 100%); }
.tower-2 { background: linear-gradient(135deg, #0f1923 0%, #1a4a6b 40%, #0f3050 70%, #0a1520 100%); }
.apt-1   { background: linear-gradient(135deg, #2a1a1a 0%, #6b3a3a 40%, #4a2828 70%, #1a0f0f 100%); }
.apt-2   { background: linear-gradient(135deg, #1a1a0f 0%, #6b5a2a 40%, #4a3f1a 70%, #1a1508 100%); }

.property-body {
  padding: 28px;
}

.property-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.property-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.property-status {
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  font-weight: 500;
  background: var(--bg-alt);
  color: var(--text-light);
}

.status-new {
  background: rgba(201,169,110,0.12);
  color: var(--accent-dark);
}

.property-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.icon-sm {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.spec-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.spec-label {
  font-size: 0.7rem;
  color: var(--text-lighter);
  letter-spacing: 0.5px;
}

.spec-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.property-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text-light);
}

/* Horizontal Property Cards */
.property-card-horizontal {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.property-card-horizontal .property-image {
  height: 100%;
  min-height: 200px;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1a2a3a 50%, var(--primary-light) 100%);
}

.cta-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.cta-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 2;
  opacity: 0.6;
  margin-bottom: 40px;
}

/* ===== Contact ===== */
.contact {
  background: var(--bg);
}

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

.contact-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 44px 36px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.contact-card-icon svg { width: 100%; height: 100%; }

.contact-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-card-note {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
  margin-top: 80px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 60px 64px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-form-header h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.contact-form-header p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.contact-form .form-row .form-group {
  margin-bottom: 0;
}

.contact-form label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.contact-form label .required {
  color: #c0392b;
  margin-left: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b5b5b5;
  font-size: 0.88rem;
}

.form-submit-wrapper {
  text-align: center;
  margin-top: 16px;
}

.form-submit-btn {
  min-width: 220px;
  padding: 16px 48px;
  font-size: 0.92rem;
  letter-spacing: 2px;
  cursor: pointer;
  border: none;
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 24px;
  padding: 0;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.7;
  min-height: 1.5em;
}

.form-status.sending {
  color: var(--text-light);
}

.form-status.success {
  color: #27ae60;
  padding: 16px;
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.25);
}

.form-status.error {
  color: #c0392b;
  padding: 16px;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.25);
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    margin-top: 60px;
    padding: 40px 24px;
  }
  .contact-form-header h3 {
    font-size: 1.2rem;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .contact-form .form-row .form-group {
    margin-bottom: 20px;
  }
  .form-submit-btn {
    min-width: 100%;
  }
}

/* ===== Modal Dialog ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 20px;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 460px;
  padding: 56px 48px 44px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 4px 10px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}

.modal-icon svg {
  width: 100%;
  height: 100%;
}

.modal-overlay.success .modal-icon {
  color: #27ae60;
}

.modal-overlay.error .modal-icon {
  color: #c0392b;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.modal-message {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.modal-ok {
  min-width: 160px;
  padding: 14px 40px;
  font-size: 0.88rem;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
}

@media (max-width: 480px) {
  .modal-dialog {
    padding: 44px 28px 32px;
    max-width: 100%;
  }
  .modal-title {
    font-size: 1.1rem;
  }
  .modal-icon {
    width: 60px;
    height: 60px;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.6);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 80px 0 60px;
}

.footer-logo .logo-dot {
  color: rgba(255,255,255,0.4);
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  margin-top: 20px;
  opacity: 0.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-nav-col h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-nav-col a,
.footer-nav-col p {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
  opacity: 0.55;
}

.footer-nav-col a:hover {
  color: var(--accent-light);
  opacity: 1;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.72rem;
  opacity: 0.35;
  letter-spacing: 1px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .property-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .property-card-horizontal .property-image {
    min-height: 200px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-stats {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 28px;
    transition: right 0.4s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .hero-stats {
    display: none;
  }

  .hero {
    /* モバイルでは .hero-stats が非表示のため下余白を縮小 */
    padding: 100px 0 120px;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 36px 28px;
  }

  .property-grid-3,
  .property-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 32px 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0 40px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-title-line {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .hero-title-accent {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .hero-badge span:not(.hero-badge-line) {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .number-value {
    font-size: 2.2rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* ===== Property Card Link & Self-owned ===== */
.property-card-link {
  display: grid;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.property-card-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.property-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #c0392b;
  margin-bottom: 8px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-nofee {
  font-size: 0.65rem;
  font-weight: 600;
  background: #c0392b;
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 1px;
}

.card-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  transition: color 0.3s var(--ease);
}

.property-card-link:hover .card-more {
  color: var(--accent-dark);
}

.status-sale {
  background: rgba(192,57,43,0.12);
  color: #c0392b;
  font-weight: 600;
}

/* ===== Featured Property (自社物件) ===== */
.featured-category {
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, rgba(201,169,110,0.02) 100%);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 36px;
}

.featured-header .category-number {
  display: flex;
  align-items: center;
}

.featured-star {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

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

.property-card-featured {
  display: grid;
  grid-template-columns: 420px 1fr;
  border: 1px solid var(--accent-light);
}

.property-card-featured:hover {
  box-shadow: var(--shadow-xl);
}

.featured-image {
  background: linear-gradient(135deg, #0f1923 0%, #1a3a5c 30%, #2a5a8a 60%, #1a2a3a 100%);
  min-height: 400px;
}

.badge-featured {
  background: var(--accent) !important;
  top: 16px;
  left: 16px;
}

.badge-no-fee {
  background: #c0392b !important;
  top: 16px;
  left: auto;
  right: 16px;
  position: absolute;
  z-index: 2;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 5px 14px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 2px;
}

.property-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: #c0392b;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.property-access {
  margin-bottom: 16px;
}

.property-access p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.8;
}

.property-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.notice-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.property-notice p {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.7;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
}

.btn-detail:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.status-sale {
  background: rgba(192,57,43,0.12);
  color: #c0392b;
  font-weight: 600;
}

/* ===== Detail Page ===== */
.detail-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}


.detail-hero-content {
  position: relative;
  color: #fff;
}

.detail-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.detail-badge {
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 3px;
}

.detail-badge-owner {
  background: var(--accent);
  color: #fff;
}

.detail-badge-nofee {
  background: #c0392b;
  color: #fff;
}

.detail-badge-sale {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.detail-badge-rent {
  background: #27ae60;
  color: #fff;
}

/* Rent Info (homepage card) */
.property-rent-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(39,174,96,0.08);
  border: 1px solid rgba(39,174,96,0.25);
  border-radius: 6px;
  padding: 6px 14px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text);
}

.property-rent-info span {
  background: #27ae60;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Rent Box (detail page) */
.detail-rent-box {
  background: linear-gradient(135deg, rgba(39,174,96,0.06), rgba(39,174,96,0.02));
  border: 1px solid rgba(39,174,96,0.2);
  border-left: 4px solid #27ae60;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 48px;
}

.detail-rent-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #27ae60;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.detail-rent-box p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text);
}

.detail-rent-box .rent-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: #27ae60;
}

.detail-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.detail-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.65;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.detail-price-hero {
  font-size: 1.2rem;
  color: var(--accent-light);
  font-weight: 500;
  letter-spacing: 1px;
}

.detail-price-hero span {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--font-display);
}

/* Detail Hero with photo */
.detail-hero-bg {
  position: absolute;
  inset: 0;
}

.detail-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,25,35,0.85) 0%, rgba(15,25,35,0.7) 50%, rgba(15,25,35,0.85) 100%);
}

/* Gallery */
.gallery-section {
  background: var(--primary);
  padding: 40px 0;
}

.gallery-main {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 520px;
}

.gallery-main-img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  padding: 0;
  opacity: 0.5;
  transition: all 0.3s var(--ease);
}

.gallery-thumb:hover {
  opacity: 0.8;
}

.gallery-thumb.active {
  border-color: var(--accent);
  opacity: 1;
}

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

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-warm);
  padding: 14px 0;
  font-size: 0.75rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb a {
  color: var(--accent);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--accent-dark);
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.4;
}

/* Detail Main */
.detail-main {
  padding: 60px 0 80px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* Notice Box */
.detail-notice-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(192,57,43,0.06), rgba(192,57,43,0.02));
  border: 1px solid rgba(192,57,43,0.2);
  border-left: 4px solid #c0392b;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 48px;
}

.notice-box-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #c0392b;
}

.notice-box-icon svg {
  width: 100%;
  height: 100%;
}

.detail-notice-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.detail-notice-box p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text);
}

/* Detail Sections */
.detail-section {
  margin-bottom: 56px;
}

.detail-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.detail-section-en {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 4px;
}

/* Detail Table */
.detail-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table tr {
  border-bottom: 1px solid var(--border-light);
}

.detail-table th,
.detail-table td {
  padding: 16px 20px;
  font-size: 0.88rem;
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  background: var(--bg-warm);
  font-weight: 600;
  color: var(--primary);
  width: 160px;
  white-space: nowrap;
}

.detail-table td {
  color: var(--text);
  line-height: 1.8;
}

.td-price {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #c0392b !important;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-item {
  padding: 28px 24px;
  background: var(--bg-warm);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  transition: all 0.3s var(--ease);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-item-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 14px;
}

.feature-item-icon svg {
  width: 100%;
  height: 100%;
}

.feature-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.feature-item p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Equipment Tags */
.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.equipment-tag {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 8px 18px;
  font-size: 0.8rem;
  border-radius: 6px;
  color: var(--text);
  letter-spacing: 0.5px;
  transition: all 0.3s var(--ease);
}

.equipment-tag:hover {
  border-color: var(--accent);
  background: rgba(201,169,110,0.06);
}

/* Location */
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.location-tag {
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  font-size: 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.access-detail {
  background: var(--bg-warm);
  border-radius: 10px;
  padding: 28px;
}

.access-detail h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.access-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.access-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.access-line {
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

.line-yurakucho {
  background: #c1a470;
  color: #fff;
}

.line-yamanote {
  background: #9acd32;
  color: #333;
}

.access-station {
  font-weight: 500;
  color: var(--text);
}

.access-time {
  color: var(--accent-dark);
  font-weight: 600;
  margin-left: auto;
}

/* Sidebar */
.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.sidebar-price-label {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sidebar-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 8px;
}

.sidebar-price span {
  font-size: 2.2rem;
  font-family: var(--font-display);
}

.sidebar-nofee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #27ae60;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-specs div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-specs span {
  font-size: 0.68rem;
  color: var(--text-lighter);
  letter-spacing: 0.5px;
}

.sidebar-specs strong {
  font-size: 0.88rem;
  color: var(--primary);
}

.sidebar-monthly h5 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.monthly-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

.monthly-total {
  font-weight: 700;
  color: var(--primary);
  border-bottom: none;
  padding-top: 12px;
}

.sidebar-contact {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.sidebar-contact h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.sidebar-contact > p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.sidebar-btn {
  width: 100%;
  margin-bottom: 16px;
}

.sidebar-tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-tel span {
  font-size: 0.7rem;
  color: var(--text-light);
}

.sidebar-tel strong {
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: 2px;
}

.sidebar-tel-note {
  font-size: 0.68rem !important;
  color: var(--text-lighter) !important;
}

/* Back Link */
.back-link {
  padding: 20px 0 40px;
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.back-link a:hover {
  color: var(--accent-dark);
}

/* Detail Page Responsive */
@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-sticky {
    position: static;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .featured-image {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .detail-hero {
    padding: 120px 0 60px;
  }

  .detail-title {
    font-size: 1.6rem;
  }

  .detail-table th {
    width: 110px;
    font-size: 0.8rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .access-item {
    flex-wrap: wrap;
  }

  .access-time {
    margin-left: 0;
  }

  .featured-category {
    padding: 20px;
  }

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