*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #FAF7F2;
  color: #2C1A0E;
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --brown: #6B3A1F;
  --brown-dark: #3D1F08;
  --brown-light: #9C5A2D;
  --brown-muted: #C4956A;
  --grey: #8A8A8A;
  --grey-light: #B0B0B0;
  --grey-bg: #4A4A4A;
  --white: #FAF7F2;
  --text-dark: #2C1A0E;
  --text-mid: #5C3D22;
  --shadow: 0 4px 24px rgba(107,58,31,0.12);
  --shadow-lg: 0 12px 48px rgba(107,58,31,0.18);
  --radius: 4px;
  --radius-lg: 8px;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--text-dark); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--brown-muted); }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 20px; }
.section-title.light { color: var(--cream); }
.section-subtitle { font-size: 1rem; color: var(--text-mid); max-width: 560px; }
.section-header.center { text-align: center; margin-bottom: 60px; }
.section-header.center .section-subtitle { margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.5px; transition: all 0.25s ease;
  cursor: pointer; border: 2px solid transparent;
}
.btn-primary {
  background: var(--brown); color: var(--white);
  border-color: var(--brown);
}
.btn-primary:hover { background: var(--brown-dark); border-color: var(--brown-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--white); transform: translateY(-2px); }
.btn-cream {
  background: var(--cream); color: var(--brown);
  border-color: var(--cream);
}
.btn-cream:hover { background: var(--cream-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.full-width { width: 100%; }

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,247,242,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,58,31,0.1);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  height: 72px;
}
.nav-side {
  flex: 1 1 0;
  display: flex;
  align-items: center;
}
.nav-side-left { justify-content: flex-start; }
.nav-side-right { justify-content: flex-end; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; }
.logo-img { width: 42px; height: 42px; object-fit: contain; flex-shrink: 0; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--brown-dark); line-height: 1; white-space: nowrap; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  flex: 0 0 auto;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-mid);
  padding: 8px 14px; border-radius: var(--radius); transition: all 0.2s;
  line-height: 1; display: inline-flex; align-items: center;
}
.nav-links a:hover { color: var(--brown); background: rgba(107,58,31,0.06); }
.nav-cta {
  background: var(--brown) !important; color: var(--white) !important;
  padding: 10px 20px !important; border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--brown-dark) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: all 0.3s; }
.nav-overlay { display: none; }
.nav-close { display: none; }


.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  padding-top: 72px;
  overflow: hidden;
  display: flex;
}
.hero-left {
  position: relative;
  width: 50%;
  height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 80px 60px 80px 80px;
  z-index: 2;
  top: auto; left: auto; right: auto; bottom: auto;
  transform: none;
}
.hero-right {
  position: relative;
  width: 50%;
  height: 100%;
  background: #5A5A5A;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  overflow: visible;
  z-index: 1;
  top: auto; left: auto; right: auto; bottom: auto;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4A4A4A 0%, #6A6A6A 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 540px; }

.hero-curtain {
  position: absolute;
  left: 0; right: 0;
  background: linear-gradient(180deg, #2a1405 0%, var(--brown-dark) 100%);
  z-index: 20;
  pointer-events: none;
}
.hero-curtain-top { top: 0; height: 50%; transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1); }
.hero-curtain-bottom { bottom: 0; height: 50%; transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1); }
.hero-curtain-top.curtain-open  { transform: translateY(-100%); }
.hero-curtain-bottom.curtain-open { transform: translateY(100%); }

