/*
Theme Name: PHG Coming Soon
Theme URI: https://princesshospitalitygroup.demoing.info
Author: Princess Hospitality Group
Description: A single-page "coming soon" holding theme for Princess Hospitality Group.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: phg-coming-soon
*/

:root {
    --phg-ink: #10201c;
    --phg-ink-deep: #081310;
    --phg-gold: #c9a227;
    --phg-gold-soft: #e6cf87;
    --phg-cream: #f5efe3;
    --phg-muted: rgba(245, 239, 227, 0.66);
    --phg-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
    --phg-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

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

body.phg-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 2rem 1.5rem;
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(201, 162, 39, 0.20) 0%, rgba(201, 162, 39, 0) 55%),
        radial-gradient(90% 70% at 50% 115%, rgba(201, 162, 39, 0.10) 0%, rgba(201, 162, 39, 0) 60%),
        linear-gradient(170deg, var(--phg-ink) 0%, var(--phg-ink-deep) 100%);
    color: var(--phg-cream);
    font-family: var(--phg-sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Faint linen texture so the dark field isn't flat */
body.phg-body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image:
        repeating-linear-gradient(45deg, rgba(245, 239, 227, 0.012) 0 2px, transparent 2px 4px),
        repeating-linear-gradient(-45deg, rgba(245, 239, 227, 0.012) 0 2px, transparent 2px 4px);
}

.phg-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 46rem;
    text-align: center;
    animation: phg-rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ---- Type ---- */

.phg-eyebrow {
    margin: 0 0 1.75rem;
    font-family: var(--phg-sans);
    font-size: clamp(0.65rem, 1.6vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--phg-gold-soft);
}

.phg-lede {
    margin: 0 0 0.35rem;
    font-family: var(--phg-serif);
    font-size: clamp(1.05rem, 3vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--phg-muted);
}

.phg-title {
    margin: 0;
    font-family: var(--phg-serif);
    font-size: clamp(2.2rem, 8vw, 4.25rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.005em;
    color: var(--phg-cream);
}

.phg-title .phg-accent {
    display: block;
    color: var(--phg-gold-soft);
}

/* ---- Rule ---- */

.phg-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem auto;
    max-width: 22rem;
}

.phg-rule span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.55), transparent);
}

.phg-rule svg {
    width: 12px;
    height: 12px;
    flex: none;
    color: var(--phg-gold);
}

/* ---- Footer ---- */

.phg-note {
    margin: 0 auto;
    max-width: 32rem;
    font-size: clamp(0.95rem, 2.4vw, 1.05rem);
    line-height: 1.7;
    color: var(--phg-muted);
}

.phg-note strong {
    color: var(--phg-cream);
    font-weight: 600;
}

/* ---- Motion ---- */

@keyframes phg-rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .phg-card { animation: none; }
}
