:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --gold-dark: #9a7a30;
    --white: #f5f0e8;
    --white-dim: rgba(245,240,232,0.7);
    --white-faint: rgba(245,240,232,0.15);
    --border: rgba(201,168,76,0.2);
    --border-strong: rgba(201,168,76,0.5);
  }
  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ─── HEADER ─── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .logo-text span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
  }

  .logo-text span:last-child {
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--white-dim);
    text-transform: uppercase;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 36px;
  }

  nav a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-dim);
    transition: color 0.3s;
  }

  nav a:hover, nav a.active { color: var(--gold); }

  .nav-cta {
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 10px 22px !important;
    letter-spacing: 2px !important;
    transition: all 0.3s !important;
  }

  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
  }

  /* ─── HERO GALLERY ─── */
  .hero-gallery {
    margin-top: 72px;
    height: 100svh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
  }

  .gallery-slides {
    display: flex;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.77,0,0.175,1);
  }

  .gallery-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
    transform: scale(1.05);
  }

  .gallery-slide.active img { transform: scale(1); }

  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.1) 0%,
      rgba(10,10,10,0.05) 40%,
      rgba(10,10,10,0.7) 100%
    );
  }

  .gallery-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }

  .gallery-dot {
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
  }

  .gallery-dot.active {
    background: var(--gold);
    width: 48px;
  }

  .gallery-arrows {
    position: absolute;
    bottom: 40px;
    right: 48px;
    display: flex;
    gap: 12px;
    z-index: 10;
  }

  .gallery-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-strong);
    background: rgba(10,10,10,0.6);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
  }

  .gallery-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
  }

  .gallery-counter {
    position: absolute;
    bottom: 50px;
    left: 48px;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--white-dim);
  }

  .gallery-counter strong { color: var(--gold); }

  /* hero info overlay bottom */
  .hero-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px 48px 100px;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 100%);
    pointer-events: none;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
  }

  .hero-location {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--white-dim);
  }

  .hero-location svg { color: var(--gold); }

  /* ─── BREADCRUMB ─── */
  .breadcrumb {
    padding: 20px 48px;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .breadcrumb a {
    color: var(--white-dim);
    text-decoration: none;
    transition: color 0.3s;
  }

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

  .breadcrumb span {
    color: rgba(255,255,255,0.2);
    font-size: 12px;
  }

  .breadcrumb .current { color: var(--gold); }

  /* ─── MAIN LAYOUT ─── */
  .main-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .main-content > * {
    min-width: 0;
  }

  /* ─── LEFT COLUMN ─── */
  .left-col { padding: 64px 64px 64px 0; }

  /* Section label */
  .section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
  }

  /* Project description */
  .project-overview h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--white);
  }

  .project-overview h2 em {
    color: var(--gold);
    font-style: italic;
  }

  .project-overview p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--white-dim);
    margin-bottom: 20px;
  }

  /* Stats bar */
  .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    margin: 48px 0;
  }

  .stat-item {
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    position: relative;
  }

  .stat-item:last-child { border-right: none; }

  .stat-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 24px; right: 24px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
  }

  .stat-item:hover::after { transform: scaleX(1); }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-dim);
  }

  /* Features */
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: border-color 0.3s, background 0.3s;
  }

  .feature-item:hover {
    border-color: var(--gold-dark);
    background: rgba(201,168,76,0.04);
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: 1px solid var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
  }

  .feature-icon svg { width: 16px; height: 16px; }

  .feature-text strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 4px;
  }

  .feature-text span {
    font-size: 11px;
    color: var(--white-dim);
  }

  /* Floor plan */
  .floor-plan-section { margin-bottom: 48px; }

  .tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .tab {
    flex: 0 0 auto;
    padding: 12px 24px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-dim);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: all 0.3s;
  }

  .tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }

  .tab:hover { color: var(--gold); }

  .floor-plan-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: brightness(0.85);
    border: 1px solid var(--border);
  }

  /* Thumbnail strip */
  .thumb-strip {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .thumb-strip::-webkit-scrollbar { height: 2px; }
  .thumb-strip::-webkit-scrollbar-track { background: var(--dark2); }
  .thumb-strip::-webkit-scrollbar-thumb { background: var(--gold-dark); }

  .thumb {
    min-width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    border: 1px solid transparent;
  }

  .thumb.active, .thumb:hover {
    opacity: 1;
    border-color: var(--gold);
  }

  /* ─── RIGHT SIDEBAR ─── */
  .right-col {
    padding: 64px 0 64px 40px;
    border-left: 1px solid var(--border);
    position: sticky;
    top: 72px;
    align-self: start;
  }

  /* Status badge */
  .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 28px;
  }

  .status-badge.done {
    color: #4caf82;
    border: 1px solid rgba(76,175,130,0.4);
    background: rgba(76,175,130,0.08);
  }

  .status-badge.ongoing {
    color: var(--gold);
    border: 1px solid var(--border-strong);
    background: rgba(201,168,76,0.08);
  }

  .status-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
  }

  .status-badge.ongoing .dot {
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  /* Info list */
  .info-list {
    list-style: none;
    margin-bottom: 32px;
  }

  .info-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 16px;
  }

  .info-list li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

  .info-key {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
  }

  .info-val {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    text-align: right;
    overflow-wrap: anywhere;
  }

  /* Price block */
  .price-block {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }

  .price-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  }

  .price-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 8px;
  }

  .price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
  }

  .price-note {
    font-size: 10px;
    color: var(--white-dim);
    margin-top: 6px;
  }

  /* CTA buttons */
  .cta-primary {
    display: block;
    width: 100%;
    padding: 18px 24px;
    background: var(--gold);
    color: var(--black);
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 12px;
  }

  .cta-primary:hover { background: var(--gold-light); }

  .cta-secondary {
    display: block;
    width: 100%;
    padding: 17px 24px;
    background: transparent;
    color: var(--white);
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border-strong);
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
  }

  .cta-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* Contact person */
  .contact-person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
  }

  .contact-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-strong);
  }

  .contact-avatar-placeholder {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
  }

  .contact-info strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 2px;
  }

  .contact-info span {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--gold);
  }

  /* ─── MAP SECTION ─── */
  .map-section {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 48px;
  }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300;
    color: var(--white);
  }

  .section-title em { color: var(--gold); font-style: italic; }

  .map-container {
    width: 100%;
    height: 420px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(90%) contrast(85%) brightness(0.7);
  }

  .map-pin-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
  }

  .map-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
  }

  .map-loc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--white-dim);
    transition: border-color 0.3s;
  }

  .map-loc-item > div {
    min-width: 0;
  }

  .map-loc-item:hover { border-color: var(--gold-dark); }

  .map-loc-icon {
    color: var(--gold);
    flex-shrink: 0;
  }

  /* ─── RELATED PROJECTS ─── */
  .related-section {
    padding: 80px 48px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .related-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
  }

  .related-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .related-card:hover img { transform: scale(1.08); }

  .related-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
  }

  .related-tag {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .related-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
  }

  .related-loc {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--white-dim);
    margin-top: 4px;
  }

  .related-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: all 0.3s;
    transform: translateY(-6px);
  }

  .related-card:hover .related-arrow {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 64px 48px 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    font-size: 12px;
    line-height: 1.8;
    color: var(--white-dim);
    margin-top: 20px;
    max-width: 260px;
  }

  .footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
  }

  .footer-social {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-dim);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 12px;
  }

  .footer-social:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .footer-col h4 {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .footer-col ul li a {
    text-decoration: none;
    font-size: 12px;
    color: var(--white-dim);
    transition: color 0.3s;
  }

  .footer-col ul li a:hover { color: var(--gold); }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--white-dim);
  }

  .footer-contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.2);
  }

  .footer-bottom a {
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
  }

  .footer-bottom a:hover { color: var(--gold); }

  /* ─── SCROLL TO TOP ─── */
  .scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 100;
    color: var(--black);
  }

  .scroll-top.visible {
    opacity: 1;
    pointer-events: all;
  }

  .scroll-top:hover {
    background: var(--gold-light);
  }

  /* ─── MOBILE NAV ─── */
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  }

  .mobile-nav.open { transform: translateX(0); }

  .mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
  }

  .mobile-nav a:hover { color: var(--gold); }

  .mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
  }

  /* ─── ANIMATIONS ─── */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .main-content {
      grid-template-columns: 1fr;
      padding: 0 32px;
    }

    .left-col { padding: 48px 0; }

    .right-col {
      padding: 0 0 48px 0;
      border-left: none;
      border-top: 1px solid var(--border);
      position: static;
    }

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

  @media (max-width: 768px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .hamburger { display: flex; }

    .hero-info { padding: 32px 20px 90px; }
    .gallery-arrows { right: 20px; bottom: 28px; }
    .gallery-counter { left: 20px; bottom: 36px; }

    .breadcrumb { padding: 16px 20px; }

    .main-content { padding: 0 20px; }

    .tab { padding: 12px 18px; }

    .stats-bar {
      grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) {
      border-top: 1px solid var(--border);
    }

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

    .info-list li {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .info-val {
      width: 100%;
      text-align: left;
    }

    .map-section { padding: 48px 20px; }
    .map-container { height: 280px; }
    .map-locations { grid-template-columns: 1fr; }

    .related-section { padding: 48px 20px; }
    .related-grid { grid-template-columns: 1fr; gap: 16px; }

    footer { padding: 48px 20px 24px; }

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

    .footer-bottom {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }

    .footer-bottom div { margin-top: 8px; }

    .scroll-top { bottom: 20px; right: 20px; }

    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  }

  @media (max-width: 480px) {
    .hero-info { padding: 32px 16px 90px; }
    .breadcrumb { padding: 16px; }
    .main-content { padding: 0 16px; }
    .map-section { padding: 48px 16px; }
    .related-section { padding: 48px 16px; }
    footer { padding: 48px 16px 24px; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
  }