.hero-number { display: block; font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 700; color: rgba(107,58,31,0.1); line-height: 1; margin-bottom: 8px; opacity: 0; }
.hero-eyebrow { display: block; font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; color: #D9622B; margin-bottom: 16px; font-family: 'Playfair Display', serif; opacity: 0; }
.hero-title { font-size: clamp(2.8rem, 5.5vw, 4.2rem); font-weight: 700; line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px; }
.hero-title .line { display: block; opacity: 0; }
.hero-title .accent-line { color: var(--brown); }
.hero-subtitle { font-size: 1rem; color: var(--text-mid); margin-bottom: 36px; line-height: 1.7; max-width: 460px; opacity: 0; }

.hero-number.intro-play,
.hero-eyebrow.intro-play,
.hero-title .line.intro-play,
.hero-subtitle.intro-play { animation: heroFadeUp 0.6s ease forwards; }
.hero-number.intro-play { animation-delay: 0s; }
.hero-eyebrow.intro-play { animation-delay: 0.1s; }
.hero-title .line.intro-play:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line.intro-play:nth-child(2) { animation-delay: 0.35s; }
.hero-subtitle.intro-play { animation-delay: 0.5s; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.old-building-stage {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 3700px;
  z-index: 6;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.old-building-stage .building-img {
  width: 100%;
  height: 900px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.55));
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.old-building-stage .building-img.rise {
  opacity: 1;
  transform: translateY(0);
}
.old-building-stage .building-img.fade-out {
  opacity: 0 !important;
  transform: scale(0.9) translateY(30px) !important;
  transition: opacity 0.6s ease, transform 0.6s ease !important;
}

.new-building-stage {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3700px;
  z-index: 7;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.new-building-stage .building-img {
  width: 100%;
  height: 1000px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.65));
  display: block;
  opacity: 0;
  transform: translateX(-150vw);
}
.new-building-stage .building-img.slide-in {
  animation: newBuildingSlideIn 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes newBuildingSlideIn {
  from { opacity: 0.2; transform: translateX(-150vw); }
  to   { opacity: 1;   transform: translateX(0); }
}

.location-pills {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
}
.location-pills.intro-play { animation: heroFadeUp 0.6s ease 0.5s forwards; }
.pill {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 50px;
  text-align: center;
}

.stats-bar {
  background: var(--brown-dark); padding: 40px 24px;
}
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px;
}
.stat-item { text-align: center; }
.stat-item .stat-number {
  font-family: 'Playfair Display', serif; font-size: 2.4rem;
  font-weight: 700; color: var(--cream);
}
.stat-suffix { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--brown-muted); }
.stat-label { display: block; font-size: 0.8rem; color: var(--grey-light); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

.about { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-body { margin-bottom: 36px; }
.about-body p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; font-size: 0.95rem; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-card {
  background: var(--cream); padding: 28px 24px; border-radius: var(--radius-lg);
  border: 1px solid rgba(107,58,31,0.1); transition: all 0.3s;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brown-muted); }
.about-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.about-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--brown-dark); }
.about-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

.services { padding: 120px 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); padding: 40px 32px; border-radius: var(--radius-lg);
  border: 1px solid rgba(107,58,31,0.08); transition: all 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brown-muted); }
.service-icon {
  width: 56px; height: 56px; margin-bottom: 24px; color: var(--brown);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--brown-dark); }
.service-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

.urban { padding: 120px 0; background: var(--brown-dark); }
.urban-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.urban-desc { color: rgba(250,247,242,0.75); margin-bottom: 32px; line-height: 1.8; font-size: 0.95rem; }
.urban-list { margin-bottom: 40px; }
.urban-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(250,247,242,0.85); padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.95rem;
}
.check-icon { color: var(--brown-muted); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

.transform-box {
  background: rgba(255,255,255,0.05); border-radius: var(--radius-lg);
  padding: 40px 36px; border: 1px solid rgba(255,255,255,0.1);
}
.transform-step { display: flex; align-items: flex-start; gap: 20px; }
.step-num {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  font-weight: 700; color: var(--brown-muted); flex-shrink: 0; line-height: 1;
}
.step-content h4 { color: var(--cream); font-size: 1rem; margin-bottom: 6px; }
.step-content p { color: rgba(250,247,242,0.65); font-size: 0.85rem; line-height: 1.6; }
.transform-arrow {
  text-align: center; margin: 16px 0; color: var(--brown-muted);
  font-size: 1.2rem; padding-left: 52px;
}

.why-us { padding: 120px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-card {
  padding: 36px 24px; border-top: 2px solid var(--brown);
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); }
.why-num {
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  font-weight: 700; color: var(--cream-dark); margin-bottom: 16px; line-height: 1;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--brown-dark); }
.why-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

.contact { padding: 120px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-desc { color: var(--text-mid); margin-bottom: 40px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--brown); margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; color: var(--text-mid); }
.contact-item a { color: var(--text-mid); transition: color 0.2s; }
.contact-item a:hover { color: var(--brown); }

.contact-form-wrap {
  background: var(--white); padding: 48px 40px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--brown); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1px solid rgba(107,58,31,0.2);
  border-radius: var(--radius); background: var(--cream);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--brown); box-shadow: 0 0 0 3px rgba(107,58,31,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.75rem; color: var(--grey); text-align: center; }

