*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Manrope', sans-serif; background: #0D0508; color: rgba(249,241,243,0.82); line-height: 1.75; font-size: 15px; -webkit-font-smoothing: antialiased; }
a { color: #FF6090; text-decoration: none; transition: color .18s; }
a:hover { color: #fff; }

.pg-nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 7%; position: sticky; top: 0; z-index: 100; background: rgba(13,5,8,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(249,241,243,0.06); }
.pg-nav-logo { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 20px; color: #fff; text-decoration: none; }
.pg-nav-links { display: flex; gap: 24px; align-items: center; }
.pg-nav-links a { font-size: 13.5px; color: rgba(249,241,243,0.6); }
.pg-nav-links a:hover { color: #fff; }
.pg-nav-cta { background: #C6093F; color: #fff; padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; transition: background .2s; }
.pg-nav-cta:hover { background: #E0104A; color: #fff; }

.pg-header { padding: clamp(60px,10vh,100px) 7% clamp(40px,6vh,64px); text-align: center; position: relative; }
.pg-header::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(198,9,63,0.12) 0%, transparent 70%); }
.pg-header-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(249,241,243,0.38); margin-bottom: 16px; }
.pg-header h1 { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(32px,5vw,52px); color: #fff; margin-bottom: 14px; position: relative; }
.pg-header p { font-size: 16px; color: rgba(249,241,243,0.55); max-width: 480px; margin: 0 auto; }

/* Contact Layout */
.contact-layout {
  max-width: 1000px; margin: 0 auto;
  padding: 0 7% clamp(64px,10vh,120px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* Contact Info */
.contact-info {}
.contact-info h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 22px; color: #fff; margin-bottom: 20px;
}
.contact-info p { font-size: 14px; color: rgba(249,241,243,0.55); margin-bottom: 32px; }

.contact-channel {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.contact-channel-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(198,9,63,0.10); border: 1px solid rgba(198,9,63,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-channel-label {
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(249,241,243,0.38); margin-bottom: 4px;
}
.contact-channel-value { font-size: 15px; font-weight: 500; color: #fff; }
.contact-channel-note { font-size: 12px; color: rgba(249,241,243,0.38); margin-top: 2px; }

.contact-social { margin-top: 36px; }
.contact-social-label {
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(249,241,243,0.38); margin-bottom: 14px;
}
.contact-social-links { display: flex; flex-direction: column; gap: 10px; }
.contact-soc-wide {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(249,241,243,0.14);
  border-radius: 10px; padding: 12px 20px;
  color: rgba(249,241,243,0.65); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: border-color .2s, color .2s, background .2s;
}
.contact-soc-wide:hover { border-color: rgba(198,9,63,0.50); color: #fff; background: rgba(198,9,63,0.08); }
.contact-soc-icon { font-size: 18px; width: 24px; text-align: center; }

/* Contact Form */
.contact-form-wrap {}
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 22px; color: #fff; margin-bottom: 20px;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px; font-weight: 600; color: rgba(249,241,243,0.55);
  letter-spacing: .02em;
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(249,241,243,0.04);
  border: 1px solid rgba(249,241,243,0.10);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #fff;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(198,9,63,0.50);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(249,241,243,0.25);
}
.form-group select { cursor: pointer; }
.form-group select option { background: #1a0a10; color: #fff; }
.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  background: #C6093F; color: #fff; border: none;
  padding: 14px 32px; border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background .2s;
  margin-top: 4px;
}
.form-submit:hover { background: #E0104A; }

.form-note {
  font-size: 12px; color: rgba(249,241,243,0.30);
  margin-top: -4px;
}

/* Universal Footer */
#site-footer { background:#0D0508; color:rgba(249,241,243,0.72); padding:clamp(64px,9vh,100px) 7% 0; position:relative; overflow:hidden; }
#site-footer::before { content:''; position:absolute; inset:0; pointer-events:none; background:radial-gradient(ellipse 60% 40% at 20% 0%, rgba(198,9,63,0.10) 0%, transparent 70%), radial-gradient(ellipse 40% 30% at 80% 100%, rgba(198,9,63,0.06) 0%, transparent 70%); }
.ft-inner { position:relative; z-index:1; max-width:1120px; margin:0 auto; }
.ft-top { display:grid; grid-template-columns:280px repeat(2,1fr); gap:clamp(28px,4vw,52px); padding-bottom:clamp(48px,7vh,72px); border-bottom:1px solid rgba(249,241,243,0.08); }
.ft-tagline { font-size:13px; line-height:1.6; color:rgba(249,241,243,0.52); margin-bottom:22px; }
.ft-social { display:flex; gap:10px; }
.ft-soc { width:34px; height:34px; border-radius:50%; border:1px solid rgba(249,241,243,0.14); display:flex; align-items:center; justify-content:center; color:rgba(249,241,243,0.52); font-size:13px; text-decoration:none; transition:border-color .2s, color .2s; }
.ft-soc:hover { border-color:rgba(198,9,63,0.70); color:#FF6090; }
.ft-col-head { font-family:'JetBrains Mono',monospace; font-size:9px; letter-spacing:.18em; text-transform:uppercase; color:rgba(249,241,243,0.38); margin-bottom:16px; }
.ft-col ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:9px; }
.ft-col a { font-size:13.5px; color:rgba(249,241,243,0.62); text-decoration:none; transition:color .18s; }
.ft-col a:hover { color:#FFFFFF; }
.ft-bottom { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; padding:22px 0 24px; }
.ft-copy { font-size:12px; color:rgba(249,241,243,0.30); }
.ft-legal { display:flex; gap:20px; }
.ft-legal a { font-size:12px; color:rgba(249,241,243,0.30); text-decoration:none; transition:color .18s; }
.ft-legal a:hover { color:rgba(249,241,243,0.65); }
.ft-badge { display:flex; align-items:center; gap:7px; background:rgba(249,241,243,0.05); border:1px solid rgba(249,241,243,0.10); border-radius:999px; padding:5px 14px; font-size:11px; color:rgba(249,241,243,0.38); }
.ft-badge-dot { width:6px; height:6px; border-radius:50%; background:#25D366; box-shadow:0 0 6px rgba(37,211,102,0.6); }

@media(max-width:900px){ .ft-top { grid-template-columns:1fr 1fr; } .ft-brand { grid-column:1/-1; } }
@media(max-width:520px){ .ft-top { grid-template-columns:1fr 1fr; } .ft-bottom { flex-direction:column; align-items:flex-start; } }

@media(max-width:768px) {
  .pg-nav-links { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
