 :root {
      --bg: #f6f2eb;
      --text: #1d1d1b;
      --muted: #72695f;
      --accent: #b68b59;
      --card: #ece6dc;
      --border: #d7cfc4;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(1180px, 92%);
      margin: auto;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(246, 242, 235, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.3rem 0;
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      letter-spacing: 1px;
      font-weight: 600;
    }

    .menu {
      display: flex;
      gap: 2rem;
      list-style: none;
      font-size: 0.95rem;
      color: var(--muted);
    }

    .menu a:hover {
      color: var(--text);
    }

    /* HERO */
    .hero {
      min-height: 90vh;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      align-items: center;
      gap: 4rem;
      padding: 4rem 0;
    }

    .hero-content h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 7vw, 5.8rem);
      line-height: 0.95;
      font-weight: 500;
      margin-bottom: 1.8rem;
      letter-spacing: -1px;
    }

    .hero-content p {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 560px;
      margin-bottom: 2rem;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      padding: 0.95rem 1.8rem;
      border: 1px solid var(--text);
      transition: 0.3s ease;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-primary {
      background: var(--text);
      color: var(--bg);
    }

    .btn-primary:hover {
      background: transparent;
      color: var(--text);
    }

    .btn-secondary:hover {
      background: var(--text);
      color: var(--bg);
    }

    .hero-image {
      background: var(--card);
      border: 1px solid var(--border);
      padding: .5rem;
      transition: 0.35s ease;
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* SECTION STYLING */
    section {
      padding: 7rem 0;
    }

    .section-intro {
      display: flex;
      justify-content: space-between;
      align-items: end;
      margin-bottom: 3rem;
      gap: 2rem;
    }

    .section-intro h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 500;
    }

    .section-intro p {
      max-width: 520px;
      color: var(--muted);
    }

    /* PORTFOLIO */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .portfolio-card {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 1.5rem;
      transition: 0.35s ease;
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .portfolio-card:hover {
      transform: translateY(-6px);
      background: #e7dfd2;
    }

    .portfolio-card img {
      height: 190px;
      width: 100%;
      object-fit: cover;
      margin-bottom: 1.5rem;
      border-radius: 4px;
    }

    .portfolio-card span {
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 2px;
      color: var(--accent);
    }

    .portfolio-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      margin: 0.7rem 0;
      font-weight: 500;
    }

    .portfolio-card p {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }

    .portfolio-card a {
      font-size: 0.9rem;
      border-bottom: 1px solid var(--text);
      width: fit-content;
      padding-bottom: 3px;
    }

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

    .about-image {
      height: 650px;
      background-image: url('');
      background-size: cover;
      background-position: center;
      border-radius: 6px;
    }

    .about-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.4rem;
      line-height: 1;
      margin-bottom: 1.8rem;
      font-weight: 500;
    }

    .about-content p {
      color: var(--muted);
      margin-bottom: 1.4rem;
      font-size: 1rem;
    }

    /* NEWSLETTER */
    .newsletter {
      text-align: center;
      padding: 6rem 1rem;
      background: #e9e2d7;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .newsletter h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      margin-bottom: 1rem;
      font-weight: 500;
    }

    .newsletter p {
      max-width: 620px;
      margin: 0 auto 2rem;
      color: var(--muted);
    }

    .newsletter-form {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .newsletter-form input {
      padding: 1rem;
      min-width: 320px;
      border: 1px solid var(--border);
      background: #fff;
      font-size: 0.95rem;
    }

    /* FOOTER */
    footer {
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .footer-col h4 {
      margin-bottom: 1rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted);
    }

    .footer-col a,
    .footer-col p {
      display: block;
      margin-bottom: 0.8rem;
      color: var(--text);
      font-size: 0.95rem;
    }

    .copyright {
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      color: var(--muted);
      font-size: 0.9rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    @media (max-width: 900px) {
      .hero,
      .about {
        grid-template-columns: 1fr;
      }

      .hero-image,
      .about-image {
        height: auto;
        width: auto;
      }

      .section-intro {
        flex-direction: column;
        align-items: start;
      }

      .menu {
        display: none;
      }
    }