.footer { background: var(--brown-dark); padding: 72px 24px 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { width: 48px; height: 48px; object-fit: contain; margin-bottom: 12px; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--cream); display: block; margin-bottom: 12px; }
.footer-tagline { font-size: 0.85rem; color: rgba(250,247,242,0.55); line-height: 1.7; }
.footer h4 { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--brown-muted); margin-bottom: 20px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li a { font-size: 0.875rem; color: rgba(250,247,242,0.65); transition: color 0.2s; }
.footer ul li a:hover { color: var(--cream); }
.footer-contact p { font-size: 0.875rem; color: rgba(250,247,242,0.65); margin-bottom: 10px; }
.footer-contact a { color: rgba(250,247,242,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 0; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(250,247,242,0.35); }

.fade-in-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .hero-left {
    position: relative;
    width: 100%;
    height: auto;
    padding: 60px 24px 40px;
    top: auto; left: auto; right: auto; bottom: auto;
    transform: none;
  }
  .hero-right {
    position: relative;
    width: 100%;
    min-height: 420px;
    padding: 40px 20px 0;
    top: auto; left: auto; right: auto; bottom: auto;
  }
  .old-building-stage { width: 200px; }
  .new-building-stage { width: 250px; }
  .about-grid { grid-template-columns: 1fr; }
  .urban-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-overlay { display: none; }
  .nav-links {
    position: fixed !important; top: 0 !important; right: 0 !important; left: 0 !important; bottom: 0 !important;
    width: 100% !important; max-width: none !important;
    height: 100vh !important; min-height: 100%;
    background: var(--cream); padding: 90px 32px 40px;
    flex-direction: column !important; align-items: stretch !important;
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 0 !important;
    z-index: 999;
    overflow-y: auto;
    justify-content: flex-start !important;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links::before {
    content: "MENÜ";
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brown-dark);
    letter-spacing: 1px;
    margin-bottom: 28px;
  }
  .nav-links a {
    padding: 18px 0 !important;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(107,58,31,0.1);
  }
  .nav-links a:hover { background: none; color: var(--brown); }
  .nav-close {
    position: fixed; top: 24px; right: 28px;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    z-index: 1000;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .nav-links.open ~ .nav-close,
  .nav-close.open {
    opacity: 1; pointer-events: auto;
  }
  .nav-close span {
    position: absolute;
    width: 22px; height: 2px;
    background: var(--brown-dark);
  }
  .nav-close span:first-child { transform: rotate(45deg); }
  .nav-close span:last-child { transform: rotate(-45deg); }
  .nav-cta { text-align: center; margin-top: 16px; border-bottom: none !important; }
  .hero-left { padding: 50px 20px 32px; }
  .hero-right { min-height: 360px; }
  .old-building-stage { width: 155px; }
  .new-building-stage { width: 200px; }
  .hero-title { font-size: 2.4rem !important; }
  .location-pills { top: 16px; right: 16px; }
  .pill { font-size: 0.65rem; padding: 8px 16px; }
  .stats-inner { gap: 32px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
}

.form-success {
  background: rgba(107,58,31,0.08); border: 1px solid var(--brown-muted);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  color: var(--brown-dark); font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.service-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.services-dark {
  background-color: #0a0a0a;
  background-image: linear-gradient(160deg, #120c08 0%, #2a1a10 55%, #0a0a0a 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.services-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 3, 0.65);
  z-index: 0;
}

.services-dark .container {
  position: relative;
  z-index: 1;
}

.services-dark .section-eyebrow {
  color: var(--brown-muted);
}

.services-dark .section-title {
  color: var(--cream);
}

.services-dark .section-subtitle {
  color: rgba(250,247,242,0.65);
}

.services-dark .service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}

.services-dark .service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--brown-muted);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.services-dark .service-card h3 {
  color: var(--cream);
}

.services-dark .service-card p {
  color: rgba(250,247,242,0.65);
}

.yarisi-badge-row {
  margin-bottom: 28px;
}

.yarisi-badge-img {
  max-width: 180px;
  height: auto;
  opacity: 0.92;
}

.yarisi-sub {
  font-style: italic;
  color: var(--brown-muted);
}
.nav-links a.active { color: var(--brown); background: rgba(107,58,31,0.08); }
.nav-cta.active { background: var(--brown-dark) !important; }

.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 60%);
  border-bottom: 1px solid rgba(107,58,31,0.08);
}
.page-header .container { position: relative; }
.page-header .container::after {
  content: '';
  position: absolute;
  bottom: -24px; left: 24px;
  width: 90px; height: 3px;
  background: var(--brown);
}
.page-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-mid);
}
.page-breadcrumb a { color: var(--brown); transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--brown-dark); }
.page-breadcrumb span { color: var(--grey-light); margin: 0 6px; }

.mv-section { padding: 100px 0; background: var(--white); }
.mv-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}
.mv-row:last-child { margin-bottom: 0; }
.mv-row-reverse .mv-image { order: 2; }
.mv-row-reverse .mv-text { order: 1; }
.mv-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mv-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mv-text p { color: var(--text-mid); line-height: 1.85; font-size: 0.98rem; margin-top: 18px; }
.mv-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--brown);
  font-size: 1.15rem;
  margin-top: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--brown-muted);
}

.contact-page { padding: 80px 0 120px; background: var(--cream); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }
.info-box {
  background: var(--white);
  border: 1px solid rgba(107,58,31,0.1);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.info-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--brown);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.info-box:hover::before { transform: scaleY(1); }
