/* ==========================================================================
   Randolph Resort — main stylesheet
   Color tokens (--randolph-*) are injected inline by inc/setup.php based on
   the active Customizer palette — every rule below reads from those tokens
   so switching palettes re-themes the whole site with no extra CSS.
   ========================================================================== */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--randolph-bg);
	color: var(--randolph-text);
	font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.2; margin: 0 0 .5em; color: var(--randolph-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.2em; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link { position: absolute; top: -60px; left: 10px; background: var(--randolph-dark); color: var(--randolph-white); padding: 10px 18px; z-index: 10000; border-radius: 0 0 4px 4px; transition: top .2s; }
.skip-link:focus { top: 0; }

.eyebrow {
	display: inline-block; font-family: 'Jost', sans-serif; font-size: .8rem; letter-spacing: .18em;
	text-transform: uppercase; color: var(--randolph-accent-dark); margin-bottom: 14px; font-weight: 500;
}
.eyebrow--light { color: var(--randolph-accent); }

.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading p { color: var(--randolph-text-light); font-size: 1.05rem; }
.section-heading--split { display: flex; align-items: flex-end; justify-content: space-between; text-align: left; max-width: none; gap: 24px; flex-wrap: wrap; }
.section-heading--light h2 { color: var(--randolph-white); }
.section-heading--light p { color: rgba(255,255,255,.72); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 30px; border-radius: 2px; font-family: 'Jost', sans-serif; font-size: .92rem;
	letter-spacing: .05em; text-transform: uppercase; font-weight: 500; border: 1px solid transparent;
	cursor: pointer; transition: all .25s ease; white-space: nowrap;
}
.btn--gold { background: var(--randolph-accent); color: var(--randolph-dark); border-color: var(--randolph-accent); }
.btn--gold:hover { background: var(--randolph-accent-dark); border-color: var(--randolph-accent-dark); color: var(--randolph-white); }
.btn--outline { background: transparent; color: var(--randolph-white); border-color: rgba(255,255,255,.55); }
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: var(--randolph-white); }
.btn--outline-dark { background: transparent; color: var(--randolph-dark); border-color: var(--randolph-dark); }
.btn--outline-dark:hover { background: var(--randolph-dark); color: var(--randolph-white); }
.btn--dark { background: var(--randolph-dark); color: var(--randolph-white); border-color: var(--randolph-dark); }
.btn--dark:hover { background: var(--randolph-dark-alt); }
.btn--lg { padding: 16px 36px; font-size: .95rem; }
.btn--block { display: flex; width: 100%; margin-bottom: 10px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--randolph-dark); color: rgba(255,255,255,.82); font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 9px 24px; gap: 16px; flex-wrap: wrap; }
.topbar__info { display: flex; align-items: center; gap: 14px; }
.topbar__info a { color: var(--randolph-accent); }
.topbar__divider { width: 1px; height: 12px; background: rgba(255,255,255,.25); display: inline-block; }
.social-links { display: flex; gap: 10px; align-items: center; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); transition: background .2s, color .2s; }
.social-links a:hover { background: var(--randolph-accent); color: var(--randolph-dark); }
.social-links--footer a { background: rgba(255,255,255,.06); }

