  :root {
    --steel: #4a7fa5;
    --steel-dark: #2c5f82;
    --steel-light: #7aaec8;
    --steel-pale: #e8f2f8;
    --charcoal: #1a2332;
    --charcoal-mid: #2d3d52;
    --ink: #0d1521;
    --cream: #e8eef5;
    --warm-white: #fdfcfa;
    --gold: #c8a96e;
    --gold-light: #e8d4a8;
    --text-muted: #5a6a7e;
    --border: rgba(74,127,165,0.15);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13,21,33,0.95);
    backdrop-filter: blur(12px);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    border-bottom: 1px solid rgba(200,169,110,0.2);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
  }

  .nav-logo-icon {
    width: 42px; height: 42px;
    background: var(--steel);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 16px;
    color: white;
    letter-spacing: 1px;
  }

  .nav-logo-text {
    color: white;
    font-size: 13px; font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.5px;
  }

  .nav-logo-text span {
    display: block;
    font-size: 10px; font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

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

  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--steel);
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500 !important;
  }

  .nav-cta:hover { background: var(--steel-dark); color: white !important; }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px; height: 32px;
    background: none; border: none; cursor: pointer; padding: 0;
    flex-shrink: 0;
  }

  .nav-toggle span {
    display: block; width: 100%; height: 2px;
    background: white; border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 50%, var(--steel-dark) 100%);
    display: flex; align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 60%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cpolygon points='800,0 800,600 200,600' fill='rgba(74,127,165,0.08)'/%3E%3C/svg%3E") no-repeat right;
    background-size: cover;
  }

  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    max-width: 1300px; margin: 0 auto; width: 100%;
    position: relative; z-index: 1;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,169,110,0.15);
    border: 1px solid rgba(200,169,110,0.3);
    color: var(--gold-light);
    padding: 6px 16px; border-radius: 20px;
    font-size: 11px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .hero h1 .accent { color: var(--steel-light); }

  .hero p {
    color: rgba(255,255,255,0.65);
    font-size: 16px; line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
  }

  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--steel);
    color: white;
    padding: 14px 32px; border-radius: 8px;
    font-size: 14px; font-weight: 500;
    text-decoration: none; border: none; cursor: pointer;
    letter-spacing: 0.3px;
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--steel-dark); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: white;
    padding: 14px 32px; border-radius: 8px;
    font-size: 14px; font-weight: 400;
    text-decoration: none; border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

  .hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(8px);
  }

  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  }

  .stat-item {
    text-align: center; padding: 24px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px; font-weight: 700;
    color: var(--steel-light);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 11px; font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px; text-transform: uppercase;
  }

  .hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 20px; color: var(--gold-light);
    text-align: center; margin-bottom: 30px;
    font-style: italic;
  }

  /* SECTIONS */
  section { padding: 100px 5%; }

  .section-label {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--steel); margin-bottom: 16px;
  }

  .section-label::after {
    content: ''; flex: 1; max-width: 60px;
    height: 1px; background: var(--steel);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700; color: var(--charcoal);
    line-height: 1.15; margin-bottom: 16px;
  }

  .section-sub {
    font-size: 15px; color: var(--text-muted);
    line-height: 1.7; max-width: 560px;
  }

  /* ABOUT / BUSINESS CARD */
  .about-section {
    background: var(--charcoal);
    color: white;
  }

  .about-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
    max-width: 1200px; margin: 0 auto;
  }

  .business-card {
    background: linear-gradient(145deg, var(--charcoal-mid), var(--ink));
    border: 1px solid rgba(74,127,165,0.25);
    border-radius: 20px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
  }

  .business-card::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 160px; height: 160px;
    background: radial-gradient(circle at top right, rgba(74,127,165,0.2), transparent 70%);
  }

  .card-logo-area {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px; padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .card-logo-box {
    width: 60px; height: 60px;
    background: var(--steel);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 22px; color: white;
    letter-spacing: 1px;
  }

  .card-company-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700; color: white;
  }

  .card-company-sub {
    font-size: 11px; font-weight: 400;
    color: var(--steel-light);
    letter-spacing: 2px; text-transform: uppercase;
    margin-top: 4px;
  }

  .card-owner {
    margin-bottom: 28px;
  }

  .owner-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 600; color: white;
    margin-bottom: 6px;
  }

  .owner-title {
    font-size: 13px; color: var(--gold-light);
    font-weight: 400; letter-spacing: 1px;
  }

  .card-info-row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px; color: rgba(255,255,255,0.75);
  }

  .card-info-row:last-child { border-bottom: none; }

  .info-icon {
    width: 32px; height: 32px;
    background: rgba(74,127,165,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
  }

  .about-content .section-label { color: var(--steel-light); }
  .about-content .section-label::after { background: var(--steel-light); }
  .about-content .section-title { color: white; }
  .about-content .section-sub { color: rgba(255,255,255,0.6); }

  .values-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-top: 36px;
  }

  .value-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
  }

  .value-icon {
    font-size: 24px; margin-bottom: 10px;
  }

  .value-title {
    font-size: 14px; font-weight: 600; color: white; margin-bottom: 6px;
  }

  .value-desc {
    font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5;
  }

  /* SERVICES / PORTFOLIO */
  .portfolio-section { background: var(--cream); }

  .portfolio-header {
    max-width: 1200px; margin: 0 auto 60px;
  }

  .portfolio-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    max-width: 1200px; margin: 0 auto;
  }

  .portfolio-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }

  .portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(26,35,50,0.12);
  }

