
    :root {
      --max-width: 1140px;
      --page-padding: 20px;
      --text: #2E2D2E;
      --muted: #6b7280;
      --bg: #fff;
      --border: #e5e7eb;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.5;
      background: url(/images/bg.jpg?yhmry) center center repeat;
    }
    
    .hero {
      height: 50vh;
      overflow: hidden;
      position: relative;
    }
    
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
    
      background: linear-gradient(
        to bottom,
        rgba(46,18,0,0.8) 0%,
        rgba(46,18,0,0.0) 20%,
        rgba(46,18,0,0) 80%,
        rgba(46,18,0,0.8) 100%
      );
    
      pointer-events: none;
      z-index: 2;
    }
    
    .hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;   /* fills container */
      object-position: center; /* keeps it centered */
      display: block;
      position: relative;
      z-index: 1;
    }
    
    main {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 28px var(--page-padding) 48px;
    }
    
    section{
      padding: 2rem 0;
    }
    
    .text-center {
      text-align: center;
    }
    
    img {
      max-width: 100%;
      height: auto;
    }

    h1 {
      color: #2E2D2E;
      margin: 0 0 12px;
      font-size: 3rem;
      letter-spacing: -0.02em;
      font-family: "Rowdies", sans-serif;
    }
    
    h1 span {
      display: block;
      height: 0;
      text-indent: -9999rem;
      overflow: hidden;
    }
    
    h2 {
      color: #2E2D2E;
    }

    p {
      margin: 0 0 2rem;
      font-size: 1.1rem;
    }
    
    .row {
      display: flex;
      flex-direction: column; /* mobile = stacked */
    }
    
    .col-6 {
      width: 100%;
    }
    
    /* Desktop */
    @media (min-width: 768px) {
      .row {
        flex-direction: row;
      }
    
      .col-6 {
        width: 50%;
        padding: 0 1rem;
      }
    
      .first {
        order: 2; /* push it to the right */
      }
    
      .row .col-6:not(.first) {
        order: 1; /* bring this one to the left */
      }
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 80px var(--page-padding);
      text-align: center;
    }

    footer .inner {
      max-width: var(--max-width);
      margin: 0 auto;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .social-links a {
      font-size: 1.6rem;
      color: #222;
      text-decoration: none;
      transition: 0.2s ease;
    }

    .social-links a:hover {
      color: #1877f2; /* Facebook blue default */
    }
    
    .mc-field-group label {
      display: block;
      height: 0;
      text-indent: -9999rem;
      overflow: hidden;
    }
    
    .signup-email {
      padding: 1rem;
      background: #fff;
      border: 1px solid #444;
      border-radius: 0.5rem;
      display: inline-block;
      font-size: 1.5rem;
      max-width: 100%;
    }
    
    .signup-button {
      background: linear-gradient(180deg, #FF5A00, #FF2A00);
      box-shadow: 0 4px 0 #cc4a00;
      color: #fff;
      padding: 1rem;
      border: 1px solid #FF7A00;
      border-radius: 0.5rem;
      display: inline-block;
      font-size: 1.5rem;
      font-weight: bold;
    }
    .signup-text {
      background: rgba(0,0,0,0.3);
      backdrop-filter: blur(4px);
      border-radius: 0.5rem;
      padding: 2rem;
      color: #fff;
    }
    .signup-text h2 {
      font-family: "Rowdies", sans-serif;
      color: #fff;
      font-size: 3rem;
      margin-top: 0;
      text-shadow: 2px 4px 2px rgba(0,0,0,0.6);
    }
    .signup-text h3 {
      color: #fff;
      font-size: 2rem;
      margin-top: 0;
      text-shadow: 2px 4px 2px rgba(0,0,0,0.6);
    }
    .signup-text p {
      font-size: 1.6rem;
      text-shadow: 2px 2px 2px rgba(0,0,0,0.6);
    }
    .signup-button:hover {
      background: #FF5A00;
    }
    #mc_embed_shell {
      background: url(/images/texture.jpg) center center repeat;
      border-radius: 1rem; 
      padding: 1rem;
      box-shadow: 0 10px 20px rgba(66,38,10,0.6);
    }
    #mc_embed_signup{
      background: url(/images/sky.jpg) center center no-repeat;
      border-radius: 1rem; 
      padding: 2rem;
      text-align: center;
      
    }
    
    .photoframe {
      background: url(/images/texture.jpg) center center repeat;
      border-radius: 0.5rem; 
      padding: 0.75rem;
      box-shadow: 0 5px 10px rgba(66,38,10,0.6);
    }
    .photoframe img {
      border-radius: 0.75rem;
    }
    
    @media (max-width: 767px) {
    
      section{
        padding: 1rem 0;
      }
      .hero {
        height: 20vh;
      }
      h1 {
        font-size: 2rem;
      }
    
      #mc_embed_shell {
        padding: 0.5rem;
      }
    
      #mc_embed_signup{
        padding: 1rem;
      }
      .signup-text {
        padding: 1rem;
      }
      .signup-text h2 {
        font-size: 1.8rem;
      }
      .signup-text h3 {
        font-size: 1.4rem;
      }
      .signup-text p {
        font-size: 1.1rem;
        text-shadow: 2px 2px 2px rgba(0,0,0,0.6);
      }
      .signup-email {
        margin-bottom: 0.5rem;
      }
    
    }