/* ---------- Header ---------- */
.site-header { position: relative; z-index: 100; padding: 18px 0; transition: background .3s ease, box-shadow .3s ease, padding .3s ease; }
.site-header.is-sticky { position: sticky; top: 0; }
body.header-style-transparent .site-header { background: transparent; }
body.header-style-solid .site-header,
.site-header.is-scrolled { background: var(--randolph-dark); box-shadow: 0 6px 24px rgba(0,0,0,.15); padding: 10px 0; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-logo { display: block; }
.site-logo img { height: 58px; width: auto; transition: height .3s ease; }
.site-header.is-scrolled .site-logo img,
body.header-style-solid .site-logo img { height: 46px; }
.site-logo__light { display: none; }
body.header-style-transparent .site-header:not(.is-scrolled) .site-logo__dark { display: none; }
body.header-style-transparent .site-header:not(.is-scrolled) .site-logo__light { display: block; }

.primary-menu { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.primary-menu > li { position: relative; }
.primary-menu > li > a {
	display: inline-block; padding: 8px 0; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase;
	color: var(--randolph-white); font-weight: 500; position: relative;
}
body.header-style-solid .primary-menu > li > a,
.site-header.is-scrolled .primary-menu > li > a { color: var(--randolph-white); }
.primary-menu > li > a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--randolph-accent); transition: width .25s ease; }
.primary-menu > li > a:hover::after, .primary-menu > li.current-menu-item > a::after { width: 100%; }
.primary-menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--randolph-dark); padding: 10px 0; box-shadow: 0 16px 32px rgba(0,0,0,.25); opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .2s ease; }
.primary-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu .sub-menu a { display: block; padding: 10px 20px; color: var(--randolph-white); text-transform: none; font-size: .92rem; }
.primary-menu .sub-menu a:hover { background: rgba(255,255,255,.06); color: var(--randolph-accent); }
.submenu-toggle { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 18px; }
.site-header__phone { display: flex; align-items: center; gap: 6px; color: var(--randolph-white); font-size: .88rem; }
.site-header__phone .dashicons { font-size: 16px; width: 16px; height: 16px; color: var(--randolph-accent); }
.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: 1px solid rgba(255,255,255,.4); border-radius: 3px; cursor: pointer; }
.menu-toggle__bar { display: block; width: 20px; height: 2px; margin: 0 auto; background: var(--randolph-white); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.is-active .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
	.primary-navigation { position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); background: var(--randolph-dark); padding: 100px 32px 40px; transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; z-index: 99; }
	.primary-navigation.is-open { transform: translateX(0); }
	.primary-menu { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
	.primary-menu > li { width: 100%; }
	.primary-menu > li > a { padding: 12px 0; width: 100%; }
	.primary-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.03); display: none; }
	.primary-menu li.is-expanded > .sub-menu { display: block; }
	.submenu-toggle { display: block; position: absolute; right: 0; top: 4px; width: 30px; height: 30px; background: transparent; border: none; color: var(--randolph-white); }
	.submenu-toggle::after { content: '\002B'; font-size: 18px; }
	.site-header__phone, .site-header__cta { display: none; }
	.menu-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; background-size: cover; background-position: center; margin-top: -98px; }
body.header-style-solid .hero,
.hero { padding-top: 98px; }
.hero__inner { max-width: 780px; padding-top: 40px; padding-bottom: 60px; }
.hero__heading { color: var(--randolph-white); margin-bottom: 22px; }
.hero__subheading { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 620px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.hero__scroll span { display: block; width: 1px; height: 46px; background: linear-gradient(var(--randolph-accent), transparent); animation: randolph-scroll 2s infinite; }
@keyframes randolph-scroll { 0% { opacity: 0; transform: translateY(-10px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--randolph-dark); padding: 46px 0; }
.stats-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__value { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 600; color: var(--randolph-accent); }
.stat__label { display: block; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: 4px; }

/* ---------- Amenities ---------- */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.amenity-card { display: block; background: var(--randolph-white); border: 1px solid var(--randolph-border); border-radius: 6px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.amenity-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(7,42,34,.14); }
.amenity-card__image { display: block; height: 220px; background-size: cover; background-position: center; }
.amenity-card__body { display: block; padding: 26px 26px 30px; }
.amenity-card__title { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--randolph-dark); margin-bottom: 8px; }
.amenity-card__text { display: block; color: var(--randolph-text-light); font-size: .95rem; margin-bottom: 14px; }
.amenity-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--randolph-accent-dark); font-weight: 500; }

