:root{
  --bg:#020202;
  --white:#ffffff;
  --gold: #d38e2e;
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --line: rgba(255,255,255,.14);
  --radius: 14px;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --max: 1400px;
  --fs-base: 16px;
  --fs-h1: clamp(48px, 7vw, 64px);
  --fs-sub: 18px;
  --fs-control: 16px;
  --fs-micro: 14px;
  --fs-benefit: 18px;
  --fs-mission: 16px;
  --fs-final-title: 24px;
  --fs-final-text: 16px;
  --fs-tiny: 12px;
  --fs-legal: 12px;
  --fs-privacy-h1: clamp(36px, 5vw, 48px);
  --fs-privacy-date: 14px;
  --fs-privacy-h2: 24px;
  --fs-privacy-p: 16px;
  --fs-privacy-li: 16px;
  --fs-back-link: 16px;
}

*{ box-sizing:border-box; margin: 0; padding: 0; }

html {
  height: 100%;
}

body{
  margin:0;
  font-family: 'STIX Two Text', serif;  
  background: #000;
  color: var(--white);
  overflow-x:hidden;
  min-height: 100vh;
  position: relative;
  font-size: var(--fs-base);
}

/* Background - fixed and full viewport */
.bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("Images/background.png") center center / cover no-repeat;
  filter: brightness(.8) contrast(1.15);
  z-index: 0;
}


.wrap{
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 60px 60px;
  min-height: 100vh;
}

header{
  display:flex;
  align-items:center;
  gap:14px;
  padding: 6px 0 48px;
}

.brand{
  display:flex;
  align-items:center;
  gap:30px;
  opacity: 0;
  animation: text-fade-in 0.7s ease-out 1.5s forwards;
}

.brand-img{
  width: clamp(75px, 8vw, 80px);
}

.wordmark-img{
  height: clamp(50px, 5vw, 50px);
  width: auto;
  object-fit: contain;
}

main{
  max-width: 680px;
}

main > section{
  opacity: 0;
  animation: text-fade-in 0.9s ease-out 2.2s forwards;
}


h1{
  margin:0 0 24px;
  font-size: var(--fs-h1);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gold{ color: var(--gold); }

.sub{
  margin:0 0 32px;
  font-size: var(--fs-sub);
  line-height: 1.65;
  color: var(--muted);
}

.form{
  display:flex;
  flex-direction: column;
  gap:12px;
  margin: 24px 0 12px;
  max-width: 420px;
}

input[type="email"]{
  width: 100%;
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: var(--white);
  outline:none;
  font-size: var(--fs-control);
  transition: border-color 0.2s, background 0.2s;
}

input[type="email"]:focus{
  border-color: rgba(202,139,2,.4);
  background: rgba(255,255,255,.08);
}

input::placeholder{ color: rgba(255,255,255,.40); }

button{
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  cursor:pointer;
  font-size: var(--fs-control);
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 12px rgba(202,139,2,.3);
}

button:hover{ 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(202,139,2,.4);
}

button:active{ 
  transform: translateY(0px); 
  box-shadow: 0 2px 8px rgba(202,139,2,.3);
}

.micro{
  font-size: var(--fs-micro);
  color: var(--muted2);
  line-height: 1.5;
}

.benefits{
  margin: 32px 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 20px;
}

.benefits li{
  font-size: var(--fs-benefit);
  line-height:1.6;
  color: rgba(255,255,255,.88);
}

.benefits strong{
  color: var(--gold);
  font-weight:700;
}

.mission{
  margin: 40px 0 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.75);
  font-size: var(--fs-mission);
  line-height: 1.7;
}

.final{
  margin-top: 40px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(255,255,255,.10);
}

.final .title{
  font-size: var(--fs-final-title);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.final .text{
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
  font-size: var(--fs-final-text);
}

.footerCTA button{
  width: 100%;
  max-width: 420px;
}

.tiny{
  margin-top: 48px;
  font-size: var(--fs-tiny);
  color: rgba(255,255,255,.35);
  line-height: 1.5;
}

/* Spoon image positioning */
.spoon-container{
  position: fixed;
  right: 10%;
  bottom: 0;
  width: clamp(320px, 28vw, 560px);
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.spoon-container img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform-origin: center bottom;
  transform: scaleY(1.15) translateY(24px);
  opacity: 0;
  animation: spoon-fade-in 1.2s ease-out 0.2s forwards;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.8));
}

/* Success/Error Message Styling */
#form-message {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  animation: slideIn 0.4s ease-out;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

#form-message.success {
  background: linear-gradient(135deg, rgba(202, 139, 2, 0.15) 0%, rgba(202, 139, 2, 0.05) 100%);
  border: 1px solid rgba(202, 139, 2, 0.4);
  color: var(--gold);
  font-weight: 600;
}

#form-message.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
  font-weight: 600;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button loading state */
button.loading {
  position: relative;
  color: transparent;
}

button.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid #000;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spoon-fade-in{
  from{
    opacity: 0;
    transform: scaleY(1.15) translateY(24px);
  }
  to{
    opacity: 1;
    transform: scaleY(1.15) translateY(0);
  }
}

@keyframes text-fade-in{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .spoon-container img{
    animation: none;
    opacity: 1;
    transform: scaleY(1.15);
  }

  .brand{
    animation: none;
    opacity: 1;
    transform: none;
  }

  main > section{
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.legal-notice{
  margin: 8px 0 px;
  font-size: var(--fs-legal);
  color: rgba(255,255,255,.40);
  line-height: 1.5;
  max-width: 420px;
}

/* Dark overlay for text contrast - darker on left */ 
.overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.50) 40%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 1;

  
}

