*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #195e86;
    --teal: #5ecfd6;
    --navy-dark: #103d58;
    --navy-light: #1e6e98;
    --teal-light: #8edfe4;
    --teal-dark: #3ab0b8;
    --cream: #f8f6f2;
    --white: #ffffff;
    --gray: #6b7280;
    --dark: #0d1b26;
    --border: rgba(25,94,134,0.12);
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }
  body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 24px rgba(25,94,134,0.1); }
  .nav-logo svg { height: 38px; width: auto; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { font-size: 13px; font-weight: 500; color: var(--navy); text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--teal-dark); }
  .nav-cta {
    background: var(--navy); color: var(--white);
    padding: 10px 24px; border-radius: 2px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--navy-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy-dark) url('img/hero.jpeg') center/cover no-repeat;
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    padding: 72px 0 0;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: rgba(13, 27, 38, 0.75);
  }
  .hero-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: repeating-linear-gradient(45deg, #5ecfd6 0, #5ecfd6 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
  }
  .hero-glow {
    position: absolute; right: -200px; top: 50%; transform: translateY(-50%);
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(94,207,214,0.15) 0%, transparent 70%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 5%;
    display: grid; grid-template-columns: 1fr 440px; gap: 80px; align-items: center;
    width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 24px;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 28px; height: 1px; background: var(--teal);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 600; line-height: 1.05;
    color: var(--white); margin-bottom: 24px;
  }
  .hero h1 em { color: var(--teal); font-style: italic; }
  .hero-sub {
    font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.65);
    margin-bottom: 40px; max-width: 480px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--teal); color: var(--navy-dark);
    padding: 14px 32px; border-radius: 2px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: all 0.2s; display: inline-block;
  }
  .btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.3); color: var(--white);
    padding: 14px 32px; border-radius: 2px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: all 0.2s; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--teal); color: var(--teal); }
  .hero-stats {
    display: flex; gap: 40px; margin-top: 56px;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: nowrap;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 700; color: var(--white); line-height: 1;
    white-space: nowrap;
  }
  .stat-num span { color: var(--teal); }
  .stat-label { font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }

  /* ── BOOKING CARD ── */
  .booking-card {
    background: var(--white);
    border-radius: 4px;
    padding: 36px 32px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  }
  .booking-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: var(--navy);
    margin-bottom: 6px;
  }
  .booking-card p { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
  .form-group select, .form-group input {
    width: 100%; padding: 11px 14px;
    border: 1px solid var(--border); border-radius: 2px;
    font-size: 14px; font-family: 'Inter', sans-serif;
    color: var(--dark); background: var(--cream);
    appearance: none; outline: none;
    transition: border-color 0.2s;
  }
  .form-group select:focus, .form-group input:focus { border-color: var(--teal); background: white; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .btn-book {
    width: 100%; padding: 14px;
    background: var(--navy); color: white;
    border: none; border-radius: 2px; cursor: pointer;
    font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    transition: background 0.2s; margin-top: 8px;
  }
  .btn-book:hover { background: var(--navy-light); }
  .price-hint { font-size: 11px; color: var(--gray); text-align: center; margin-top: 12px; }
  .price-hint strong { color: var(--teal-dark); }

  /* ── SECTIONS ── */
  section { padding: 100px 5%; }
  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal-dark); margin-bottom: 16px;
  }
  .section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--teal-dark); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 54px); font-weight: 600;
    color: var(--navy); line-height: 1.1; margin-bottom: 20px;
  }
  .section-title em { color: var(--teal-dark); font-style: italic; }
  .section-sub { font-size: 16px; line-height: 1.7; color: var(--gray); max-width: 560px; }
  .container { max-width: 1200px; margin: 0 auto; }

  /* ── APARTMENTS ── */
  #apartments { background: var(--cream); }
  #apartments .fade-up { text-align: center; }
  #apartments .section-sub { margin: 0 auto; }
  .apt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
  .apt-card {
    background: white; border-radius: 4px;
    overflow: hidden; border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .apt-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(25,94,134,0.12); }
  .apt-card-image {
    height: 260px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  }

  /* ── CAROUSEL ── */
  .carousel {
    width: 100%; height: 100%; position: relative; overflow: hidden;
  }
  .carousel-track {
    display: flex; width: 100%; height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .carousel-slide {
    min-width: 100%; height: 100%;
    background-size: cover; background-position: center; flex-shrink: 0;
    position: relative;
  }
  .carousel-slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,27,38,0.15) 0%, rgba(13,27,38,0.35) 100%);
  }
  .carousel-slide img {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
  }
  .carousel-dots {
    position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 7px; z-index: 2;
  }
  .carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35); cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }
  .carousel-dot.active { background: white; transform: scale(1.3); }

  .apt-card-image .room-visual {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .apt-visual-1 { background: linear-gradient(160deg, #103d58 0%, #195e86 50%, #1e7a9a 100%); }
  .apt-visual-2 { background: linear-gradient(160deg, #0d3347 0%, #175278 50%, #1a6080 100%); }
  .room-icon { opacity: 0.15; }
  .apt-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--teal); color: var(--navy-dark);
    padding: 5px 14px; border-radius: 2px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  }
  .apt-card-body { padding: 28px 28px 32px; }
  .apt-type { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 8px; }
  .apt-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
  .apt-desc { font-size: 14px; line-height: 1.7; color: var(--gray); margin-bottom: 24px; }
  .apt-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .feat-tag {
    background: var(--cream); border: 1px solid var(--border);
    padding: 5px 12px; border-radius: 2px;
    font-size: 12px; color: var(--navy); font-weight: 500;
  }
  .apt-pricing { border-top: 1px solid var(--border); padding-top: 24px; }
  .price-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
  .price-type { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
  .price-amount { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--navy); }
  .price-amount small { font-size: 13px; font-weight: 400; color: var(--gray); font-family: 'Inter', sans-serif; }
  .price-note { font-size: 11px; color: var(--teal-dark); margin-top: 4px; }
  .apt-cta { display: block; text-align: center; margin-top: 20px; }
  .btn-apt {
    display: block; width: 100%; padding: 13px;
    background: var(--navy); color: white; text-decoration: none;
    border-radius: 2px; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    transition: background 0.2s; text-align: center;
  }
  .btn-apt:hover { background: var(--teal-dark); }
  .btn-apt.outline {
    background: transparent; color: var(--navy);
    border: 1px solid var(--navy);
  }
  .btn-apt.outline:hover { background: var(--navy); color: white; }

  /* ── AMENITIES ── */
  .amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-top: 56px; border: 1px solid var(--border); }
  .amenity-item { background: white; padding: 32px 24px; text-align: center; transition: background 0.2s; }
  .amenity-item:hover { background: var(--cream); }
  .amenity-icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
  .amenity-icon svg { width: 22px; height: 22px; fill: white; }
  .amenity-name { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.02em; }
  .amenity-desc { font-size: 12px; color: var(--gray); line-height: 1.5; }

  /* ── PRICING ── */
  #pricing { background: var(--navy-dark); }
  #pricing .section-title { color: white; }
  #pricing .section-label { color: var(--teal); }
  #pricing .section-label::before { background: var(--teal); }
  #pricing .section-sub { color: rgba(255,255,255,0.55); }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
  .price-card {
    border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
    padding: 32px 28px; position: relative; transition: border-color 0.2s;
  }
  .price-card:hover { border-color: var(--teal); }
  .price-card.featured {
    border-color: var(--teal); background: rgba(94,207,214,0.05);
  }
  .featured-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--teal); color: var(--navy-dark);
    padding: 4px 16px; border-radius: 20px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .price-card-type { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 8px; }
  .price-card-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: white; margin-bottom: 6px; }
  .price-card-duration { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
  .price-big { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; color: white; line-height: 1; }
  .price-big sup { font-size: 22px; vertical-align: super; color: var(--teal); }
  .price-big sub { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.45); font-family: 'Inter', sans-serif; vertical-align: baseline; }
  .price-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 24px 0; }
  .price-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
  .price-feature::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
  .btn-price {
    display: block; width: 100%; padding: 12px;
    background: transparent; color: var(--teal);
    border: 1px solid var(--teal); border-radius: 2px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; text-align: center; margin-top: 24px;
    transition: all 0.2s; cursor: pointer;
  }
  .btn-price:hover, .price-card.featured .btn-price { background: var(--teal); color: var(--navy-dark); }

  .rate-card {
    margin-top: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 28px 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .rate-table { min-width: 520px; }

  /* ── ABOUT ── */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual {
    height: 520px;
    background: linear-gradient(rgba(13,27,38,0.55), rgba(13,27,38,0.55)), url('img/hero.jpeg') center/cover no-repeat;
    border-radius: 4px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .about-visual-inner { position: relative; z-index: 2; text-align: center; }
  .about-visual-accent {
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--teal);
  }
  .about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-style: italic; color: white; line-height: 1.4;
    padding: 0 40px; opacity: 0.9;
  }
  .about-location { margin-top: 20px; font-size: 13px; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; }
  .about-text p { font-size: 16px; line-height: 1.8; color: var(--gray); margin-bottom: 20px; }
  .about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
  .pillar { padding: 20px; border: 1px solid var(--border); border-radius: 2px; border-left: 3px solid var(--teal); }
  .pillar-name { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .pillar-desc { font-size: 12px; color: var(--gray); line-height: 1.5; }

  /* ── LOCATION ── */
  #location { background: var(--cream); }
  .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 56px; }
  .location-map {
    height: 400px;
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .map-placeholder {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    max-width: calc(100% - 24px); width: max-content;
    text-align: center; color: rgba(255,255,255,0.95);
    background: var(--navy); padding: 8px 16px; border-radius: 20px;
    box-shadow: 0 4px 16px rgba(13,27,38,0.4);
  }
  .map-placeholder svg { width: 48px; height: 48px; fill: var(--teal); margin-bottom: 12px; }
  .map-placeholder p { font-size: 12px; white-space: nowrap; }
  .location-pin {
    position: absolute; width: 16px; height: 16px; border-radius: 50%;
    background: var(--teal); border: 3px solid white;
    box-shadow: 0 0 0 6px rgba(94,207,214,0.3);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
  }
  .nearby-list { list-style: none; }
  .nearby-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--dark); }
  .nearby-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
  .nearby-dist { margin-left: auto; font-size: 12px; color: var(--gray); font-weight: 500; }

  /* ── CONTACT ── */
  #contact { background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-form { background: var(--cream); padding: 40px; border-radius: 4px; }
  .contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
  .contact-form p { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
  .contact-info { padding-top: 20px; }
  .contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
  .contact-detail { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
  .contact-detail-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-detail-icon svg { width: 18px; height: 18px; fill: white; }
  .contact-detail-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); font-weight: 600; margin-bottom: 4px; }
  .contact-detail-value { font-size: 15px; color: var(--navy); font-weight: 500; }
  .social-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
  .social-btn {
    padding: 9px 20px; border: 1px solid var(--border); border-radius: 2px;
    font-size: 12px; font-weight: 600; color: var(--navy); text-decoration: none;
    letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s;
  }
  .social-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

  /* ── FOOTER ── */
  footer { background: var(--dark); padding: 60px 5% 32px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
  .footer-brand svg .cls-6, .footer-brand svg .cls-7 { fill: white !important; }
  .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.4); margin-top: 16px; max-width: 280px; }
  .footer-col h4 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
  .footer-teal { color: var(--teal); }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: none; }

  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 56px; }
    .apt-grid, .about-grid, .contact-grid, .location-grid, .footer-grid { grid-template-columns: 1fr; }
    .about-grid, .contact-grid, .location-grid { gap: 56px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { column-gap: 40px; }
    .footer-bottom { flex-wrap: wrap; gap: 8px; }
    nav { padding: 0 4%; }
    .nav-links { display: none; }
  }

  @media (max-width: 640px) {
    section { padding: 72px 5%; }
    .hero { min-height: auto; padding: 72px 0 48px; }
    .hero-content { gap: 32px; }
    .hero h1 { font-size: 40px; margin-bottom: 14px; }
    .hero-eyebrow { margin-bottom: 14px; }
    .hero-left { text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-actions .btn-primary, .hero-actions .btn-outline { padding: 12px 22px; font-size: 12px; }
    .hero-sub { font-size: 14px; margin-bottom: 24px; margin-left: auto; margin-right: auto; }
    .hero-stats { justify-content: center; gap: 20px; margin-top: 20px; margin-bottom: 0; padding-top: 20px; }
    .stat-num { font-size: 26px; }
    .booking-card { padding: 22px 18px; }
    .booking-card h3 { font-size: 20px; }
    .booking-card p { margin-bottom: 16px; }
    .booking-card .form-group { margin-bottom: 10px; }
    .booking-card .form-group select, .booking-card .form-group input { padding: 9px 12px; font-size: 13px; }
    .booking-card .form-row { gap: 10px; }
    .booking-card .btn-book { padding: 12px; margin-top: 4px; }
    .booking-card .price-hint { margin-top: 8px; }
    .apt-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .feat-tag { text-align: center; }
    .price-row { display: flex; justify-content: space-between; align-items: baseline; }
    .apt-card-body { padding: 22px 20px 26px; }
    .about-grid, .contact-grid, .location-grid { gap: 40px; }
    #about .about-text { text-align: center; }
    #about .about-pillars { text-align: left; }
    #location .container { text-align: center; }
    #location .nearby-list { text-align: left; }
    #contact .contact-info { text-align: center; }
    #contact .contact-detail { text-align: left; justify-content: flex-start; }
    #contact .social-row { justify-content: center; }
    footer { text-align: center; }
    .footer-brand p { margin: 16px auto 0; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .about-visual { height: 380px; }
    .about-visual-inner { padding: 0 24px; }
    .about-quote { font-size: 22px; padding: 0; }
    .about-pillars { grid-template-columns: 1fr; }
    .location-map { height: 300px; }
    .map-placeholder { left: 12px; right: 12px; transform: none; width: auto; }
    .map-placeholder p { white-space: normal; }
    .contact-form { padding: 28px 22px; }
    .rate-card { padding: 20px 16px; }
    nav { height: 64px; }
    .nav-logo svg { height: 30px; }
    .nav-cta { padding: 9px 16px; font-size: 11px; }
    .footer-grid { gap: 40px; }
  }

  @media (max-width: 400px) {
    .hero-stats { gap: 12px; }
    .stat-num { font-size: 24px; }
    .stat-label { font-size: 9px; }
    .hero-actions .btn-primary, .hero-actions .btn-outline { padding: 13px 22px; font-size: 12px; }
  }