:root {
    --royal-navy: #002366;
    --gold-leaf: #C5A059;
    --marble-white: #F9F9F9;
    --text-dark: #333333;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--marble-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.prime-header { background: #fff; padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--royal-navy); display: flex; align-items: center; gap: 10px; letter-spacing: 1px; }
.gold { color: var(--gold-leaf); }
.crown-icon { font-size: 1.8rem; color: var(--gold-leaf); }

.royal-nav a { margin-left: 25px; font-weight: 400; font-size: 0.95rem; color: #555; text-transform: uppercase; letter-spacing: 1px; }
.royal-nav a:hover, .royal-nav a.active { color: var(--royal-navy); }

.btn-gold { background: var(--royal-navy); color: #fff !important; padding: 12px 30px; border-radius: 2px; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; }
.btn-gold:hover { background: var(--gold-leaf); color: var(--royal-navy) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.mobile-toggle span { width: 30px; height: 2px; background: var(--royal-navy); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--royal-navy); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.open { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2.5rem; color: #fff; cursor: pointer; }
.mobile-menu a { color: #fff; font-family: var(--font-heading); font-size: 2rem; margin: 15px 0; }

/* Hero */
.hero-prime { height: 85vh; background-size: cover; background-position: center; position: relative; }
.hero-vignette { width: 100%; height: 100%; background: radial-gradient(rgba(0,0,0,0.1), rgba(0, 35, 102, 0.6)); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { color: #fff; max-width: 800px; padding: 20px; }
.subtitle { font-family: var(--font-body); letter-spacing: 4px; font-size: 0.9rem; display: block; margin-bottom: 20px; color: var(--gold-leaf); font-weight: 700; }
.hero-content h1 { font-family: var(--font-heading); font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; font-style: italic; }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; font-weight: 300; }

.booking-bar { background: #fff; padding: 20px; display: inline-block; border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
#bookingForm { display: flex; gap: 15px; align-items: flex-end; flex-wrap: wrap; }
.input-group { text-align: left; }
.input-group label { display: block; font-size: 0.75rem; color: var(--royal-navy); font-weight: 700; margin-bottom: 5px; text-transform: uppercase; }
.input-group input, .input-group select { padding: 10px; border: 1px solid #ddd; font-family: var(--font-body); color: #333; min-width: 150px; }
.btn-check { background: var(--gold-leaf); color: #fff; border: none; padding: 12px 25px; font-family: var(--font-body); font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-check:hover { background: var(--royal-navy); }

/* Features */
.prime-features { background: var(--royal-navy); color: #fff; padding: 60px 0; }
.feature-row { display: flex; justify-content: space-around; text-align: center; gap: 30px; }
.feature-box .icon { font-size: 3rem; margin-bottom: 15px; }
.feature-box h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 10px; color: var(--gold-leaf); }
.feature-box p { font-size: 0.95rem; opacity: 0.8; }

/* Suites */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-heading); font-size: 3rem; color: var(--royal-navy); margin-bottom: 15px; font-style: italic; }
.gold-sep { width: 100px; height: 1px; background: var(--gold-leaf); margin: 0 auto; position: relative; }
.gold-sep::after { content: '♦'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--marble-white); padding: 0 10px; color: var(--gold-leaf); }
.gold-sep.left { margin: 20px 0; }
.gold-sep.left::after { background: var(--white); }

.suite-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.suite-card { background: #fff; border: 1px solid #eee; transition: 0.3s; }
.suite-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.05); transform: translateY(-5px); }
.suite-card img { width: 100%; height: 300px; object-fit: cover; }
.suite-info { padding: 30px; text-align: center; }
.suite-info h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 10px; color: var(--royal-navy); }
.suite-info p { color: #666; margin-bottom: 20px; }
.link-gold { color: var(--gold-leaf); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

/* History & Contact */
.history-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.history-text h1 { font-family: var(--font-heading); font-size: 3rem; color: var(--royal-navy); line-height: 1.1; }
.history-text p { font-size: 1.1rem; color: #555; margin-bottom: 20px; }
.heritage-list { list-style: none; margin-top: 30px; font-family: var(--font-heading); font-size: 1.2rem; color: var(--royal-navy); }
.heritage-list li { margin-bottom: 10px; }
.history-img { position: relative; }
.history-img img { width: 100%; border: 10px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; z-index: 1; }
.img-frame { position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 2px solid var(--gold-leaf); z-index: 0; }

.contact-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: #fff; padding: 50px; border: 1px solid #ddd; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.concierge-info h2 { font-family: var(--font-heading); color: var(--royal-navy); font-size: 2.5rem; }
.info-list { list-style: none; margin-top: 30px; font-size: 1.1rem; }
.info-list li { margin-bottom: 15px; color: #555; }

.royal-form .form-line { margin-bottom: 20px; }
.royal-form input, .royal-form select, .royal-form textarea { width: 100%; padding: 15px; border: none; border-bottom: 1px solid #ccc; font-family: var(--font-body); font-size: 1rem; outline: none; transition: 0.3s; }
.royal-form input:focus, .royal-form select:focus, .royal-form textarea:focus { border-bottom: 1px solid var(--gold-leaf); }
.btn-submit { width: 100%; background: var(--royal-navy); color: #fff; border: none; padding: 15px; font-family: var(--font-heading); font-size: 1.2rem; cursor: pointer; margin-top: 10px; }
.btn-submit:hover { background: var(--gold-leaf); }

/* Guests & Legal */
.guest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.guest-card { background: #fff; padding: 40px 30px; border: 1px solid #eee; text-align: center; font-style: italic; }
.guest-card.highlight { border-top: 3px solid var(--gold-leaf); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.rating { color: var(--gold-leaf); margin-bottom: 15px; letter-spacing: 2px; }
.author { display: block; margin-top: 20px; font-family: var(--font-heading); font-weight: 700; color: var(--royal-navy); font-style: normal; }

.legal-content { max-width: 800px; margin: 0 auto; background: #fff; padding: 60px; border: 1px solid #ddd; }
.legal-content h1 { font-family: var(--font-heading); color: var(--royal-navy); font-size: 2.5rem; }
.legal-content h3 { color: var(--gold-leaf); margin-top: 30px; font-family: var(--font-heading); font-size: 1.5rem; }

/* Footer */
.prime-footer { background: #111; color: #aaa; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { font-family: var(--font-heading); color: var(--gold-leaf); font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: #fff; font-family: var(--font-heading); }
.f-links a:hover { color: var(--gold-leaf); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie */
.cookie-gold { position: fixed; bottom: 20px; right: 20px; background: #fff; padding: 20px; border: 1px solid var(--gold-leaf); box-shadow: 0 5px 20px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 20px; z-index: 9999; display: none; }
.cookie-gold.active { display: flex; animation: fadeUp 0.5s; }
.cookie-gold button { background: var(--royal-navy); color: #fff; border: none; padding: 8px 20px; font-weight: 700; cursor: pointer; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
    .royal-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    #bookingForm { flex-direction: column; }
    #bookingForm .input-group, #bookingForm button { width: 100%; }
    .feature-row, .suite-grid, .history-layout, .contact-box, .guest-grid { grid-template-columns: 1fr; flex-direction: column; }
    .feature-row { gap: 40px; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}