-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
408 lines (357 loc) · 19.3 KB
/
Copy pathprivacy.html
File metadata and controls
408 lines (357 loc) · 19.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy — Conscious Fathers</title>
<meta name="description" content="Privacy policy for consciousfathers.org — how we collect, use, and protect your personal information.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
:root {
--earth: #2C2417;
--earth-light: #3D3225;
--sand: #C4A882;
--sand-light: #D9C9AE;
--cream: #F5F0E8;
--cream-dark: #EBE3D5;
--ember: #C4612A;
--ember-glow: #D4793F;
--sage: #6B7C5E;
--sage-light: #8A9B7C;
--warm-white: #FAF8F4;
--text-primary: #2C2417;
--text-secondary: #5C4F3D;
--text-light: #8A7D6B;
--font-display: 'Cormorant Garamond', Georgia, serif;
--font-body: 'Outfit', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
font-family: var(--font-body);
color: var(--text-primary);
background: var(--warm-white);
-webkit-font-smoothing: antialiased;
}
/* ─── NAV ─── */
nav {
background: rgba(250, 248, 244, 0.95);
backdrop-filter: blur(12px);
box-shadow: 0 1px 0 rgba(44, 36, 23, 0.08);
padding: 1.25rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-logo {
font-family: var(--font-display);
font-size: 1.3rem;
font-weight: 600;
color: var(--text-primary);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.6rem;
}
.nav-logo-mark {
width: 32px;
height: 32px;
border-radius: 6px;
flex-shrink: 0;
}
.nav-back {
font-family: var(--font-body);
font-size: 0.85rem;
font-weight: 400;
color: var(--text-secondary);
text-decoration: none;
letter-spacing: 0.06em;
text-transform: uppercase;
transition: color 0.3s ease;
}
.nav-back:hover { color: var(--ember); }
/* ─── CONTENT ─── */
.policy-hero {
background: var(--earth);
padding: 4rem 2rem 3rem;
text-align: center;
}
.policy-hero h1 {
font-family: var(--font-display);
font-size: clamp(2rem, 5vw, 3.2rem);
font-weight: 400;
color: var(--sand-light);
margin-bottom: 0.5rem;
}
.policy-hero .updated {
font-family: var(--font-body);
font-size: 0.8rem;
font-weight: 400;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--sand);
}
.policy-content {
max-width: 760px;
margin: 0 auto;
padding: 3rem 2rem 5rem;
}
.policy-content h2 {
font-family: var(--font-display);
font-size: 1.6rem;
font-weight: 500;
color: var(--text-primary);
margin: 2.5rem 0 0.75rem;
padding-top: 1.5rem;
border-top: 1px solid var(--cream-dark);
}
.policy-content h2:first-child {
margin-top: 0;
padding-top: 0;
border-top: none;
}
.policy-content p {
font-family: var(--font-body);
font-size: 0.95rem;
font-weight: 300;
line-height: 1.75;
color: var(--text-secondary);
margin-bottom: 1rem;
}
.policy-content strong {
font-weight: 500;
color: var(--text-primary);
}
.policy-content a {
color: var(--ember);
text-decoration: none;
border-bottom: 1px solid transparent;
transition: border-color 0.3s ease;
}
.policy-content a:hover {
border-bottom-color: var(--ember);
}
.policy-content ul {
list-style: none;
margin: 0.5rem 0 1.25rem 0;
padding: 0;
}
.policy-content ul li {
font-family: var(--font-body);
font-size: 0.95rem;
font-weight: 300;
line-height: 1.75;
color: var(--text-secondary);
padding-left: 1.25rem;
position: relative;
margin-bottom: 0.35rem;
}
.policy-content ul li::before {
content: '';
position: absolute;
left: 0;
top: 0.65rem;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--sand);
}
.data-table {
width: 100%;
border-collapse: collapse;
margin: 1rem 0 1.5rem;
font-size: 0.9rem;
}
.data-table th {
font-family: var(--font-body);
font-weight: 500;
text-align: left;
padding: 0.75rem;
background: var(--cream);
color: var(--text-primary);
font-size: 0.8rem;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.data-table td {
font-family: var(--font-body);
font-weight: 300;
padding: 0.75rem;
color: var(--text-secondary);
border-bottom: 1px solid var(--cream-dark);
vertical-align: top;
line-height: 1.5;
}
.highlight-box {
background: var(--cream);
border-left: 3px solid var(--ember);
border-radius: 4px;
padding: 1.25rem 1.5rem;
margin: 1.25rem 0;
}
.highlight-box p {
margin-bottom: 0;
font-size: 0.9rem;
}
/* ─── FOOTER ─── */
footer {
background: var(--earth);
border-top: 1px solid rgba(196, 168, 130, 0.1);
padding: 3rem 2rem;
}
.footer-inner {
max-width: 1100px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-brand {
font-family: var(--font-display);
font-size: 1.1rem;
font-weight: 600;
color: var(--sand);
}
.footer-copy {
font-family: var(--font-body);
font-size: 0.8rem;
color: var(--text-light);
}
@media (max-width: 640px) {
.data-table th, .data-table td { padding: 0.5rem; font-size: 0.82rem; }
.footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}
</style>
</head>
<body>
<nav>
<a href="index.html" class="nav-logo">
<svg class="nav-logo-mark" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
<rect width="400" height="400" rx="48" fill="#2C2417"/>
<rect x="170" y="105" width="60" height="2.5" rx="1.25" fill="#C4612A"/>
<text x="115" y="265" font-family="'Cormorant Garamond','Georgia',serif" font-size="180" font-weight="600" fill="#D9C9AE">C</text>
<text x="225" y="265" font-family="'Cormorant Garamond','Georgia',serif" font-size="180" font-weight="400" font-style="italic" fill="#C4612A">F</text>
</svg>
Conscious Fathers
</a>
<a href="index.html" class="nav-back">← Back to Home</a>
</nav>
<div class="policy-hero">
<h1>Privacy Policy</h1>
<p class="updated">Last updated: February 20, 2026</p>
</div>
<div class="policy-content">
<h2>Plain Language Summary</h2>
<div class="highlight-box">
<p>We collect very little data. When you fill out our interest form, we receive your name, email, and whatever you choose to share. Your submission is stored in a private Google Sheets spreadsheet and we're notified via Gmail. We use your information to connect with you personally and may send occasional updates about the Conscious Fathers project, such as new episode announcements or community events. How we follow up will be guided by what you tell us — if you're nominating a guest, we'll reach out about that; if you're looking for community, we'll keep you in the loop. We don't sell your information and we don't run ads. Our podcast episodes are embedded from YouTube — if you choose "Essential Only" in the cookie banner, YouTube won't load until you click play. That's it.</p>
</div>
<h2>Who We Are</h2>
<p>Conscious Fathers is a podcast and community platform operated by Adriel Hampton ("we," "us," "our") based in Carlsbad, California. Our website is <strong>consciousfathers.org</strong>.</p>
<p>For privacy-related questions or requests, contact us at: <a href="mailto:cf@adrielhampton.com">cf@adrielhampton.com</a></p>
<h2>What Information We Collect</h2>
<p>We only collect information you voluntarily provide. We do not collect data automatically through cookies, analytics, or tracking technologies unless you consent to optional cookies.</p>
<table class="data-table">
<thead>
<tr>
<th>Data</th>
<th>When</th>
<th>Purpose</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>First name, last name</strong></td>
<td>When you submit the interest form</td>
<td>To address you personally when we connect</td>
</tr>
<tr>
<td><strong>Email address</strong></td>
<td>When you submit the interest form</td>
<td>To reach out and send project updates</td>
</tr>
<tr>
<td><strong>Interest selection</strong></td>
<td>When you submit the interest form</td>
<td>To understand what brought you here and tailor our follow-up</td>
</tr>
<tr>
<td><strong>Optional message</strong></td>
<td>When you submit the interest form</td>
<td>To hear your story or a guest nomination in your own words</td>
</tr>
</tbody>
</table>
<h2>How We Use Your Information</h2>
<p>We use the information you provide to:</p>
<ul>
<li><strong>Connect with you personally</strong> — based on what you share with us, whether that's interest in the community, a guest nomination, or your own story.</li>
<li><strong>Send updates about the Conscious Fathers project</strong> — including new episode announcements, community events, and other developments. These communications will be occasional and relevant.</li>
<li><strong>Follow up on guest nominations</strong> — if you nominate yourself or someone else as a podcast guest, we'll reach out about next steps.</li>
</ul>
<p>Our use of your information will always be related to what you tell us and the reason you reached out. We won't use your email for unrelated purposes.</p>
<h2>How We Process Your Data</h2>
<p>When you submit the interest form, your information is sent to a <strong>Google Apps Script</strong> endpoint that appends your submission to a private <strong>Google Sheets</strong> spreadsheet and sends us a notification via <strong>Gmail</strong>. These are Alphabet (Google) products, and their handling of data is governed by <a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Google's privacy policy</a>.</p>
<p>Your form submissions are stored in a Google Sheets spreadsheet accessible only to the Conscious Fathers team. We do not make this data publicly available.</p>
<h2>What We Don't Do</h2>
<ul>
<li><strong>We don't sell your personal information</strong> — not now, not ever.</li>
<li><strong>We don't share your personal information</strong> for cross-context behavioral advertising.</li>
<li><strong>We don't use analytics or tracking pixels</strong> on this site.</li>
<li><strong>We don't use automated decision-making</strong> or profiling with your data.</li>
<li><strong>We don't collect sensitive personal information</strong> as defined by California law (e.g., Social Security numbers, financial data, precise geolocation, racial or ethnic origin, health data).</li>
</ul>
<h2>Cookies & Similar Technologies</h2>
<p><strong>Essential cookies:</strong> This site uses a single local storage entry to record your cookie consent preference. This is strictly necessary for the site to function as you've configured it and does not require your consent.</p>
<p><strong>YouTube embeds:</strong> Our podcast episodes are embedded from YouTube using their privacy-enhanced mode (<strong>youtube-nocookie.com</strong>). How these embeds behave depends on your cookie preference:</p>
<ul>
<li><strong>Essential Only</strong> — YouTube is not loaded until you click on a specific video. No connection to Google is made until you choose to watch.</li>
<li><strong>Accept All</strong> — YouTube embeds load automatically when you visit the page. YouTube may set cookies related to playback preferences and usage.</li>
</ul>
<p>Even in privacy-enhanced mode, playing a YouTube video will connect your browser to Google's servers and may result in cookies being set by YouTube. See <a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Google's privacy policy</a> for details on how YouTube handles your data.</p>
<p><strong>Google Fonts:</strong> This site loads fonts from Google Fonts. Google may log your IP address and basic request data when serving these files. See <a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Google's privacy policy</a> for details.</p>
<p><strong>Future cookies:</strong> If we add analytics or other non-essential cookies, they will only activate with your explicit consent through our cookie banner. You can change your preference at any time by clicking the "Cookie Settings" link in the footer.</p>
<h2>Your Rights Under California Law</h2>
<p>If you are a California resident, you have the following rights under the California Consumer Privacy Act (CCPA) and the California Privacy Rights Act (CPRA):</p>
<ul>
<li><strong>Right to Know</strong> — You can request what personal information we've collected about you and how we use it.</li>
<li><strong>Right to Delete</strong> — You can request that we delete any personal information we've collected from you.</li>
<li><strong>Right to Correct</strong> — You can request that we correct inaccurate personal information.</li>
<li><strong>Right to Opt-Out</strong> — You have the right to opt out of the sale or sharing of your personal information. We do not sell or share personal information, but you can exercise this right at any time.</li>
<li><strong>Right to Non-Discrimination</strong> — We will not discriminate against you for exercising any of these rights.</li>
</ul>
<p>To exercise any of these rights, email us at <a href="mailto:cf@adrielhampton.com">cf@adrielhampton.com</a>. We will respond within 45 days as required by law.</p>
<h2>Do Not Track & Global Privacy Control</h2>
<p>We honor the <strong>Global Privacy Control (GPC)</strong> signal. If your browser sends a GPC signal, we treat it as a valid opt-out request under California law. Since we do not sell or share personal information, no additional action is taken, but we respect and acknowledge the signal.</p>
<p>We also honor <strong>Do Not Track (DNT)</strong> browser settings. Since this site does not engage in cross-site tracking, DNT signals are consistent with our existing practices.</p>
<h2>Data Retention</h2>
<p>We retain form submission data in a private Google Sheets spreadsheet for as long as it is useful for communicating with you about Conscious Fathers. If you request deletion, we will remove your information within 45 days.</p>
<h2>Children's Privacy</h2>
<p>This site is not directed at children under 16. We do not knowingly collect personal information from anyone under 16. If we learn that we have collected information from a child under 16, we will delete it promptly.</p>
<h2>Third-Party Services</h2>
<p>This site relies on several third-party services, primarily from <strong>Alphabet (Google)</strong>:</p>
<ul>
<li><strong>YouTube</strong> (video embeds) — used to host and display podcast episodes via privacy-enhanced mode (youtube-nocookie.com)</li>
<li><strong>Google Apps Script & Google Sheets</strong> — used to process and store form submissions</li>
<li><strong>Gmail</strong> — used to deliver form submission notifications to our team</li>
<li><strong>Google Fonts</strong> — used to load typefaces for the site's design</li>
</ul>
<p>These services are governed by <a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Google's privacy policy</a>. We encourage you to review it.</p>
<p>Our site also contains links to other websites (ManKind Project, Good Men Project, etc.). We are not responsible for the privacy practices of those sites and encourage you to read their privacy policies.</p>
<h2>Changes to This Policy</h2>
<p>If we make material changes to this policy, we'll update the "Last updated" date at the top and, if appropriate, notify you via the email you provided.</p>
<h2>Contact</h2>
<p>For any privacy questions, concerns, or requests:</p>
<p><strong>Adriel Hampton</strong><br>
Conscious Fathers<br>
Carlsbad, California<br>
<a href="mailto:cf@adrielhampton.com">cf@adrielhampton.com</a></p>
</div>
<footer>
<div class="footer-inner">
<span class="footer-brand">
<svg width="24" height="24" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg" style="vertical-align: middle; margin-right: 0.4rem; border-radius: 4px;">
<rect width="400" height="400" rx="48" fill="#2C2417"/>
<rect x="170" y="105" width="60" height="2.5" rx="1.25" fill="#C4612A"/>
<text x="115" y="265" font-family="'Cormorant Garamond','Georgia',serif" font-size="180" font-weight="600" fill="#