/* ---------- Rooms ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rooms-grid--archive { margin-top: 36px; }
.room-card { background: var(--randolph-white); border: 1px solid var(--randolph-border); border-radius: 6px; overflow: hidden; transition: box-shadow .3s ease, transform .3s ease; }
.room-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(7,42,34,.14); }
.room-card__image { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.room-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.room-card:hover .room-card__image img { transform: scale(1.06); }
.room-card__price { position: absolute; bottom: 14px; left: 14px; background: var(--randolph-dark); color: var(--randolph-accent); font-size: .82rem; padding: 6px 12px; border-radius: 3px; }
.room-card__price small { color: rgba(255,255,255,.7); }
.room-card__body { padding: 22px 24px 26px; }
.room-card__title { font-size: 1.25rem; margin-bottom: 8px; }
.room-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.room-facts li { font-size: .76rem; letter-spacing: .03em; text-transform: uppercase; background: var(--randolph-bg-alt); color: var(--randolph-text-light); padding: 5px 10px; border-radius: 3px; }
.room-card__excerpt { font-size: .92rem; color: var(--randolph-text-light); margin-bottom: 14px; }
.room-card__link { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--randolph-accent-dark); font-weight: 500; }

.room-single { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.room-single__price { display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--randolph-accent-dark); margin-bottom: 16px; }
.room-single__price small { font-size: .9rem; color: var(--randolph-text-light); }
.room-inquiry-card { background: var(--randolph-bg-alt); border-radius: 6px; padding: 28px; position: sticky; top: 120px; }
.room-inquiry-card p { color: var(--randolph-text-light); font-size: .92rem; }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-bar__item { padding: 9px 20px; border: 1px solid var(--randolph-border); border-radius: 30px; background: transparent; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; color: var(--randolph-text); transition: all .2s ease; }
.filter-bar__item:hover { border-color: var(--randolph-accent); }
.filter-bar__item.is-active { background: var(--randolph-dark); color: var(--randolph-white); border-color: var(--randolph-dark); }
.filter-item.is-hidden { display: none; }

/* ---------- About split ---------- */
.about-split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-split__media { position: relative; }
.about-split__media img { border-radius: 6px; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-split__badge { position: absolute; bottom: -24px; right: -24px; background: var(--randolph-dark); border-radius: 6px; padding: 16px 20px; box-shadow: 0 20px 40px rgba(0,0,0,.2); }
.about-split__badge img { width: 130px; height: auto; aspect-ratio: auto; }
.about-split__list { margin: 20px 0 28px; display: grid; gap: 10px; }
.about-split__list li { position: relative; padding-left: 26px; color: var(--randolph-text-light); }
.about-split__list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 1px; background: var(--randolph-accent-dark); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid__item { position: relative; display: block; border-radius: 4px; overflow: hidden; aspect-ratio: 1/1; }
.gallery-grid__item.is-wide { grid-column: span 2; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid__item:hover img { transform: scale(1.08); }
.gallery-grid__caption { position: absolute; inset: auto 0 0 0; padding: 12px 14px; background: linear-gradient(0deg, rgba(0,0,0,.7), transparent); color: #fff; font-size: .82rem; opacity: 0; transition: opacity .25s ease; }
.gallery-grid__item:hover .gallery-grid__caption { opacity: 1; }
.gallery-preview__more { text-align: center; margin-top: 40px; }

.randolph-lightbox { position: fixed; inset: 0; background: rgba(5,10,8,.94); display: flex; align-items: center; justify-content: center; z-index: 9999; padding: 40px; }
.randolph-lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.randolph-lightbox__close, .randolph-lightbox__prev, .randolph-lightbox__next { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }
.randolph-lightbox__close { top: 24px; right: 24px; }
.randolph-lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.randolph-lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--randolph-dark); }
.testimonial-slider__track { display: flex; overflow: hidden; }
.testimonial-slide { flex: 0 0 100%; text-align: center; max-width: 720px; margin: 0 auto; padding: 0 16px; }
.randolph-stars { display: inline-flex; gap: 3px; color: var(--randolph-accent); margin-bottom: 18px; }
.randolph-stars .dashicons { font-size: 18px; width: 18px; height: 18px; }
.testimonial-slide__text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; color: var(--randolph-white); margin-bottom: 24px; }
.testimonial-slide__meta { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-slide__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-slide__meta span { display: flex; flex-direction: column; text-align: left; color: var(--randolph-white); font-size: .88rem; }
.testimonial-slide__meta small { color: rgba(255,255,255,.6); }
.testimonial-slider__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.testimonial-slider__prev, .testimonial-slider__next { background: transparent; border: 1px solid rgba(255,255,255,.3); color: var(--randolph-white); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }
.testimonial-slider__dots { display: flex; gap: 8px; }
.testimonial-slider__dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.3); cursor: pointer; padding: 0; }
.testimonial-slider__dots button.is-active { background: var(--randolph-accent); }