.info-box:hover { box-shadow: var(--shadow-lg); border-color: var(--brown-muted); transform: translateY(-3px); }
.info-icon {
  font-size: 1.4rem; flex-shrink: 0; line-height: 1;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  color: var(--cream);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(107,58,31,0.25);
}
.info-box strong {
  display: block; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--brown); margin-bottom: 6px;
}
.info-box p { font-size: 1.05rem; color: var(--text-dark); font-weight: 600; }
.info-box p a { color: var(--text-dark); transition: color 0.2s; }
.info-box p a:hover { color: var(--brown); }
.info-box-phone .info-icon { background: linear-gradient(135deg, #D9622B 0%, var(--brown-light) 100%); }

.contact-visual-col { display: flex; flex-direction: column; gap: 20px; }
.logo-box {
  background: linear-gradient(145deg, var(--brown-dark) 0%, #2a1405 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.logo-box-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(196,149,106,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.logo-box img {
  width: 130px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.logo-box span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.logo-box small {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  color: var(--brown-muted);
  text-align: center;
  position: relative;
  z-index: 1;
}
.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 320px;
  border: 1px solid rgba(107,58,31,0.1);
  position: relative;
}
.map-box iframe { width: 100%; height: 100%; display: block; }
.map-open-btn {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown-dark);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
  z-index: 2;
}
.map-open-btn:hover { background: var(--brown); transform: translateX(-50%) translateY(-2px); }
.map-open-btn span { font-size: 1rem; line-height: 1; }

@media (max-width: 900px) {
  .mv-row { grid-template-columns: 1fr; gap: 32px; }
  .mv-row-reverse .mv-image { order: 1; }
  .mv-row-reverse .mv-text { order: 2; }
  .mv-image { max-height: 360px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .map-box { height: 280px; }
}

@media (max-width: 768px) {
  .page-header { padding: 110px 0 40px; }
  .mv-section { padding: 60px 0; }
  .mv-row { margin-bottom: 56px; }
  .contact-page { padding: 50px 0 80px; }
  .map-open-btn { font-size: 0.78rem; padding: 10px 18px; bottom: 12px; }
}

@media (max-width: 380px) {
  .nav-inner { padding: 0 14px; }
  .logo-text { font-size: 0.95rem; }
  .container { padding: 0 16px; }
  .hero-left { padding: 44px 16px 28px; }
  .hero-title { font-size: 2rem !important; }
  .hero-subtitle { font-size: 0.9rem; }
  .section-title { font-size: 1.6rem; }
  .btn { padding: 13px 20px; font-size: 0.85rem; }
  .info-box { padding: 20px 18px; gap: 14px; }
  .info-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .map-box { height: 240px; }
  .map-open-btn { font-size: 0.72rem; padding: 9px 14px; gap: 6px; }
  .footer-inner { padding-bottom: 40px; }
  .urban-list li { font-size: 0.88rem; }
}

@media (min-width: 481px) and (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-height: 480px) and (orientation: landscape) {
  .hero { min-height: 100vh; height: auto; padding-top: 64px; }
  .old-building-stage, .new-building-stage { display: none; }
  .hero-right { min-height: 220px; }
  .navbar .nav-inner { height: 60px; }
}

@media (min-width: 1600px) {
  .container { max-width: 1400px; }
  .nav-inner { max-width: 1500px; }
  .footer-inner { max-width: 1400px; }
  .footer-bottom { max-width: 1400px; }
  .hero-title { font-size: clamp(3.2rem, 5vw, 5.2rem); }
  .section-title { font-size: clamp(2.3rem, 3.5vw, 3.3rem); }
}

@media (hover: none) and (pointer: coarse) {
  .nav-links a, .btn, .map-open-btn, .info-box, .service-card, .why-card {
    -webkit-tap-highlight-color: rgba(107,58,31,0.15);
  }
  .btn { min-height: 48px; }
  .map-open-btn { min-height: 44px; }
  .hamburger { padding: 10px; }
}

@supports (padding: max(0px)) {
  .footer-bottom { padding-bottom: max(24px, env(safe-area-inset-bottom)); }
}

img, iframe, video { max-width: 100%; }
.map-box iframe { max-width: none; }

html, body { max-width: 100%; overflow-x: hidden; }

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(160deg, #1a0f06 0%, var(--brown-dark) 55%, #1a0f06 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.page-transition.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.page-transition-logo {
  width: 96px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.page-transition.active .page-transition-logo {
  opacity: 1;
  transform: scale(1);
}

body.page-enter .page-transition {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
body.page-enter .page-transition.fade-out {
  opacity: 0;
}
body.page-enter .page-transition-logo {
  opacity: 1;
  transform: scale(1);
}