/* ========================================
   PRIVACY POLICY PAGE STYLES
   ======================================== */

.privacy-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  font-family: 'STIX Two Text', serif;
}

.privacy-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.privacy-content h1 {
  font-family: 'STIX Two Text', serif;
  font-size: var(--fs-privacy-h1);
  line-height: 1.1;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.privacy-date {
  font-size: var(--fs-privacy-date);
  color: var(--muted2);
  font-weight: 500;
}

.privacy-content h2 {
  font-family: 'STIX Two Text', serif;
  color: var(--gold);
  font-size: var(--fs-privacy-h2);
  font-weight: 700;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.privacy-content h2:first-of-type {
  margin-top: 0;
}

.privacy-content p {
  font-family: 'STIX Two Text', serif;
  color: var(--muted);
  line-height: 1.8;
  font-size: var(--fs-privacy-p);
  margin-bottom: 20px;
}

.privacy-content ul {
  font-family: 'STIX Two Text', serif;
  color: var(--muted);
  line-height: 1.9;
  margin: 16px 0 24px;
  padding-left: 24px;
}

.privacy-content li {
  margin-bottom: 8px;
  font-size: var(--fs-privacy-li);
}

.privacy-content li::marker {
  color: var(--gold);
}

.privacy-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(202, 139, 2, 0.3);
  transition: border-color 0.2s, color 0.2s;
}

.privacy-content a:hover {
  color: #d4941a;
  border-bottom-color: #d4941a;
}

.back-link {
  font-family: 'STIX Two Text', serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  padding: 12px 0;
  font-weight: 600;
  font-size: var(--fs-back-link);
  color: var(--gold);
  text-decoration: none;
  border-bottom: none;
  transition: gap 0.2s;
}

.back-link:hover {
  gap: 12px;
}

.back-link::before {
  content: "←";
  font-size: 18px;
}

.privacy-section {
  margin-bottom: 40px;
}



/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Large desktop optimization */
@media (min-width: 1200px){
  :root{
    --fs-sub: 18px;
    --fs-benefit: 18px;
  }

  .spoon-container{
    right: 15%;
    width: 550px;
    height: 100vh;
  }

  .wrap{
    padding: 24px 80px 80px;
  }

  h1{
    margin-bottom: 28px;
  }

}

/* Tablet and smaller desktop */
@media (max-width: 1200px){
  .spoon-container{
    right: 5%;
    width: 400px;
    height: 100vh;
      transform-origin: center bottom;
  transform: scaleY(1.10);
  }

  .wrap{
    padding: 20px 40px 60px;
  }
}

/* Tablet */
@media (max-width: 900px){
  :root{
    --fs-h1: clamp(38px, 9vw, 54px);
  }

  .wrap{
    padding: 20px 32px 50px;
  }

}

/* Mobile */
@media (max-width: 768px){
  :root{
    --fs-h1: clamp(32px, 10vw, 48px);
    --fs-sub: 16px;
    --fs-benefit: 16px;
    --fs-mission: 14px;
    --fs-final-title: 22px;
    --fs-privacy-h2: 20px;
  }

  header {
    padding-left: 20px;
  }

  .wrap{
    padding: 16px 20px 40px;
  }

  .brand{
    gap: 40px;
  }

  h1{
    margin-bottom: 20px;
  }

  .sub{
    margin-bottom: 28px;
  }

  .form{
    max-width: 100%;
  }

  button{
    width:100%;
  }

  .footerCTA button{
    max-width: 100%;
  }

  .spoon-container{
    right: 0;
    left: auto;
    width: clamp(180px, 45vw, 260px);
    opacity: 0.25;
  }

  .overlay{
    background: rgba(0,0,0,.65);
  }

  .benefits{
    gap: 18px;
  }

  .mission{
    margin-top: 32px;
    padding-top: 28px;
  }

  .final{
    margin-top: 32px;
    padding-top: 28px;
  }

  .privacy-content {
    padding: 40px 20px 60px;
  }

  .privacy-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .privacy-content h2 {
    margin: 36px 0 12px;
  }

  .back-link {
    margin-top: 48px;
  }

  section {
      padding-left: 5%;   /* Always the physical left side */
      padding-right: 5%;
  }
}

@media (max-width: 480px){
  :root{
    --fs-h1: clamp(28px, 10vw, 42px);
    --fs-sub: 15px;
    --fs-control: 14px;
    --fs-benefit: 15px;
  }

  .wrap{
    padding: 16px 16px 40px;
  }

  h1{
    margin-bottom: 16px;
  }

  input[type="email"],
  button{
    padding: 14px 16px;
  }
}

@media (max-width: 900px) and (max-height: 600px) and (orientation: landscape){
  .wrap{
    padding: 12px 24px 32px;
  }

  header{
    padding-bottom: 20px;
  }

  h1{
    margin-bottom: 16px;
  }

  .sub{
    margin-bottom: 20px;
  }

  .benefits{
    gap: 14px;
  }

  .mission{
    margin-top: 24px;
    padding-top: 20px;
  }

  
  .final{
    margin-top: 24px;
    padding-top: 20px;
  }

  .tiny{
    margin-top: 32px;
  }
}