/* Carolina Wild Seafood — Pre-Launch Landing
   Applies brand kit tokens to the waitlist hero. */

:root {
    --deep-harbor:   #193D4B;
    --tidewater:     #478B9E;
    --sun-catch:     #E59540;
    --coral-rust:    #D97050;
    --oyster-cream:  #E6E0D4;
    --ink:           #0F2530;
    --page:          #F5F1E8;
    --harbor-deeper: #0F2A36;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { min-height: 100%; }

body {
    font-family: 'Lora', Georgia, serif;
    color: var(--oyster-cream);
    line-height: 1.65;
    background: var(--harbor-deeper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero shell — harbor gradient over coastal photo, with radial warm glows */
.shell {
    min-height: 100vh;
    position: relative;
    background:
        linear-gradient(180deg, rgba(25, 61, 75, 0.84) 0%, rgba(15, 37, 48, 0.96) 100%),
        url('../img/cws-teaser-bkg.jpg') center/cover no-repeat,
        var(--deep-harbor);
    padding: 48px 24px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 112%, rgba(229, 149, 64, 0.14), transparent 55%),
        radial-gradient(ellipse at 82% -10%, rgba(71, 139, 158, 0.22), transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.inner {
    max-width: 660px;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Logo */
.logo-wrap {
    margin: 40px 0 28px;
}

.logo-wrap img {
    height: 270px;
    width: auto;
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .logo-wrap img { height: 330px; }
}

/* Typography */
.eyebrow {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 11px;
    color: var(--sun-catch);
    margin-bottom: 18px;
}

.hero-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    font-size: clamp(44px, 8.5vw, 84px);
    color: var(--oyster-cream);
    margin-bottom: 18px;
}

.hero-tagline {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.5;
    color: var(--oyster-cream);
    opacity: 0.88;
    max-width: 520px;
    margin: 0 auto 22px;
}

.hero-desc {
    font-family: 'Lora', serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--oyster-cream);
    opacity: 0.82;
    max-width: 520px;
    margin: 0 auto 52px;
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 56px;
}

@media (min-width: 640px) {
    .pillars { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.pillar {
    background: rgba(230, 224, 212, 0.06);
    border: 1px solid rgba(230, 224, 212, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 24px 18px;
    text-align: center;
    border-radius: 12px;
}

.pillar .stat {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    color: var(--sun-catch);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.pillar h3 {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--oyster-cream);
    margin-bottom: 6px;
}

.pillar p {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 13px;
    line-height: 1.45;
    color: var(--oyster-cream);
    opacity: 0.78;
}

/* Form card */
.form-card {
    background: rgba(230, 224, 212, 0.06);
    border: 1px solid rgba(230, 224, 212, 0.2);
    border-top: 4px solid var(--sun-catch);
    padding: 38px 28px 32px;
    max-width: 460px;
    margin: 0 auto 48px;
    text-align: left;
    border-radius: 12px;
}

.form-card h2 {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: var(--oyster-cream);
    margin-bottom: 8px;
    text-align: center;
    line-height: 1;
}

.form-card .sub {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 14px;
    line-height: 1.5;
    color: var(--oyster-cream);
    opacity: 0.8;
    margin-bottom: 24px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.field-label {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 10px;
    color: var(--oyster-cream);
    opacity: 0.8;
    margin-bottom: 6px;
}

.text-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--oyster-cream);
    color: var(--ink);
    font-family: 'Lora', serif;
    font-size: 16px;
    border: 1px solid transparent;
    outline: none;
    transition: box-shadow 0.2s, border-color 0.2s;
    border-radius: 10px;
}

.text-input::placeholder {
    color: rgba(15, 37, 48, 0.45);
    font-style: italic;
}

.text-input:focus {
    box-shadow: 0 0 0 3px var(--sun-catch);
}

.sms-toggle {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: rgba(230, 224, 212, 0.05);
    border: 1px solid rgba(230, 224, 212, 0.18);
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 10px;
}

.sms-toggle:hover { background: rgba(230, 224, 212, 0.1); }

.sms-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--sun-catch);
    cursor: pointer;
}

.sms-toggle .label-copy {
    font-family: 'Lora', serif;
    font-size: 13px;
    line-height: 1.45;
    color: var(--oyster-cream);
    opacity: 0.88;
}

.sms-toggle .label-copy strong {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--oyster-cream);
    display: block;
    margin-bottom: 3px;
    opacity: 1;
}

#phone-wrap {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s, opacity 0.3s;
}

.btn-submit {
    width: 100%;
    background: var(--sun-catch);
    color: var(--deep-harbor);
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 17px 24px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 6px;
    border-radius: 12px;
}

.btn-submit:hover:not(:disabled) {
    background: #D38430;
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-foot {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 11px;
    text-align: center;
    color: var(--oyster-cream);
    opacity: 0.55;
    margin-top: 16px;
    line-height: 1.5;
}

/* Success state */
#success-state {
    text-align: center;
    padding: 8px 4px;
}

#success-state .mark {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sun-catch);
    margin-bottom: 14px;
}

#success-state h3 {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-size: 30px;
    color: var(--oyster-cream);
    margin-bottom: 16px;
    line-height: 0.95;
}

#success-state p {
    font-family: 'Lora', serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--oyster-cream);
    opacity: 0.88;
}

#success-state .signoff {
    display: block;
    margin-top: 18px;
    font-style: italic;
    font-size: 13px;
    opacity: 0.7;
}

/* Social */
.social {
    margin-bottom: 44px;
    text-align: center;
}

.social .label {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    color: var(--sun-catch);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-links a {
    color: var(--oyster-cream);
    opacity: 0.8;
    transition: color 0.2s, opacity 0.2s, transform 0.2s;
    display: inline-flex;
}

.social-links a:hover {
    opacity: 1;
    color: var(--sun-catch);
    transform: translateY(-2px);
}

.social-links svg {
    width: 26px;
    height: 26px;
}

/* Footer */
.shell-footer {
    text-align: center;
    font-family: 'Lora', serif;
    font-size: 13px;
    color: var(--oyster-cream);
    opacity: 0.6;
    line-height: 1.8;
}

.shell-footer p {
    margin: 2px 0;
}

.shell-footer .divider {
    color: var(--sun-catch);
    opacity: 0.85;
    margin: 0 6px;
}
