/* ==========================================================================
       VARIABLES
       ========================================================================== */
      :root {
        /* Colors */
        --bg-base: #f7f6f2;
        --bg-surface: #ffffff;
        --bg-stone: #eaece8;
        --bg-dark: #1a1c1d;

        --text-main: #1a1c1d;
        --text-muted: #6a6e6f;
        --text-light: #f7f6f2;
        --text-light-muted: #a0a4a5;

        --accent-green: #1e3b2b;

        --border-light: #dcdad5;
        --border-dark: #3a3d3e;

        /* Typography */
        --font-serif: Georgia, 'Times New Roman', Times, serif;
        --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      }

      /* ==========================================================================
       RESET & BASE
       ========================================================================== */
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
        font-family: var(--font-sans);
        background-color: var(--bg-base);
        color: var(--text-main);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
      }

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

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

      /* ==========================================================================
       TYPOGRAPHY
       ========================================================================== */
      h1,
      h2,
      h3,
      h4 {
        font-family: var(--font-serif);
        font-weight: normal;
        color: var(--text-main);
        margin-bottom: 1.25rem;
        line-height: 1.15;
      }

      p {
        margin-bottom: 1.5rem;
        font-size: 1.125rem;
        color: #4a4d4e;
      }

      .eyebrow {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-weight: 600;
        color: var(--accent-green);
        margin-bottom: 1.5rem;
        display: block;
      }

      .caption {
        font-size: 0.875rem;
        color: var(--text-muted);
        font-style: italic;
        font-family: var(--font-serif);
        margin-top: 1rem;
      }

      /* ==========================================================================
       LAYOUT & COMPONENTS
       ========================================================================== */
      .container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 5%;
      }

      .section {
        padding: 8rem 0;
      }

      .section-border-top {
        border-top: 1px solid var(--border-light);
      }

      /* Masthead */
      .masthead {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 5%;
        border-bottom: 1px solid var(--border-light);
        background-color: var(--bg-base);
      }

      .masthead-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--text-muted);
      }

      .masthead-logos {
        display: flex;
        gap: 1.5rem;
        align-items: center;
      }

      .logo-chip {
        background-color: var(--bg-dark);
        padding: 0.85rem 1.35rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
      }

      .logo-chip img {
        height: 20px;
        filter: brightness(0) invert(1);
      }

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

      .hero h1 {
        font-size: clamp(2.5rem, 4.5vw, 4rem);
        margin-bottom: 1.5rem;
      }

      .hero p {
        font-size: 1.25rem;
        margin-bottom: 3rem;
        max-width: 90%;
      }

      .cta-group {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
      }

      .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 600;
        border: 1px solid var(--text-main);
        text-align: center;
      }

      .btn-solid {
        background-color: var(--text-main);
        color: var(--bg-base);
      }

      .btn-outline {
        background-color: transparent;
        color: var(--text-main);
      }

      .hero-visual-container {
        position: relative;
      }

      .hero-visual-container img {
        width: 100%;
        aspect-ratio: 5/4;
        object-fit: cover;
        border-radius: 12px;
        border: 1px solid var(--border-light);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
      }

      .hero-editorial-card {
        position: absolute;
        bottom: -2.5rem;
        left: -2.5rem;
        background-color: var(--bg-surface);
        padding: 2.5rem;
        border: 1px solid var(--border-light);
        max-width: 320px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
        border-radius: 8px;
      }

      .hero-editorial-card span {
        display: block;
        font-family: var(--font-serif);
        font-size: 1.125rem;
        color: var(--accent-green);
        line-height: 1.5;
        font-style: italic;
      }

      /* Stats Band */
      .stats-band {
        border-top: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
        padding: 4rem 0;
        background-color: var(--bg-surface);
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
        text-align: center;
      }

      .stat-item h3 {
        font-size: 2.75rem;
        color: var(--accent-green);
        margin-bottom: 0.25rem;
      }

      .stat-item p {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-muted);
        margin: 0;
      }

      /* Editorial Section */
      .editorial-grid {
        display: grid;
        grid-template-columns: 3fr 2fr;
        gap: 6rem;
      }

      .editorial-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
      }

      .editorial-quote {
        border-left: 1px solid var(--border-light);
        padding-left: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .editorial-quote blockquote {
        font-family: var(--font-serif);
        font-size: 1.875rem;
        line-height: 1.4;
        color: var(--accent-green);
        font-style: italic;
      }

      /* Gallery */
      .gallery-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
      }

      .gallery-main img {
        width: 100%;
        height: 100%;
        min-height: 600px;
        object-fit: cover;
        border-radius: 12px;
        border: 1px solid var(--border-light);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
      }

      .gallery-sidebar {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 2rem;
      }

      .gallery-sidebar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        border: 1px solid var(--border-light);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
      }

      /* Benefits */
      .benefits-section {
        background-color: var(--bg-stone);
      }

      .benefits-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
      }

      .benefits-header h2 {
        font-size: 2.5rem;
      }

      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }

      .benefit-card {
        background-color: var(--bg-surface);
        padding: 3rem 2.5rem;
        border: 1px solid var(--border-light);
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
      }

      .benefit-card h3 {
        font-family: var(--font-sans);
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1rem;
        letter-spacing: 0.02em;
      }

      .benefit-card p {
        font-size: 1rem;
        margin: 0;
      }

      /* Showcase Dark */
      .showcase-dark {
        background-color: var(--bg-dark);
        color: var(--text-light);
      }

      .showcase-dark h2 {
        color: var(--text-light);
        font-size: 3rem;
        margin-bottom: 1.5rem;
      }

      .showcase-dark p {
        color: var(--text-light-muted);
        font-size: 1.25rem;
      }

      .showcase-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: center;
      }

      .showcase-image {
        border: 1px solid var(--border-dark);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
      }

      /* Architecture */
      .architecture-header {
        text-align: center;
        margin-bottom: 5rem;
      }

      .architecture-header h2 {
        font-size: 3rem;
      }

      .arch-list {
        max-width: 1000px;
        margin: 0 auto;
      }

      .arch-item {
        display: flex;
        gap: 4rem;
        padding: 3.5rem 0;
        border-bottom: 1px solid var(--border-light);
      }

      .arch-item:first-child {
        border-top: 1px solid var(--border-light);
      }

      .arch-num {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        color: var(--accent-green);
        line-height: 1;
        min-width: 4rem;
      }

      .arch-text h3 {
        font-family: var(--font-sans);
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
      }

      .arch-text p {
        margin: 0;
        font-size: 1.125rem;
      }

      .arch-addon {
        margin-top: 4rem;
        padding: 2.5rem;
        background-color: var(--bg-stone);
        text-align: center;
        font-size: 1.125rem;
        border-radius: 8px;
      }

      /* Closing */
      .closing-section {
        text-align: center;
        background-color: var(--bg-surface);
      }

      .closing-section h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
      }

      .contact-block {
        display: inline-block;
        text-align: left;
        background-color: var(--bg-base);
        border: 1px solid var(--border-light);
        border-radius: 12px;
        padding: 4rem 5rem;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
      }

      .contact-block h3 {
        font-family: var(--font-sans);
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
      }

      .contact-block .role {
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--accent-green);
        margin-bottom: 2.5rem;
        font-weight: 600;
      }

      .contact-block p {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        color: var(--text-main);
      }

      /* Footer */
      .footer {
        text-align: center;
        padding: 3rem 5%;
        border-top: 1px solid var(--border-light);
        background-color: var(--bg-base);
      }

      .footer p {
        margin: 0;
        font-size: 0.875rem;
        color: var(--text-muted);
      }

      /* ==========================================================================
       RESPONSIVE DESIGN
       ========================================================================== */
      @media (max-width: 1024px) {
        .hero-grid,
        .editorial-grid,
        .gallery-grid,
        .showcase-grid {
          grid-template-columns: 1fr;
          gap: 4rem;
        }
        .hero-editorial-card {
          position: relative;
          bottom: auto;
          left: auto;
          margin-top: -3rem;
          margin-left: 2rem;
          margin-right: 2rem;
          max-width: calc(100% - 4rem);
        }
        .stats-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 3rem 2rem;
        }
        .editorial-quote {
          border-left: none;
          border-top: 1px solid var(--border-light);
          padding-left: 0;
          padding-top: 4rem;
        }
        .benefits-grid {
          grid-template-columns: 1fr 1fr;
        }
      }

      @media (max-width: 768px) {
        .section {
          padding: 5rem 0;
        }
        .masthead {
          flex-direction: column;
          gap: 1.5rem;
          text-align: center;
        }
        .hero h1 {
          font-size: 2.75rem;
        }
        .stats-grid {
          grid-template-columns: 1fr 1fr;
        }
        .benefits-grid {
          grid-template-columns: 1fr;
        }
        .arch-item {
          flex-direction: column;
          gap: 1.5rem;
        }
        .showcase-dark h2,
        .architecture-header h2,
        .closing-section h2 {
          font-size: 2.25rem;
        }
        .contact-block {
          padding: 2.5rem;
          width: 100%;
        }
      }