.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }

  .portfolio-img {
  position: relative;
  overflow: hidden;
  display: flex; 
  align-items: center; 
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3; /
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

  .portfolio-img svg { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }

  /* GRIDS DE MÚLTIPLES FOTOS (proyectos con 2 o 3 imágenes) */
  .multi-photo-grid {
    display: grid;
    gap: 3px;
    background: white;
    height: 260px;
    overflow: hidden;
  }

  .multi-photo-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .multi-photo-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

  .multi-photo-grid > div {
    position: relative;
    overflow: hidden;
  }

  .multi-photo-grid img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .portfolio-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--steel);
    color: white; font-size: 11px; font-weight: 500;
    padding: 4px 12px; border-radius: 12px;
    letter-spacing: 0.5px;
  }

  .portfolio-body { padding: 24px; }

  .portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 600; color: var(--charcoal);
    margin-bottom: 8px;
  }

  .portfolio-desc {
    font-size: 13px; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 16px;
  }

  .portfolio-meta {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; color: var(--steel);
    font-weight: 500;
  }

  /* APPOINTMENTS */
  .appointments-section { background: var(--cream); }

  .appointments-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    max-width: 1200px; margin: 60px auto 0;
    align-items: start;
  }

  .appt-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
  }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: var(--charcoal);
    margin-bottom: 28px;
  }

  .form-group { margin-bottom: 20px; }

  .form-label {
    display: block;
    font-size: 12px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 8px;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--charcoal);
    background: var(--cream);
    transition: border-color 0.2s;
    outline: none;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--steel);
    background: white;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-textarea { resize: vertical; min-height: 100px; }

  .submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--steel);
    color: white; border: none; border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    cursor: pointer; letter-spacing: 0.5px;
    transition: background 0.25s;
    margin-top: 8px;
  }

  .submit-btn:hover { background: var(--steel-dark); }

  .appt-calendar {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
  }

  .cal-header {
    background: var(--charcoal);
    padding: 24px 28px;
    display: flex; align-items: center; justify-content: space-between;
  }

  .cal-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 600; color: white;
  }

  .cal-nav {
    display: flex; gap: 8px;
  }

  .cal-btn {
    width: 32px; height: 32px;
    border-radius: 8px; border: 1px solid rgba(255,255,255,0.2);
    background: transparent; color: white; cursor: pointer; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }

  .cal-btn:hover { background: rgba(255,255,255,0.1); }

  .cal-grid { padding: 20px 24px 28px; }

  .cal-days-header {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 4px; margin-bottom: 8px;
  }

  .cal-day-name {
    text-align: center; font-size: 11px; font-weight: 600;
    color: var(--text-muted); letter-spacing: 0.5px;
    padding: 6px 0;
  }

  .cal-days {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  }

  .cal-day {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--charcoal);
    border-radius: 8px; cursor: pointer;
    transition: all 0.15s;
    position: relative;
  }

  .cal-day:hover { background: var(--steel-pale); }

  .cal-day.booked {
    background: var(--steel);
    color: white; cursor: default; font-weight: 500;
  }

  .cal-day.booked:hover { background: var(--steel-dark); }

  .cal-day.today {
    border: 2px solid var(--steel);
    font-weight: 600; color: var(--steel);
  }

  .cal-day.empty { cursor: default; }

  .cal-legend {
    display: flex; gap: 20px; padding: 0 24px 20px;
    font-size: 12px; color: var(--text-muted);
  }

  .legend-dot {
    width: 10px; height: 10px; border-radius: 50%;
    display: inline-block; margin-right: 6px;
    vertical-align: middle;
  }

  .booked-list {
    padding: 0 24px 24px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }

  .booked-list-title {
    font-size: 13px; font-weight: 600; color: var(--charcoal);
    margin-bottom: 12px;
  }

  .booked-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .booked-item:last-child { border-bottom: none; }

  .booked-date {
    background: var(--steel-pale);
    color: var(--steel-dark);
    padding: 4px 10px; border-radius: 6px;
    font-size: 11px; font-weight: 600;
    white-space: nowrap;
  }

  .booked-info { flex: 1; }

  .booked-name { font-weight: 500; color: var(--charcoal); font-size: 13px; }

  .booked-service { color: var(--text-muted); font-size: 11px; margin-top: 2px; }

  /* REVIEWS */
  .reviews-section { background: white; }

  .reviews-header {
    max-width: 1200px; margin: 0 auto 60px;
    display: flex; align-items: flex-end; justify-content: space-between;
  }

  .overall-rating {
    text-align: center;
    background: var(--charcoal);
    color: white; padding: 32px 48px; border-radius: 16px;
  }

  .rating-big {
    font-family: 'Playfair Display', serif;
    font-size: 56px; font-weight: 700; color: var(--gold);
    line-height: 1;
  }

  .rating-stars-big { font-size: 22px; margin: 8px 0; }

  .rating-count { font-size: 12px; color: rgba(255,255,255,0.5); }

  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 1200px; margin: 0 auto 60px;
  }

  .review-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.25s;
  }

  .review-card:hover { transform: translateY(-3px); }

  .review-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
  }

  .reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 16px; color: white;
    flex-shrink: 0;
  }

  .reviewer-name { font-weight: 600; font-size: 14px; color: var(--charcoal); }

  .reviewer-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

  .review-stars { font-size: 14px; color: var(--gold); margin-bottom: 10px; }

  .review-text {
    font-size: 13px; color: var(--text-muted); line-height: 1.7;
    font-style: italic;
  }

  .review-work {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 11px; font-weight: 600;
    color: var(--steel); letter-spacing: 0.5px;
  }

  /* REVIEW FORM */
  .review-form-section { background: var(--cream); padding: 60px 5%; }

  .review-form-wrap {
    max-width: 700px; margin: 0 auto;
    background: white; border-radius: 20px;
    padding: 44px; border: 1px solid var(--border);
  }

  .star-selector {
    display: flex; gap: 8px; margin-top: 8px;
  }

  .star-btn {
    font-size: 28px; cursor: pointer; color: #ddd;
    transition: color 0.15s; background: none; border: none;
    line-height: 1;
  }

  .star-btn.active, .star-btn:hover { color: var(--gold); }

  /* FOOTER */
  footer {
    background: var(--ink);
    color: white; padding: 60px 5% 30px;
  }

  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    max-width: 1200px; margin: 0 auto 60px;
  }

  

  .footer-logo {
    display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
  }

  .footer-logo-box {
    width: 50px; height: 50px; background: var(--steel); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 18px; color: white;
  }

  .footer-company { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: white; }
  .footer-company span { display: block; font-size: 10px; font-weight: 300; color: var(--steel-light); letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; font-family: 'DM Sans', sans-serif; }

  .footer-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }

  .footer-contact-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: rgba(255,255,255,0.65);
    margin-bottom: 10px;
    text-decoration: none;
  }

  .footer-contact-item:hover { color: var(--steel-light); }

  .contact-icon {
    width: 28px; height: 28px; border-radius: 6px;
    background: rgba(74,127,165,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
  }

  .footer-col-title {
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--steel-light); margin-bottom: 20px;
  }

  .footer-links { list-style: none; }

  .footer-links li { margin-bottom: 10px; }

  .footer-links a {
    font-size: 13px; color: rgba(255,255,255,0.45);
    text-decoration: none; transition: color 0.2s;
  }

  .footer-links a:hover { color: white; }

  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; color: rgba(255,255,255,0.3);
  }

  .social-links { display: flex; gap: 12px; }

  .social-btn {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: rgba(255,255,255,0.5);
    cursor: pointer; transition: all 0.2s; text-decoration: none;
  }

  .social-btn:hover { background: var(--steel); color: white; border-color: var(--steel); }

  /* NOTIFICATION */
  .notification {
    position: fixed; top: 90px; right: 24px; z-index: 1000;
    background: var(--charcoal);
    color: white; padding: 16px 24px;
    border-radius: 12px; font-size: 14px;
    border-left: 4px solid var(--steel);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 320px;
  }

  .notification.show { transform: translateX(0); }

  .notification-title { font-weight: 600; margin-bottom: 4px; }
  .notification-msg { font-size: 12px; color: rgba(255,255,255,0.65); }

  /* SCROLL ANIMATIONS */
  body.js-ready .fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  @media (max-width: 900px) {
    .hero-grid, .about-grid, .appointments-grid { grid-template-columns: 1fr; gap: 40px; }
    .portfolio-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .reviews-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .span-2, .span-3 {
      grid-column: span 1;
    }

    .nav-toggle { display: flex; }

    .nav-links {
      display: none;
      position: absolute;
      top: 70px; left: 0; right: 0;
      flex-direction: column;
      gap: 4px;
      background: rgba(13,21,33,0.98);
      backdrop-filter: blur(12px);
      padding: 12px 5% 20px;
      border-bottom: 1px solid rgba(200,169,110,0.2);
    }

    .nav-links.open { display: flex; }

    .nav-links li { width: 100%; }

    .nav-links a {
      display: block;
      padding: 12px 0;
      font-size: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-links .nav-cta {
      display: inline-block;
      margin-top: 10px;
      text-align: center;
      border-bottom: none;
    }
  } 
  @media (max-width: 600px) {
    .portfolio-grid, .reviews-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    section { padding: 70px 5%; }
    .multi-photo-grid.cols-3 { grid-template-columns: 1fr; height: auto; }
    .multi-photo-grid.cols-3 > div { height: 180px; }
    .multi-photo-grid.cols-2 { height: 200px; }

    /* Evita que iOS haga zoom automático al enfocar inputs */
    .form-input, .form-select, .form-textarea { font-size: 16px; }

    /* Reduce paddings de tarjetas grandes en pantallas chicas */
    .business-card { padding: 32px 24px; }
    .hero-card { padding: 24px; }
    .appt-form-card { padding: 24px; }
    .review-form-wrap { padding: 28px 22px; }
    .overall-rating { padding: 24px 28px; }
    .nav-logo-text { font-size: 11px; }
    .nav-logo-icon { width: 38px; height: 38px; font-size: 14px; }
  }

  /* FOTO DEL DUEÑO */
  .owner-photo-wrap {
    position: relative;
    width: 130px; height: 130px;
    margin: 0 auto 20px;
  }

  .owner-photo {
    width: 130px; height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--steel);
    box-shadow: 0 0 0 5px rgba(74,127,165,0.15), 0 8px 24px rgba(0,0,0,0.3);
    display: block;
  }

  .owner-photo-badge {
    position: absolute; bottom: 4px; right: -4px;
    background: var(--steel);
    color: white; font-size: 10px; font-weight: 600;
    padding: 3px 8px; border-radius: 10px;
    letter-spacing: 0.5px;
    border: 2px solid var(--charcoal-mid);
    white-space: nowrap;
  }

  .card-owner {
    text-align: center;
    margin-bottom: 28px;
  }

  .owner-name { text-align: center; }
  .owner-title { text-align: center; }