/* ---------- Feature cards (spa/golf/dining/family/events) ---------- */
.feature-cards__grid { display: grid; gap: 26px; }
.feature-cards__grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-cards__grid--2 { grid-template-columns: repeat(2, 1fr); }
.feature-card { background: var(--randolph-white); border: 1px solid var(--randolph-border); border-radius: 6px; overflow: hidden; }
.feature-card__image { display: block; height: 190px; background-size: cover; background-position: center; }
.feature-card h3, .feature-card p { padding-left: 22px; padding-right: 22px; }
.feature-card h3 { margin-top: 20px; }
.feature-card p { color: var(--randolph-text-light); font-size: .93rem; padding-bottom: 22px; }

/* ---------- Facts strip / page banner ---------- */
.page-banner { position: relative; padding: 190px 0 90px; background-size: cover; background-position: center; margin-top: -98px; }
.page-banner__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,15,12,.55), rgba(5,15,12,.82)); }
.page-banner__inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.page-banner h1 { color: var(--randolph-white); }
.page-banner__intro { color: rgba(255,255,255,.82); font-size: 1.1rem; }
.facts-strip { background: var(--randolph-bg-alt); border-bottom: 1px solid var(--randolph-border); }
.facts-strip__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; padding: 22px 24px; }
.facts-strip__item { display: flex; flex-direction: column; text-align: center; }
.facts-strip__label { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--randolph-accent-dark); margin-bottom: 4px; }
.facts-strip__value { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--randolph-dark); }

/* ---------- Levels (About page) ---------- */
.levels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.levels-grid__item { border: 1px solid var(--randolph-border); border-radius: 6px; padding: 26px 22px; background: var(--randolph-white); }
.levels-grid__level { display: inline-block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--randolph-accent-dark); margin-bottom: 10px; }
.levels-grid__item p { color: var(--randolph-text-light); font-size: .92rem; margin-bottom: 0; }

/* ---------- Contact page ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 40px 0; }
.contact-card { text-align: center; padding: 28px 20px; background: var(--randolph-bg-alt); border-radius: 6px; }
.contact-card .dashicons { font-size: 26px; width: 26px; height: 26px; color: var(--randolph-accent-dark); margin-bottom: 10px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.contact-card p { margin: 0; font-size: .92rem; color: var(--randolph-text-light); }
.contact-map { border-radius: 6px; overflow: hidden; margin-bottom: 20px; }
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Inquiry / booking form ---------- */
.inquiry { background: var(--randolph-dark); }
.inquiry__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.inquiry__intro h2 { color: var(--randolph-white); }
.inquiry__intro p { color: rgba(255,255,255,.75); }
.inquiry__contact { margin-top: 20px; display: grid; gap: 8px; }
.inquiry__contact a { color: var(--randolph-accent); font-size: 1.05rem; }
.inquiry-form { background: var(--randolph-white); border-radius: 8px; padding: 36px; }
.form-row { margin-bottom: 18px; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--randolph-text-light); }
.form-field input, .form-field select, .form-field textarea {
	font-family: inherit; font-size: .95rem; padding: 12px 14px; border: 1px solid var(--randolph-border);
	border-radius: 3px; background: var(--randolph-bg); color: var(--randolph-text); width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--randolph-accent); }
