
:root{
  --bg:#f7f5f2;
  --text:#2b2b2b;
  --muted:#6b7280;
  --accent:#7a5a33;
  --card:#ffffff;
  --border:#e6e1da;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

/* ================= HEADER ================= */

.header{ width:100%; }

.header-container{
  width:100%;
  padding:24px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-family:Georgia,"Times New Roman",serif;
  font-size:34px;
  letter-spacing:.08em;
  color:var(--accent);
}

.brand-logo{
  width:34px;
  height:34px;
  object-fit:contain;
  display:block;
}

.nav{
  display:flex;
  gap:30px;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:.12em;
  color:var(--muted);
}

.nav a{
  text-decoration:none;
  color:inherit;
  padding-bottom:6px;
}

.nav a.active{
  border-bottom:2px solid var(--accent);
  color:var(--text);
}

/* ================= GENERAL ================= */

.container{
  max-width:1150px;
  margin:0 auto;
  padding:60px 20px;
}

/* ================= CONTACT SECTION ================= */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

.contact-kicker{
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:12px;
  color:var(--accent);
  margin-bottom:20px;
}

.contact-headline{
  font-family:Georgia,"Times New Roman",serif;
  font-size:60px;
  font-weight:500;
  color:var(--accent);
  margin:0 0 30px;
}

.contact-text{
  font-size:18px;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:40px;
}

.contact-item{
  display:flex;
  gap:20px;
  margin-bottom:30px;
}

.contact-icon{
  width:54px;
  height:54px;
  background:#f3efe8;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.contact-icon svg{
  width:22px;
  height:22px;
  fill:var(--accent);
}

.form-card{
  background:#f9f7f4;
  padding:50px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.form-title{
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  color:var(--accent);
  margin-bottom:30px;
}

.field{
  margin-bottom:25px;
}

.field label{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.15em;
  color:var(--muted);
  margin-bottom:10px;
}

.field input,
.field textarea{
  width:100%;
  border:none;
  border-bottom:1px solid #ccc;
  padding:12px 0;
  background:transparent;
  font-size:16px;
  outline:none;
}

.field textarea{
  min-height:120px;
  resize:none;
}

.btn-primary{
  margin-top:20px;
  width:100%;
  padding:16px;
  background:var(--accent);
  color:white;
  border:none;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary:hover{
  opacity:0.9;
}

/* CONTACT BIG LOGO */

.contact-logo-wrap{
  margin:120px auto 80px;
  text-align:center;
}

.contact-logo{
  width:100%;
  max-width:520px;
  height:auto;
  opacity:0.95;
}

/* ================= FOOTER ================= */

.site-footer{
  margin-top:100px;
  padding:60px 0 50px;
  border-top:1px solid var(--border);
}

.site-footer .footer-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
}

.footer-brand{
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
  color:var(--accent);
  margin-bottom:10px;
}

.footer-tagline{
  color:var(--muted);
  font-style:italic;
  font-size:14px;
}

.footer-right{
  text-align:right;
  font-size:14px;
  color:var(--muted);
}

.footer-social{
  margin-top:10px;
  display:flex;
  gap:18px;
  justify-content:flex-end;
}

.footer-social svg{
  width:16px;
  height:16px;
  fill:var(--accent);
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .header-container{
    padding:24px 30px;
  }

  .footer-right{
    text-align:left;
  }

  .footer-social{
    justify-content:flex-start;
  }
}

/* ================= FINAL VISUAL FIXES (match Replit) ================= */

/* Footer email/link should NOT be blue/underlined */
.footer-right a{
  color:var(--muted);
  text-decoration:none;
}
.footer-right a:hover{
  color:var(--accent);
  text-decoration:underline;
}

/* Social links: small, clean, same color as accent, no default underline */
.footer-social a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--accent);
  text-decoration:none;
  font-size:14px;
}
.footer-social a:hover{
  text-decoration:underline;
}


/* Contact email should look like normal text (no blue link) */
.contact-item a{
  color:var(--muted);
  text-decoration:none;
}
.contact-item a:hover{
  color:var(--accent);
  text-decoration:underline;
}


/* === FIX: ensure press content stays above overlay === */
.press-card{
  position:relative;
}

.press-text,
.press-icon{
  position:relative;
  z-index:2;
}

.press-card::after{
  z-index:1;
}
