/* Shared email capture block.
   Extracted from the Book 0 page so the same markup, styling and
   endpoint are reused rather than duplicated per page. */

.email-section {
      max-width: 700px;
      margin: 0 auto clamp(56px,8vh,88px);
      padding: clamp(36px,5vw,56px) clamp(28px,5vw,52px);
      border: 1px solid rgba(201,168,76,.28);
      background: rgba(201,168,76,.025);
      position: relative;
      text-align: center;
    }
.email-corner { position:absolute; width:14px; height:14px; border-style:solid; border-color:rgba(201,168,76,.5); }
.email-corner-tl { top:-1px; left:-1px; border-width:2px 0 0 2px; }
.email-corner-tr { top:-1px; right:-1px; border-width:2px 2px 0 0; }
.email-corner-bl { bottom:-1px; left:-1px; border-width:0 0 2px 2px; }
.email-corner-br { bottom:-1px; right:-1px; border-width:0 2px 2px 0; }
.email-eyebrow { font-family:'Cinzel',serif; font-size:13px; letter-spacing:.12em; text-transform:uppercase; color:rgba(201,168,76,.5); margin-bottom:16px; }
.email-heading { font-family:'Cormorant Garamond',serif; font-size:clamp(22px,3vw,32px); font-weight:300; color:var(--cream); line-height:1.2; margin-bottom:10px; }
.email-sub { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:clamp(14px,1.4vw,16px); color:rgba(240,230,208,.45); line-height:1.65; margin-bottom:28px; }
.email-form { display:flex; gap:0; max-width:460px; margin:0 auto; }
.email-input {
      flex:1; background:rgba(6,6,6,.85); border:1px solid rgba(201,168,76,.35); border-right:none;
      color:var(--cream); font-family:'EB Garamond',serif; font-size:16px; padding:13px 18px;
      outline:none; min-width:0; transition:border-color .2s;
    }
.email-input:focus { border-color:rgba(201,168,76,.7); }
.email-btn {
      background:linear-gradient(135deg,#7a6030,#c9a84c); border:none; color:#060606;
      font-family:'Cinzel',serif; font-size:12px; letter-spacing:.12em; text-transform:uppercase;
      padding:13px 20px; cursor:pointer; flex-shrink:0; transition:box-shadow .2s; white-space:nowrap;
    }
.email-btn:hover { box-shadow:0 0 24px rgba(201,168,76,.35); }
.email-success { font-family:'Cormorant Garamond',serif; font-style:italic; color:rgba(201,168,76,.8); font-size:16px; padding:20px 0; }
.email-form { flex-direction:column; }
.email-input { border-right:1px solid rgba(201,168,76,.35); border-bottom:none; }
.email-btn { padding:13px; }