.form-field--honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.inquiry-form__response { margin: 14px 0 0; font-size: .9rem; }
.inquiry-form__response.is-success { color: #2e7d4f; }
.inquiry-form__response.is-error { color: #b3341c; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--randolph-accent); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 48px 0; flex-wrap: wrap; }
.cta-band h2 { color: var(--randolph-dark); margin-bottom: 6px; }
.cta-band p { color: rgba(7,42,34,.75); margin: 0; }
.cta-band .btn--gold { background: var(--randolph-dark); color: var(--randolph-white); border-color: var(--randolph-dark); }
.cta-band .btn--gold:hover { background: var(--randolph-dark-alt); }

/* ---------- Newsletter strip ---------- */
.newsletter-strip { background: var(--randolph-bg-alt); border-top: 1px solid var(--randolph-border); border-bottom: 1px solid var(--randolph-border); }
.newsletter-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 42px 0; flex-wrap: wrap; }
.newsletter-strip__text h2 { margin-bottom: 4px; font-size: 1.6rem; }
.newsletter-strip__text p { margin: 0; color: var(--randolph-text-light); }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { padding: 13px 16px; border: 1px solid var(--randolph-border); border-radius: 3px; min-width: 260px; font-family: inherit; }

/* ---------- Footer ---------- */
.site-footer { background: var(--randolph-dark); color: rgba(255,255,255,.75); }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px; padding: 70px 0 40px; }
.footer-brand__logo { height: 62px; width: auto; margin-bottom: 18px; }
.footer-brand__tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--randolph-accent); font-size: 1.1rem; margin-bottom: 18px; }
.footer-widgets { display: contents; }
.widget-title { color: var(--randolph-white); font-family: 'Jost', sans-serif; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-menu, .footer-contact { display: grid; gap: 10px; font-size: .92rem; }
.footer-menu a:hover, .footer-contact a:hover { color: var(--randolph-accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }
.legal-menu { display: flex; gap: 18px; }

/* ---------- Blog ---------- */
.blog-layout { display: grid; grid-template-columns: 2.2fr 1fr; gap: 48px; align-items: start; }
.blog-layout__posts:only-child { grid-column: 1 / -1; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.blog-card { background: var(--randolph-white); border: 1px solid var(--randolph-border); border-radius: 6px; overflow: hidden; }
.blog-card__image img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.blog-card__body { padding: 22px; }
.blog-card__date { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--randolph-accent-dark); }
.blog-card__title { font-size: 1.25rem; margin: 8px 0; }
.blog-card__excerpt { color: var(--randolph-text-light); font-size: .92rem; }
.pagination ul { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--randolph-border); border-radius: 3px; font-size: .88rem; }
.pagination .current { background: var(--randolph-dark); color: var(--randolph-white); border-color: var(--randolph-dark); }
.no-results { text-align: center; padding: 60px 0; }

.content-area { max-width: 900px; }
.content-area--narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-footer { margin-top: 24px; font-size: .85rem; color: var(--randolph-text-light); }

/* ---------- 404 ---------- */
.error-404 { padding: 140px 0 100px; text-align: center; }
.error-404__logo { width: 90px; height: auto; margin: 0 auto 20px; }
.error-404__actions { display: flex; gap: 14px; justify-content: center; margin: 26px 0 34px; flex-wrap: wrap; }
.search-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.search-form input[type="search"] { flex: 1; padding: 12px 14px; border: 1px solid var(--randolph-border); border-radius: 3px; font-family: inherit; }

/* ---------- Comments ---------- */
.comments-area { max-width: 760px; margin: 0 auto 80px; padding: 0 24px; }
.comment-list { display: grid; gap: 20px; }
.comment-form input, .comment-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--randolph-border); border-radius: 3px; font-family: inherit; margin-bottom: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
	.amenities-grid, .rooms-grid, .feature-cards__grid--3 { grid-template-columns: repeat(2, 1fr); }
	.stats-strip__inner, .contact-cards, .levels-grid { grid-template-columns: repeat(2, 1fr); }
	.about-split__inner, .inquiry__inner, .room-single { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: 1fr 1fr; }
	.blog-layout { grid-template-columns: 1fr; }
	.blog-grid { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
	.section { padding: 60px 0; }
	.amenities-grid, .rooms-grid, .feature-cards__grid--3, .feature-cards__grid--2, .stats-strip__inner, .contact-cards, .levels-grid, .footer-top { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-grid__item.is-wide { grid-column: span 1; }
	.form-row--2 { grid-template-columns: 1fr; }
	.newsletter-form { flex-direction: column; width: 100%; }
	.newsletter-form input { min-width: 0; }
	.newsletter-strip__inner { flex-direction: column; align-items: flex-start; }
	.cta-band__inner { flex-direction: column; align-items: flex-start; }
	.topbar__inner { justify-content: center; text-align: center; }
	.hero { min-height: 100vh; }
}
