  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #FAF7F2;
    --cream2: #F2EDE4;
    --rose: #C9967A;
    --rose-light: #EDD9CC;
    --rose-dark: #7A4A35;
    --text: #2C2420;
    --text-muted: #8A7068;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: var(--cream);
    border-bottom: 0.5px solid var(--rose-light);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-logo {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    color: var(--rose-dark);
    letter-spacing: 0.5px;
  }

  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--rose); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--text);
  }

  /* HERO */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    align-items: center;
  }

  .hero-text {
    padding: 4rem 3rem 4rem 4rem;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1.2rem;
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.5rem;
  }

  .hero-title em {
    color: var(--rose);
    font-style: italic;
  }

  .hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 380px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }

  .btn-primary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--rose);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--rose-dark); }

  .btn-ghost {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 0.5px solid var(--rose);
    color: var(--rose);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    margin-left: 1rem;
    transition: all 0.2s;
  }
  .btn-ghost:hover { background: var(--rose-light); }

  .hero-image {
    height: 90vh;
    background: var(--cream2);
    position: relative;
    overflow: hidden;
  }

  .hero-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--rose);
  }

  .photo-icon {
    width: 56px;
    height: 56px;
    border: 1.5px solid var(--rose-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-img-placeholder p {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
  }

  /* SECTION BASE */
  section { padding: 5rem 4rem; }

  .section-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.6rem;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.5rem;
  }

  /* PORTFOLIO */
  #portfolio { background: var(--cream2); }

  .portfolio-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3.5rem;
  }

  .filter-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .tab {
    padding: 0.5rem 1.4rem;
    border: 0.5px solid var(--rose-light);
    background: transparent;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .tab.active, .tab:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .gallery-item {
    aspect-ratio: 3/4;
    background: var(--cream);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 0.5px solid var(--rose-light);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .gallery-item:hover { transform: scale(1.01); }

  .gallery-item.tall { grid-row: span 2; }

  .gallery-item svg { opacity: 0.35; }

  /* ABOUT */
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 5rem 4rem;
  }

  .about-image {
    aspect-ratio: 3/4;
    background: var(--cream2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid var(--rose-light);
    color: var(--text-muted);
    font-size: 12px;
  }

  .about-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.85;
    font-size: 15px;
  }

  .about-signature {
    font-family: var(--serif);
    font-size: 28px;
    font-style: italic;
    color: var(--rose);
    margin-top: 1.5rem;
  }

  .stats-row {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 0.5px solid var(--rose-light);
    border-bottom: 0.5px solid var(--rose-light);
  }

  .stat-item { text-align: center; }
  .stat-num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--rose);
    display: block;
    line-height: 1;
  }
  .stat-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* CONTACT */
  #contact { background: var(--cream2); }

  .contact-wrap {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-wrap .section-title { margin-bottom: 0.5rem; }
  .contact-intro {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 3rem;
  }

  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: left;
  }

  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: span 2; }

  .form-group label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 1rem;
    border: 0.5px solid var(--rose-light);
    background: var(--cream);
    color: var(--text);
    border-radius: 2px;
    font-size: 14px;
    font-family: var(--sans);
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--rose);
  }

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

  .form-submit {
    grid-column: span 2;
    text-align: center;
    margin-top: 0.5rem;
  }

  .form-submit button {
    padding: 1rem 3rem;
    background: var(--rose);
    color: #fff;
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .form-submit button:hover { background: var(--rose-dark); }

  /* FOOTER */
  footer {
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 0.5px solid var(--rose-light);
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--rose-dark);
  }

  .footer-links { display: flex; gap: 1.5rem; list-style: none; }
  .footer-links a {
    text-decoration: none;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
  }

  .social-links { display: flex; gap: 1rem; }
  .social-links a {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    border: 0.5px solid var(--rose-light);
    padding: 6px 14px;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .social-links a:hover { color: var(--rose); border-color: var(--rose); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-text { padding: 3rem 2rem; }
    .hero-image { height: 50vw; min-height: 260px; }
    #about { grid-template-columns: 1fr; padding: 3rem 2rem; }
    .about-image { aspect-ratio: 16/9; }
    section { padding: 3.5rem 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.tall { grid-row: span 1; }
    nav { padding: 1rem 1.5rem; }
    footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 600px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-text { padding: 2.5rem 1.25rem; }
    section { padding: 3rem 1.25rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-form { grid-template-columns: 1fr; }
    .form-group.full, .form-submit { grid-column: span 1; }
    .stats-row { gap: 1.5rem; }
