:root {
    --navy: #173b63;
    --blue: #4b89c5;
    --sea: #5ba9a3;
    --sand: #efe7da;
    --soft: #f8f8f8;
    --text: #26313a;
    --muted: #647381;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(18, 44, 70, 0.15);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.concept-bar {
    background: var(--navy);
    color: var(--white);
    display: flex;
    justify-content: center;
    gap: 34px;
    padding: 10px 20px;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}
.concept-bar span { color: #d8e8f7; }
.concept-bar a:hover { color: var(--sand); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(23, 59, 99, 0.08);
}
.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--navy);
}
.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--navy);
}
.brand strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    line-height: 1;
}
.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.main-nav a { color: var(--navy); }
.main-nav a:hover,
.main-nav a.active { color: var(--blue); }
.nav-button {
    background: var(--navy);
    color: var(--white) !important;
    padding: 12px 18px;
    border-radius: 999px;
}
.nav-button:hover { background: var(--blue); }

.hero {
    min-height: 78vh;
    background: linear-gradient(90deg, rgba(12,38,64,0.72), rgba(12,38,64,0.15)), url('../gfx/hero_lookout.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
}
.hero-content {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 24px;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 11vw, 9.5rem);
    line-height: 0.82;
    margin: 0 0 26px;
    max-width: 700px;
}
.hero p {
    max-width: 560px;
    font-size: 1.25rem;
    margin: 0 0 34px;
    color: #eef7ff;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
    display: inline-block;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.85rem;
    transition: 0.2s ease;
}
.btn-primary { background: var(--white); color: var(--navy); }
.btn-secondary { border: 2px solid rgba(255,255,255,0.8); color: var(--white); }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.section { padding: 90px 24px; }
.section-soft { background: var(--soft); }
.section-sand { background: var(--sand); }
.container { max-width: 1180px; margin: 0 auto; }
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    color: var(--navy);
    line-height: 1;
    margin: 0 0 18px;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 760px; }

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.photo-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}
.photo-card img { width: 100%; height: 430px; object-fit: cover; }
.kicker {
    color: var(--blue);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    font-weight: 800;
    margin-bottom: 14px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 42px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.22s ease;
}
.feature-card:hover { transform: translateY(-7px); }
.feature-card img { width: 100%; height: 260px; object-fit: cover; }
.feature-card div { padding: 26px; }
.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--navy);
    margin: 0 0 8px;
}

.parallax {
    min-height: 460px;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: grid;
    place-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
}
.parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14, 42, 70, 0.46);
}
.parallax-content {
    position: relative;
    padding: 24px;
    max-width: 900px;
}
.parallax h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1;
    margin: 0 0 24px;
}
.parallax.coast { background-image: url('../gfx/gallery/coastline_mountains.jpg'); }
.parallax.sunset { background-image: url('../gfx/gallery/sunset_beach.jpg'); }

.check-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    gap: 12px;
}
.check-list li::before {
    content: '✓';
    color: var(--blue);
    font-weight: 800;
    margin-right: 10px;
}

.breakfast-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: stretch;
}
.breakfast-stack {
    display: grid;
    gap: 24px;
}
.breakfast-stack img,
.breakfast-main img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.attraction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 38px;
}
.attraction-card {
    background: var(--white);
    padding: 34px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.attraction-card span { font-size: 2.2rem; }
.attraction-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy);
    font-size: 2rem;
    margin: 10px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.gallery-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow); }
.gallery-grid .tall { grid-row: span 2; height: 476px; }
.gallery-grid .wide { grid-column: span 2; }

.cta-panel {
    background: var(--navy);
    color: var(--white);
    border-radius: 34px;
    padding: 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow);
}
.cta-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    margin: 0;
    line-height: 1;
}
.cta-panel p { color: #dcecf7; max-width: 560px; }

.page-hero {
    background: var(--sand);
    padding: 90px 24px;
    text-align: center;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 7vw, 6rem);
    color: var(--navy);
    margin: 0 0 12px;
}
.page-hero p { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: 1.1rem; }

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.room-card img { width: 100%; height: 260px; object-fit: cover; }
.room-card div { padding: 28px; }
.room-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy);
    font-size: 2rem;
    margin: 0 0 10px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 34px;
}
.form-grid { display: grid; gap: 16px; }
.form-grid label { font-weight: 700; color: var(--navy); }
.form-grid input,
.form-grid textarea,
.form-grid select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #d8e0e8;
    font: inherit;
}
.form-grid button {
    border: 0;
    cursor: not-allowed;
    opacity: 0.8;
}
.demo-note {
    background: #edf6ff;
    border-left: 4px solid var(--blue);
    padding: 16px;
    border-radius: 12px;
    color: var(--navy);
    font-size: 0.95rem;
}

.site-footer {
    background: #0e2a46;
    color: var(--white);
    padding: 62px 24px;
}
.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 42px;
}
.footer-inner h3,
.footer-inner h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin: 0 0 12px;
}
.footer-inner p { color: #cfe3f3; margin: 0; }

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .concept-bar { flex-direction: column; gap: 5px; align-items: center; }
    .nav-inner { flex-direction: column; }
    .main-nav { flex-wrap: wrap; justify-content: center; gap: 14px; }
    .split,
    .breakfast-layout,
    .footer-inner,
    .cta-panel { grid-template-columns: 1fr; display: grid; }
    .feature-grid,
    .attraction-grid,
    .room-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid .wide { grid-column: span 1; }
    .gallery-grid .tall { height: 230px; }
    .parallax { background-attachment: scroll; }
}
@media (max-width: 560px) {
    .section { padding: 62px 18px; }
    .hero-content { padding: 70px 18px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .cta-panel { padding: 34px; }
}
