/* Parked page — default template.
 * Basic, clean, mobile-first. No 1940's advert vibes.
 * External stylesheet only. Number input spinners hidden per preference.
 */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: #1a1a1a;
    background: #fafaf9;
}

img { max-width: 100%; height: auto; }
a { color: #0a7d80; }
a:hover { color: #075659; }

/* Hide number input spinners globally */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] { -moz-appearance: textfield; }

/* Site frame */
.site-header {
    padding: 20px 24px;
    border-bottom: 1px solid #ececec;
    background: #fff;
}
.brand {
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 15px;
    color: #444;
}

.site-footer {
    padding: 32px 24px;
    text-align: center;
    color: #888;
    font-size: 13px;
    border-top: 1px solid #ececec;
    margin-top: 64px;
    background: #fff;
}

/* Page */
.parked-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 56px 24px 24px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 24px 0 40px;
    border-bottom: 1px solid #ececec;
    margin-bottom: 40px;
}
.domain-name {
    font-size: 42px;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: #111;
    word-break: break-word;
}
.tagline {
    font-size: 19px;
    color: #555;
    margin: 0 0 28px;
}
.ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    line-height: 1.2;
    transition: transform 0.05s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-buy {
    background: #0a7d80;
    color: #fff;
    border-color: #0a7d80;
}
.btn-buy:hover { background: #075659; border-color: #075659; }

.btn-inquire {
    background: #fff;
    color: #0a7d80;
    border-color: #0a7d80;
}
.btn-inquire:hover { background: #f0fafa; }

.btn-submit {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.btn-submit:hover { background: #333; }

/* Description */
.description {
    font-size: 17px;
    color: #333;
    margin: 0 0 48px;
}
.description p:first-child { margin-top: 0; }

/* Related */
.related h2 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    font-weight: 600;
    margin: 0 0 16px;
}
.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.related-item { }
.related-link {
    display: block;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease;
}
.related-link:hover { border-color: #0a7d80; }
.related-name {
    display: block;
    font-weight: 600;
    color: #111;
    font-size: 15px;
}
.related-tag {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/* Inquire panel */
.inquire-panel {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #ececec;
}
.inquire-panel h2 {
    font-size: 22px;
    margin: 0 0 20px;
}

.inquire-form { display: grid; gap: 16px; max-width: 540px; }
.fieldrow { display: flex; flex-direction: column; gap: 6px; }
.fieldrow label {
    font-size: 14px;
    color: #444;
    font-weight: 500;
}
.fieldrow input,
.fieldrow select,
.fieldrow textarea {
    font-family: inherit;
    font-size: 15px;
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    background: #fff;
    color: #1a1a1a;
}
.fieldrow input:focus,
.fieldrow select:focus,
.fieldrow textarea:focus {
    outline: 2px solid #0a7d80;
    outline-offset: -1px;
    border-color: #0a7d80;
}
.fieldrow .req { color: #c33; }
.submit-row { margin-top: 4px; }

/* Inquiry response pages */
.inquiry-success h1,
.inquiry-error h1 {
    font-size: 26px;
    margin: 0 0 16px;
}
.inquiry-errors {
    background: #fff5f5;
    border: 1px solid #f0c0c0;
    padding: 12px 16px;
    border-radius: 5px;
    color: #922;
}
.inquiry-errors li { margin: 4px 0; }

/* Unpublished placeholder */
.parked-page.unpublished { text-align: center; padding-top: 120px; }

/* Small screens */
@media (max-width: 520px) {
    .domain-name { font-size: 32px; }
    .parked-page { padding-top: 32px; }
}
