﻿/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ============================================ */

/* ===== LARGE SCREENS (1440px+) ===== */
@media (min-width: 1440px) {
  .nav-container {
    padding: 0 80px;
  }

  .hero {
    padding: 140px 80px 100px;
  }

  .hero-container,
  .about-container,
  .contact-container {
    padding: 0 60px;
  }

  .services,
  .portfolio,
  .gallery,
  .video-section,
  .why-choose,
  .process,
  .testimonials,
  .faq,
  .contact {
    padding: 140px 80px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.8rem;
  }
}

/* ===== LAPTOP (1024px - 1439px) ===== */
@media (max-width: 1439px) and (min-width: 1024px) {
  .nav-container {
    padding: 0 40px;
  }

  .nav {
    gap: 32px;
  }

  .hero-container {
    gap: 60px;
  }

  .about-container {
    gap: 60px;
  }

  .hero-image-wrapper {
    height: 500px;
  }

  .about-image {
    height: 450px;
  }

  .award-card {
    width: 240px;
    padding: 20px;
    bottom: -30px;
    right: -30px;
  }

  .award-card h3 {
    font-size: 1.2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ===== TABLET (768px - 1023px) ===== */
@media (max-width: 1023px) {
  .header {
    padding: 16px 0;
  }

  .header.scrolled {
    padding: 8px 0;
  }

  .nav-container {
    padding: 0 24px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 90vh;
    padding: 100px 24px 60px;
    margin-top: 70px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-slider-controls {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .about {
    padding: 100px 24px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    height: 350px;
    order: -1;
  }

  .about-content {
    text-align: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-counter {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .services {
    padding: 100px 24px;
  }

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

  .video-showcase {
    padding: 100px 24px;
  }

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

  .portfolio {
    padding: 100px 24px;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

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

  .gallery {
    padding: 100px 24px;
  }

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

  .lightbox-prev {
    left: -40px;
  }

  .lightbox-next {
    right: -40px;
  }

  .reviews {
    padding: 100px 24px;
  }

  .review-slider {
    max-width: 100%;
  }

  .review-control {
    display: none;
  }

  .inquiry {
    padding: 100px 24px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 100px 24px;
  }

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

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

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

/* ===== MOBILE LANDSCAPE (max-height: 600px) ===== */
@media (max-height: 600px) {
  .hero {
    min-height: auto;
    padding: 80px 40px 40px;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-container {
    gap: 40px;
  }

  .hero-image-wrapper {
    height: 300px;
  }
}

/* ===== MOBILE (480px - 767px) ===== */
@media (max-width: 767px) {
  :root {
    font-size: 15px;
  }

  .header {
    padding: 12px 0;
  }

  .header.scrolled {
    padding: 8px 0;
  }

  .nav-container {
    padding: 0 16px;
  }

  .logo {
    height: 28px;
  }

  .menu-toggle {
    padding: 6px;
  }

  .menu-toggle span {
    width: 20px;
    height: 1.5px;
  }

  .hero {
    min-height: 85vh;
    padding: 80px 16px 40px;
    margin-top: 60px;
  }

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

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 12px 24px;
  }

  .btn-large {
    width: 100%;
  }

  .hero-slider-controls {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
  }

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

  .stat-number {
    font-size: 1.8rem;
  }

  .scroll-indicator {
    display: none;
  }

  .about {
    padding: 80px 16px;
  }

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

  .about-image {
    height: 280px;
    order: -1;
  }

  .about-badge {
    position: static;
    margin: 16px auto 0;
    width: fit-content;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .about-text {
    font-size: 0.95rem;
  }

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

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

  .services {
    padding: 80px 16px;
  }

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

  .section-header h2 {
    font-size: 1.6rem;
  }

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

  .service-card {
    padding: 24px;
  }

  .portfolio {
    padding: 80px 16px;
  }

  .portfolio-container .section-header {
    margin-bottom: 40px;
  }

  .portfolio-filters {
    gap: 8px;
    margin-bottom: 40px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

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

  .portfolio-item {
    height: 250px;
  }

  .portfolio-overlay {
    padding: 24px;
  }

  .portfolio-title {
    font-size: 1.1rem;
  }

  .portfolio-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .gallery {
    padding: 80px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    grid-auto-rows: 200px;
  }

  .gallery-item {
    height: auto;
  }

  .gallery-zoom-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .lightbox {
    padding: 20px;
  }

  .lightbox-close {
    top: -40px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .lightbox-prev {
    left: -60px;
  }

  .lightbox-next {
    right: -60px;
  }

  .video-section {
    padding: 80px 16px;
  }

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

  .why-choose {
    padding: 80px 16px;
  }

  .why-choose-container .section-header {
    margin-bottom: 60px;
  }

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

  .why-card {
    padding: 24px;
  }

  .why-icon {
    font-size: 2rem;
  }

  .process {
    padding: 80px 16px;
  }

  .process-container .section-header {
    margin-bottom: 60px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-number {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .process-item h3 {
    font-size: 0.95rem;
  }

  .testimonials {
    padding: 80px 16px;
  }

  .testimonials-container .section-header {
    margin-bottom: 60px;
  }

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

  .testimonial-card {
    padding: 24px;
  }

  .faq {
    padding: 80px 16px;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-header {
    padding: 20px;
    font-size: 0.95rem;
  }

  .faq-text {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }

  .faq-item.open .faq-body {
    max-height: 600px;
  }

  .contact {
    padding: 80px 16px;
  }

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

  .contact-form,
  .contact-info {
    gap: 16px;
  }

  .contact-form h2,
  .contact-info h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .contact-cards {
    gap: 16px;
  }

  .contact-card {
    padding: 20px;
    gap: 12px;
  }

  .footer {
    padding: 60px 16px 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-col h3 {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-newsletter input {
    font-size: 0.85rem;
  }

  .footer-newsletter button {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .footer-divider {
    padding-top: 30px;
    margin-top: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .footer-copyright {
    font-size: 0.8rem;
    text-align: center;
    width: 100%;
  }

  .footer-bottom-links {
    gap: 16px;
    justify-content: center;
    width: 100%;
  }

  .footer-bottom-links a {
    font-size: 0.8rem;
  }
}

/* ===== SMALL PHONE (< 480px) ===== */
@media (max-width: 479px) {
  :root {
    font-size: 14px;
  }

  .nav-container {
    padding: 0 12px;
  }

  .logo {
    height: 24px;
  }

  .menu-toggle span {
    width: 18px;
  }

  .hero {
    min-height: 80vh;
    padding: 70px 12px 30px;
    margin-top: 55px;
  }

  .hero-container {
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-image-wrapper {
    height: 240px;
  }

  .hero-stats {
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .about {
    padding: 60px 12px;
  }

  .about-image {
    height: 240px;
  }

  .about-badge {
    padding: 12px 20px;
  }

  .about-badge .year {
    font-size: 1.4rem;
  }

  .about-badge .label {
    font-size: 0.65rem;
  }

  .services {
    padding: 60px 12px;
  }

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

  .service-card {
    padding: 20px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .portfolio {
    padding: 60px 12px;
  }

  .portfolio-filters {
    margin-bottom: 30px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .portfolio-grid {
    gap: 12px;
  }

  .portfolio-item {
    height: 200px;
  }

  .gallery {
    padding: 60px 12px;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
    gap: 8px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .video-section {
    padding: 60px 12px;
  }

  .why-choose {
    padding: 60px 12px;
  }

  .why-card {
    padding: 20px;
  }

  .why-icon {
    font-size: 1.8rem;
  }

  .process {
    padding: 60px 12px;
  }

  .process-grid {
    gap: 20px;
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .testimonials {
    padding: 60px 12px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-avatar {
    width: 45px;
    height: 45px;
  }

  .testimonial-name {
    font-size: 0.9rem;
  }

  .faq {
    padding: 60px 12px;
  }

  .faq-header {
    padding: 16px;
    font-size: 0.9rem;
  }

  .faq-text {
    padding: 0 16px 16px;
  }

  .contact {
    padding: 60px 12px;
  }

  .footer {
    padding: 40px 12px 20px;
  }

  .footer-content {
    gap: 30px;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .scroll-indicator,
  .btn,
  .contact-form,
  .footer-newsletter {
    display: none !important;
  }

  body {
    background-color: white;
    color: black;
  }

  section {
    page-break-inside: avoid;
  }

  .portfolio-overlay,
  .gallery-overlay,
  .video-overlay {
    display: none !important;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3a3a3a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-light: #999999;
    --border-color: #3a3a3a;
    --border-light: #2d2d2d;
  }

  body {
    background-color: var(--bg-primary);
  }

  .footer {
    background-color: #0a0a0a;
  }

  .header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
  }
}

/* ===== HIGH DPI / RETINA DISPLAY ===== */
@media (min-resolution: 192dpi) {
  img {
    image-rendering: crisp-edges;
  }
}

/* ==========================================
   ULTRA PREMIUM NAVBAR + HERO REDESIGN
========================================== */
:root {
  --gold: #C6A96A;
  --gold-light: #E4D2A2;
  --primary: #111111;
  --secondary: #565656;
  --white: #ffffff;
  --heading: 'Cormorant Garamond', serif;
  --body: 'Plus Jakarta Sans', sans-serif;
  --transition: 420ms cubic-bezier(.16, 1, .3, 1);
}

body { font-family: var(--body); background: #fff; color: var(--primary); }

.luxury-nav {
  position: fixed;
  top: 22px;
  left: 50%;
  width: min(96vw, 1400px);
  height: 84px;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, .08);
  border-bottom-color: rgba(198, 169, 106, .35);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(28px) saturate(155%);
  -webkit-backdrop-filter: blur(28px) saturate(155%);
  box-shadow: 0 28px 80px rgba(17, 17, 17, .10), inset 0 1px 0 rgba(255,255,255,.85);
  transition: top var(--transition), height var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.luxury-nav.scrolled {
  top: 12px;
  height: 72px;
  background: rgba(255, 255, 255, .86);
  border-color: rgba(17, 17, 17, .10);
  box-shadow: 0 22px 64px rgba(17, 17, 17, .13), inset 0 1px 0 rgba(255,255,255,.95);
}

.nav-container { width: 100%; max-width: none; padding: 0 18px 0 30px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.nav-brand { display: inline-flex; align-items: center; min-width: 178px; }
.nav-brand img { width: auto; height: 62px; object-fit: contain; filter: drop-shadow(0 10px 16px rgba(17,17,17,.08)); transition: transform var(--transition), height var(--transition); }
.luxury-nav.scrolled .nav-brand img { height: 54px; }
.nav-brand:hover img { transform: translateY(-1px) scale(1.035); }

.nav-menu { display: flex; align-items: center; gap: clamp(12px, 1.35vw, 26px); padding: 0 8px; }
.nav-link { position: relative; padding: 8px 0; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(17,17,17,.72); }
.nav-link::before { content: ''; position: absolute; left: 50%; bottom: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0; transform: translate(-50%, 6px); transition: var(--transition); }
.nav-link::after { content: ''; position: absolute; left: 50%; bottom: -2px; width: 0; height: 2px; border-radius: 99px; background: var(--gold); transform: translateX(-50%); transition: var(--transition); }
.nav-link:hover { color: #111; }
.nav-link:hover::before { opacity: 1; transform: translate(-50%, 0); }
.nav-link:hover::after { width: 18px; }
.nav-link.active { color: #111; }
.nav-link.active::before { opacity: 1; transform: translate(-50%, 0); }
.nav-link.active::after { width: 18px; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone, .nav-cta, .mobile-phone, .mobile-admin, .btn-primary, .btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 60px; white-space: nowrap; }
.nav-phone { height: 44px; min-height: 44px; padding: 0 16px; border: 1px solid rgba(17,17,17,.10); background: rgba(255,255,255,.58); color: #111; font-size: 12px; font-weight: 700; letter-spacing: .02em; box-shadow: inset 0 1px 0 rgba(255,255,255,.9); }
.nav-phone i { color: var(--gold); font-size: 12px; }
.nav-phone:hover { transform: translateY(-2px); border-color: #111; background: #111; color: #fff; box-shadow: 0 18px 38px rgba(17,17,17,.18); }
.nav-cta { height: 44px; min-height: 44px; padding: 0 20px; background: #111; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 18px 38px rgba(17,17,17,.19); overflow: hidden; }
.nav-cta i, .btn-primary i, .btn-secondary i { font-size: 12px; transition: transform var(--transition); }
.nav-cta:hover { transform: translateY(-2px); background: var(--gold); color: #111; box-shadow: 0 22px 46px rgba(198,169,106,.32); }
.nav-cta:hover i, .btn-primary:hover i, .btn-secondary:hover i { transform: translateX(4px); }

.nav-toggle { display: none; width: 48px; height: 48px; border-radius: 50%; background: #111; box-shadow: 0 18px 38px rgba(17,17,17,.18); align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.nav-toggle span { width: 19px; height: 1.5px; background: #fff; border-radius: 99px; transition: var(--transition); }
.nav-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Mobile menu layout owned by css/shell-polish.css */
.mobile-phone { min-height: 48px; border: 1px solid rgba(17,17,17,.10); background: rgba(255,255,255,.76); font-weight: 800; }
.mobile-admin { min-height: 48px; background: #111; color: #fff; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.hero { position: relative; min-height: 880px; height: 100svh; padding: 0; display: flex; align-items: stretch; overflow: hidden; background: #fff; isolation: isolate; }
.hero-background, .hero-slider, .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { opacity: 0; transform: scale(1.01); transition: opacity 1500ms ease, transform 1800ms ease; }
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; transform: scale(1.09); animation: heroLuxuryZoom 9500ms ease-out forwards; will-change: transform; }
.hero-slide.active img { animation: heroLuxuryZoom 9500ms ease-out forwards; }
@keyframes heroLuxuryZoom { from { transform: scale(1.09); } to { transform: scale(1.015); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 30%, rgba(255,255,255,.54) 51%, rgba(255,255,255,.14) 76%, rgba(255,255,255,.05) 100%), linear-gradient(180deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,0) 30%, rgba(17,17,17,.10) 100%); }

.hero-content { position: relative; z-index: 5; width: min(100%, 1480px); height: 100%; margin: 0 auto; padding: 178px 54px 78px; display: grid; grid-template-columns: minmax(0, 650px) 1fr; align-items: center; gap: 56px; }
.hero-content-inner { max-width: 650px; }
.hero-label { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 28px; padding: 12px 18px; border-radius: 999px; border: 1px solid rgba(198,169,106,.32); background: rgba(255,255,255,.66); backdrop-filter: blur(16px); color: #8F7340; box-shadow: 0 18px 44px rgba(17,17,17,.07), inset 0 1px 0 rgba(255,255,255,.9); font-size: 11px; line-height: 1; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.hero-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-title { margin: 0 0 28px; font-family: var(--heading); font-size: clamp(58px, 7.6vw, 114px); font-weight: 600; line-height: .92; letter-spacing: 0; color: #111; text-wrap: balance; }
.hero-title em { display: inline-block; color: var(--gold); font-style: italic; font-weight: 500; }
.hero-subtitle { max-width: 600px; margin: 0 0 42px; color: rgba(17,17,17,.68); font-size: clamp(16px, 1.25vw, 20px); font-weight: 400; line-height: 1.95; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary, .btn-secondary { min-height: 64px; padding: 0 32px; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transition: var(--transition); overflow: hidden; }
.btn-primary { background: #111; color: #fff; box-shadow: 0 24px 56px rgba(17,17,17,.20); }
.btn-secondary { background: rgba(255,255,255,.70); color: #111; border: 1px solid rgba(17,17,17,.26); backdrop-filter: blur(14px); }
.btn-primary:hover { background: var(--gold); color: #111; transform: translateY(-4px); box-shadow: 0 28px 62px rgba(198,169,106,.34); }
.btn-secondary:hover { background: #111; color: #fff; border-color: #111; transform: translateY(-4px); box-shadow: 0 24px 50px rgba(17,17,17,.16); }
.btn-primary::before, .btn-secondary::before { content: ''; position: absolute; inset: 0 auto 0 -130%; width: 80%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent); transform: skewX(-18deg); transition: left 760ms ease; }
.btn-primary:hover::before, .btn-secondary:hover::before { left: 140%; }

.hero-stats { align-self: end; justify-self: end; display: grid; grid-template-columns: repeat(3, minmax(118px, 1fr)); gap: 0; width: min(590px, 100%); padding: 24px; border-radius: 30px; border: 1px solid rgba(255,255,255,.66); background: rgba(255,255,255,.62); backdrop-filter: blur(26px) saturate(140%); -webkit-backdrop-filter: blur(26px) saturate(140%); box-shadow: 0 34px 88px rgba(17,17,17,.15), inset 0 1px 0 rgba(255,255,255,.82); }
.hero-stat { min-width: 0; padding: 10px 22px; border-right: 1px solid rgba(17,17,17,.08); }
.hero-stat:last-child { border-right: 0; }
.hero-stat::after { display: none !important; }
.stat-number { display: block; margin-bottom: 9px; font-family: var(--heading); font-size: clamp(34px, 3.3vw, 54px); line-height: .9; font-weight: 700; color: #111; }
.stat-label { display: block; color: rgba(17,17,17,.56); font-size: 10px; line-height: 1.65; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-scroll { position: absolute; left: clamp(24px, 4vw, 70px); bottom: 38px; z-index: 8; display: flex; align-items: center; gap: 16px; color: #111; }
.hero-scroll span { font-size: 10px; font-weight: 800; letter-spacing: .32em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 74px; background: rgba(17,17,17,.18); overflow: hidden; }
.scroll-line::before { content: ''; position: absolute; top: -45%; left: 0; width: 100%; height: 42%; background: var(--gold); animation: scrollMove 1800ms cubic-bezier(.65,0,.35,1) infinite; }
@keyframes scrollMove { to { transform: translateY(190px); } }
.hero::before, .hero::after { display: none; }
.hero-label, .hero-title, .hero-subtitle, .hero-cta, .hero-stats { opacity: 0; transform: translateY(28px); animation: heroFadeUp 900ms cubic-bezier(.16,1,.3,1) forwards; }
.hero-title { animation-delay: 120ms; }
.hero-subtitle { animation-delay: 240ms; }
.hero-cta { animation-delay: 360ms; }
.hero-stats { animation-delay: 520ms; }
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1180px) {
  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .luxury-nav { height: 76px; }
  .hero { min-height: 820px; }
  .hero-content { grid-template-columns: 1fr; align-content: center; align-items: center; padding: 150px 34px 70px; }
  .hero-stats { justify-self: start; width: min(620px, 100%); }
}

@media (max-width: 767px) {
  .luxury-nav { top: 14px; width: calc(100% - 24px); height: 68px; border-radius: 24px; }
  .luxury-nav.scrolled { top: 8px; height: 64px; }
  .nav-container { padding: 0 10px 0 18px; }
  .nav-brand { min-width: auto; }
  .nav-brand img, .luxury-nav.scrolled .nav-brand img { height: 48px; }
  .nav-toggle { width: 46px; height: 46px; }
  .hero { min-height: 780px; height: auto; padding: 0; margin-top: 0; }
  .hero-slide img { object-position: 70% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.91) 43%, rgba(255,255,255,.50) 72%, rgba(255,255,255,.18) 100%); }
  .hero-content { min-height: 780px; padding: 118px 20px 34px; align-content: start; gap: 32px; }
  .hero-label { margin-bottom: 22px; max-width: 100%; font-size: 10px; letter-spacing: .18em; }
  .hero-label::before { width: 18px; }
  .hero-title { font-size: clamp(36px, 10.5vw, 48px); line-height: 1.05; margin-bottom: 22px; }
  .hero-subtitle { font-size: 14px; line-height: 1.7; margin-bottom: 30px; max-width: 100%; }
  .hero-cta { align-items: stretch; flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; min-height: 58px; padding: 0 22px; }
  .hero-stats { width: 100%; grid-template-columns: 1fr; padding: 12px 20px; border-radius: 24px; }
  .hero-stat { padding: 18px 0; text-align: center; border-right: 0; border-bottom: 1px solid rgba(17,17,17,.08); }
  .hero-stat:last-child { border-bottom: 0; }
  .stat-number { font-size: 42px; }
  .hero-scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .luxury-nav, .nav-link, .hero-slide, .hero-slide img, .hero-label, .hero-title, .hero-subtitle, .hero-cta, .hero-stats, .scroll-line::before { animation: none !important; transition: none !important; }
  .hero-label, .hero-title, .hero-subtitle, .hero-cta, .hero-stats { opacity: 1; transform: none; }
}


/* ==========================================
   FINAL AWWWARDS NAVBAR + HERO POLISH ONLY
========================================== */
.luxury-nav {
  width: min(96vw, 1540px);
  height: 84px;
}

.nav-container { gap: 20px; }
.nav-brand { min-width: 150px; }
.nav-menu { gap: clamp(16px, 1.55vw, 30px); padding: 0 8px; }
.nav-link { font-size: 11px; letter-spacing: .14em; }
.nav-link.active { color: #111; }
.nav-link.active::before { opacity: 1; transform: translate(-50%, 0); }
.nav-link.active::after { width: 120%; }
.nav-phone { padding-inline: 17px; }
.nav-cta { padding-inline: 22px; }
.nav-cta::before { content: ''; position: absolute; inset: 0 auto 0 -120%; width: 78%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent); transform: skewX(-18deg); transition: left 760ms ease; }
.nav-cta:hover::before { left: 135%; }

/* Mobile menu layout is owned by css/shell-polish.css */

.hero-slide img { object-position: 68% center; }
.hero-content { grid-template-columns: minmax(0, 620px) minmax(340px, 1fr); }
.hero-content-inner { align-self: center; }
.hero-stats {
  align-self: end;
  margin-bottom: clamp(12px, 5vh, 44px);
  animation-name: heroFadeFloat;
}
@keyframes heroFadeFloat {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-stats:hover { transform: translateY(-6px); box-shadow: 0 42px 98px rgba(17,17,17,.18), inset 0 1px 0 rgba(255,255,255,.9); }

@media (max-width: 1320px) {
  .nav-menu { gap: 14px; }
  .nav-link { font-size: 10px; letter-spacing: .11em; }
  .nav-phone { display: none; }
}

@media (max-width: 1180px) {
  .nav-menu, .nav-actions { display: none; }
  .hero-content { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .hero-content { grid-template-columns: 1fr; padding-top: 122px; }
  .hero-slide img { object-position: 72% center; }
  .hero-stats { margin-bottom: 0; }
}

/* ==========================================
   RESPONSIVE ABOUT SECTION ONLY
========================================== */
@media (max-width: 1180px) {
  .about-container {
    width: min(100% - 48px, 1460px);
  }

  .about-layout {
    gap: 54px;
  }

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

  .about-bottom {
    grid-template-columns: 1fr;
  }

  .about-actions {
    min-width: 0;
    align-items: flex-start;
  }

  .about-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .about {
    padding: 100px 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 760px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .about-stat:nth-child(2) {
    border-right: 0;
  }

  .about-stat:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 680px) {
  .about {
    padding: 82px 0;
  }

  .about-container {
    width: min(100% - 28px, 1460px);
  }

  .about-main-image {
    border-radius: 24px;
  }

  .about-floating-card {
    right: 16px;
    bottom: -30px;
    min-width: 172px;
    padding: 22px;
    border-radius: 24px;
  }

  .about .section-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .about-feature-card {
    min-height: auto;
    padding: 22px;
  }

  .about-bottom {
    margin-top: 70px;
    padding: 24px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .about-stat,
  .about-stat:first-child,
  .about-stat:nth-child(3) {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #ececec;
  }

  .about-stat:last-child {
    border-bottom: 0;
  }

  .about-actions p {
    font-size: 28px;
  }

  .about-buttons,
  .about .btn-primary,
  .about .btn-secondary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-main-image img,
  .about-feature-card,
  .about-reveal {
    transition: none !important;
  }

  .about-reveal {
    opacity: 1;
    transform: none !important;
  }
}
