*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --bg: #080808;
    --bg2: #0F0F0F;
    --gold: #B8955A;
    --gold-light: #D4AE74;
    --text: #E8E2D9;
    --muted: #6B6259;
    --border: rgba(184,149,90,0.18);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: system-ui, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--text); font-family: var(--sans); }

  /* NAV — flotante sobre el hero */
  nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
  }
  .nav-logo {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    color: var(--text);
    letter-spacing: 0.5px;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    text-decoration: none;
    color: rgba(232,226,217,0.65);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }

  /* HERO — pantalla completa con imagen de fondo */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: var(--bg2);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
  }
  .hero-bg-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--muted);
  }
  .hero-bg-placeholder p { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.1) 60%, transparent 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 3rem 4rem;
    max-width: 700px;
  }
  .hero-tag {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .hero-tag::before { content: ''; display: block; width: 28px; height: 0.5px; background: var(--gold); }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  .hero-title em { color: var(--gold); font-style: italic; }
  .hero-ctas { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
  .btn-outline {
    padding: 0.85rem 2.2rem;
    border: 0.5px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.25s;
  }
  .btn-outline:hover { background: var(--gold); color: var(--bg); }
  .btn-text {
    padding: 0.85rem 0;
    color: rgba(232,226,217,0.5);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .btn-text:hover { color: var(--text); }

  /* SCROLL INDICATOR */
  .scroll-hint {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  .scroll-line {
    width: 0.5px;
    height: 48px;
    background: var(--muted);
  }

  /* INTRO STRIP */
  .intro-strip {
    padding: 5rem 3rem;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .intro-strip p {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--muted);
    line-height: 1.75;
  }
  .intro-strip p span { color: var(--text); }
  .gold-rule {
    width: 40px;
    height: 0.5px;
    background: var(--gold);
    margin: 2.5rem auto;
  }

  /* GALLERY MASONRY-STYLE */
  #portfolio { padding: 0 1.5rem 5rem; }
  .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .section-label {
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
  }
  .filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
  .tab {
    padding: 0.4rem 1.1rem;
    border: 0.5px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
  }
  .tab.active, .tab:hover { border-color: var(--gold); color: var(--gold); }

  /* 4-column masonry feel */
  .masonry {
    columns: 4;
    column-gap: 8px;
  }
  .masonry-item {
    break-inside: avoid;
    margin-bottom: 8px;
    background: var(--bg2);
    border: 0.5px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
    overflow: hidden;
  }
  .masonry-item:hover { border-color: var(--border); }
  .masonry-item .inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1.5rem 1rem;
  }
  .masonry-item span { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
  .h1 { aspect-ratio: 2/3; }
  .h2 { aspect-ratio: 3/4; }
  .h3 { aspect-ratio: 1/1; }
  .h4 { aspect-ratio: 3/5; }
  .h5 { aspect-ratio: 4/5; }

  /* ABOUT */
  #about {
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
    border-top: 0.5px solid rgba(255,255,255,0.04);
  }
  .about-copy .section-label { margin-bottom: 0.5rem; }
  .about-copy .section-title { margin-bottom: 2rem; }
  .about-copy p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.95;
    margin-bottom: 1.1rem;
  }
  blockquote {
    border-left: 1.5px solid var(--gold);
    padding-left: 1.25rem;
    margin: 1.5rem 0 2rem;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
  }
  .signature {
    font-family: var(--serif);
    font-style: italic;
    font-size: 32px;
    color: var(--gold);
    margin-top: 2rem;
    line-height: 1;
  }
  .about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 0.5px solid rgba(255,255,255,0.06);
  }
  .stat-n { font-family: var(--serif); font-size: 2.5rem; color: var(--gold); line-height: 1; display: block; }
  .stat-l { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

  .about-img-wrap { display: flex; justify-content: center; }
  .about-img-frame {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/5;
    background: var(--bg2);
    border: 0.5px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 1px;
  }

  /* CONTACT */
  #contact {
    background: var(--bg2);
    padding: 6rem 3rem;
    border-top: 0.5px solid rgba(255,255,255,0.04);
  }
  .contact-inner { max-width: 640px; margin: 0 auto; }
  .contact-inner .section-title { margin-bottom: 0.75rem; }
  .contact-inner > p { font-size: 14px; color: var(--muted); margin-bottom: 3rem; line-height: 1.9; }
  .cform { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .fg { display: flex; flex-direction: column; gap: 7px; }
  .fg.full { grid-column: span 2; }
  .fg label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); opacity: 0.7; }
  .fg input, .fg select, .fg textarea {
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 0.5px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-size: 14px;
    font-family: var(--sans);
    outline: none;
    transition: border-color 0.2s;
  }
  .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
  .fg select option { background: #111; }
  .fg textarea { min-height: 110px; resize: vertical; }
  .fsub { grid-column: span 2; text-align: center; margin-top: 0.5rem; }
  .fsub button {
    padding: 1rem 3.5rem;
    border: 0.5px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
  }
  .fsub button:hover { background: var(--gold); color: var(--bg); }

  /* FOOTER */
  footer {
    padding: 2rem 3rem;
    border-top: 0.5px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .f-logo { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--gold); }
  .f-copy { font-size: 10px; color: var(--muted); letter-spacing: 1px; }
  .f-ig {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    border: 0.5px solid rgba(255,255,255,0.08);
    padding: 7px 16px;
    transition: all 0.2s;
  }
  .f-ig:hover { color: var(--gold); border-color: var(--border); }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    .masonry { columns: 3; }
    #about { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
    .about-img-frame { max-width: 100%; aspect-ratio: 16/9; }
  }
  @media (max-width: 680px) {
    nav { padding: 1.5rem; }
    .nav-links { display: none; }
    .hero-content { padding: 0 1.5rem 3.5rem; }
    .scroll-hint { display: none; }
    .masonry { columns: 2; }
    #portfolio { padding: 0 1rem 4rem; }
    .portfolio-header { padding: 0 0 2rem; }
    #about { padding: 3.5rem 1.5rem; }
    #contact { padding: 4rem 1.5rem; }
    .cform { grid-template-columns: 1fr; }
    .fg.full, .fsub { grid-column: span 1; }
    footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
    .about-stats { gap: 1.5rem; }
  }
