-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
213 lines (206 loc) · 8.84 KB
/
contact.html
File metadata and controls
213 lines (206 loc) · 8.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact — SALT & TIDE</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=Bebas+Neue&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="main-nav" id="mainNav">
<div class="nav-inner">
<a href="index.html" class="nav-logo">SALT<span>&</span>TIDE</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="shop.html">Shop</a>
<a href="lookbook.html">Lookbook</a>
<a href="about.html">About</a>
<a href="contact.html" class="active">Contact</a>
</div>
<div class="nav-actions">
<button class="nav-menu-btn" id="menuToggle" aria-label="Menu">
<span></span><span></span><span></span>
</button>
</div>
</div>
</nav>
<div class="mobile-menu" id="mobileMenu">
<div class="mobile-menu-inner">
<a href="index.html">Home</a>
<a href="shop.html">Shop</a>
<a href="lookbook.html">Lookbook</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
</div>
<!-- Contact Hero -->
<header class="page-header">
<div class="container">
<h1 class="page-title anim-up" style="--delay: 0.2s">Get in Touch</h1>
<p class="page-subtitle anim-up" style="--delay: 0.4s">Questions about an order, board sizing, or just want to talk waves? We'd love to hear from you. Our team typically responds within 24 hours.</p>
</div>
</header>
<!-- Contact Content -->
<section class="contact-section">
<div class="container">
<div class="contact-grid">
<div class="contact-form-wrap anim-reveal">
<h2>Send Us a Message</h2>
<form class="contact-form" id="contactForm">
<div class="form-row">
<div class="form-group">
<label for="firstName">First Name</label>
<input type="text" id="firstName" name="firstName" required>
</div>
<div class="form-group">
<label for="lastName">Last Name</label>
<input type="text" id="lastName" name="lastName" required>
</div>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<select id="subject" name="subject">
<option value="">Select a topic...</option>
<option value="order">Order Inquiry</option>
<option value="sizing">Board Sizing & Dimensions</option>
<option value="returns">Returns & Exchanges</option>
<option value="wholesale">Wholesale / Retail Partners</option>
<option value="press">Press & Media</option>
<option value="other">Something Else</option>
</select>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="6" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
<div class="form-success" id="formSuccess" style="display:none;">
<h3>Message Sent</h3>
<p>Thanks for reaching out. We'll get back to you within 24 hours.</p>
</div>
</div>
<div class="contact-info anim-reveal" style="--delay: 0.2s">
<div class="contact-info-block">
<h3>Visit Us</h3>
<p>Salt & Tide Shaping Bay<br>218 Avenida Del Mar<br>San Clemente, CA 92672</p>
<p class="contact-note">Open by appointment only.<br>Please email ahead to schedule a visit.</p>
</div>
<div class="contact-info-block">
<h3>Email</h3>
<p>info@salttide.org</p>
</div>
<div class="contact-info-block">
<h3>Social</h3>
<div class="contact-social">
<a href="#">Instagram</a>
<a href="#">Twitter / X</a>
<a href="#">TikTok</a>
</div>
</div>
<div class="contact-info-block">
<h3>Hours</h3>
<p>Monday — Friday: 9am – 6pm PT<br>Weekends: Closed</p>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ -->
<section class="faq-section">
<div class="container">
<div class="section-header">
<span class="section-tag anim-reveal">Common Questions</span>
<h2 class="section-title anim-reveal">FAQ</h2>
</div>
<div class="faq-list">
<div class="faq-item anim-reveal" style="--delay: 0.1s">
<button class="faq-question">
How long does shipping usually take?
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>Boards ship within 3–5 business days and arrive in 7–10 days via freight carrier (domestic). Wetsuits, boardshorts, and accessories ship within 2 business days and arrive in 3–5 days via USPS Priority. You'll receive a tracking number as soon as your order leaves our warehouse.</p>
</div>
</div>
<div class="faq-item anim-reveal" style="--delay: 0.15s">
<button class="faq-question">
What's your return policy?
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>We accept returns within 30 days of delivery for unused items in original condition. Surfboards must be unridden and free of wax. Return shipping is free for domestic orders on apparel and accessories. Board returns require a freight pickup — reach out and we'll arrange everything.</p>
</div>
</div>
<div class="faq-item anim-reveal" style="--delay: 0.2s">
<button class="faq-question">
How do I choose the right board size?
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>Each board page includes a detailed dimension chart with length, width, thickness, and recommended volume ranges based on your weight and skill level. If you're between sizes or unsure, email us your height, weight, and the kind of waves you usually surf — we'll dial in the right board for you.</p>
</div>
</div>
<div class="faq-item anim-reveal" style="--delay: 0.25s">
<button class="faq-question">
Do you offer wholesale or shop partnerships?
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>We work with a small number of surf shops and retailers who share our values. If you're interested in carrying Salt & Tide, drop us a line using the form above and select "Wholesale / Retail Partners" as the subject. We'd love to hear about your shop.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="site-footer">
<div class="container">
<div class="footer-grid">
<div class="footer-brand">
<a href="index.html" class="footer-logo">SALT<span>&</span>TIDE</a>
<p>Premium surf gear for those who live by the tide. Shaped with care in Southern California.</p>
</div>
<div class="footer-col">
<h4>Shop</h4>
<a href="shop.html">All Products</a>
<a href="#" data-shop-link="surfboards">Surfboards</a>
<a href="#" data-shop-link="wetsuits">Wetsuits</a>
<a href="#" data-shop-link="boardshorts">Boardshorts</a>
<a href="#" data-shop-link="accessories">Accessories</a>
</div>
<div class="footer-col">
<h4>Company</h4>
<a href="about.html">Our Story</a>
<a href="lookbook.html">Lookbook</a>
<a href="contact.html">Contact</a>
<a href="#">Careers</a>
</div>
<div class="footer-col">
<h4>Help</h4>
<a href="#">Shipping & Returns</a>
<a href="#">Size Guide</a>
<a href="#">FAQ</a>
<a href="#">Terms of Service</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Salt & Tide. All rights reserved.</p>
<div class="footer-social">
<a href="#" aria-label="Instagram">IG</a>
<a href="#" aria-label="Twitter">TW</a>
<a href="#" aria-label="TikTok">TK</a>
</div>
</div>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>