/* =========================================================================
   Sahara Dune Camp — Section utilities (Vibe, Amenities, and shared bits)
   These classes are applied via Elementor's Advanced → CSS Classes field,
   plus rendered directly by [sahara_*] shortcodes.
   ========================================================================= */

/* ------------------------------------------------------------------- */
/* Shared display utilities — used by section headlines                 */
/* ------------------------------------------------------------------- */

/* Big display heading used by Vibe/Amenities/etc. Italics in <em> go terra.
   Elementor's kit CSS sets `.elementor-widget-heading .elementor-heading-title
   { color: var(--e-global-color-primary); font-family: ...; }` at specificity
   (0,2,0). Chain `.elementor-widget-heading.sdc-section-headline` to land at
   (0,3,0) and win outright. Same trick for `.sdc-eyebrow` in global.css and
   `.sdc-section-body` below. */
.sdc-section-headline,
.sdc-section-headline .elementor-heading-title,
.elementor-widget-heading.sdc-section-headline .elementor-heading-title {
	font-family: var(--sdc-serif);
	font-size: clamp(36px, 4.5vw, 60px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	font-weight: 400;
	color: var(--sdc-ink);
	margin: 0;
	max-width: 14ch;
}
.sdc-section-headline em,
.sdc-section-headline .elementor-heading-title em,
.elementor-widget-heading.sdc-section-headline .elementor-heading-title em {
	font-style: italic;
	color: var(--sdc-terra);
	font-weight: inherit;
}

/* Supporting paragraph on light sections. Same specificity trick as the
   heading — chain `.elementor-widget-text-editor.sdc-section-body` to outrank
   Elementor's kit text-editor defaults. */
.sdc-section-body,
.sdc-section-body p,
.sdc-section-body .elementor-widget-container,
.sdc-section-body .elementor-widget-container > p,
.elementor-widget-text-editor.sdc-section-body,
.elementor-widget-text-editor.sdc-section-body .elementor-widget-container > p {
	font-family: var(--sdc-sans);
	font-size: 17px;
	line-height: 1.7;
	color: var(--sdc-ink-soft);
	margin: 0;
}
.sdc-section-body { max-width: 44ch; }

/* Section eyebrow (e.g. "02 — The Vibe") — re-uses .sdc-eyebrow from global.css */

/* ------------------------------------------------------------------- */
/* Photo placeholder — used until real imagery is uploaded              */
/* ------------------------------------------------------------------- */

.sdc-photo {
	position: relative;
	width: 100%;
	min-height: 180px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	border-radius: 0;
}
.sdc-photo--tall { grid-row: span 2; }

.sdc-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.06), transparent 60%),
		linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
	pointer-events: none;
}
.sdc-photo__label {
	position: relative;
	z-index: 1;
	margin: 18px;
	font-family: var(--sdc-mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
	max-width: 28ch;
	line-height: 1.5;
}

/* ------------------------------------------------------------------- */
/* Vibe section                                                         */
/* ------------------------------------------------------------------- */

.sdc-vibe-headline { max-width: 14ch; }

/* The photo column stretches to match the text column's height (flex:
   align-items: stretch on the row), so the grid uses fr rows and height:100%
   to fill that space rather than floating in the middle. min-height keeps
   a sensible floor if the row ever ends up shorter than the photos. */
.sdc-vibe-photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1.4fr 1fr;
	gap: 16px;
	width: 100%;
	height: 100%;
	min-height: 480px;
}

/* Make the wrapping Elementor widget chain stretch so height:100% reaches
   the grid above. Without this, .elementor-widget-container collapses to
   intrinsic height and the grid never sees a parent to fill. */
.sdc-vibe-photos-widget,
.sdc-vibe-photos-widget > .elementor-widget-container {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	height: 100%;
}

.sdc-stats {
	display: flex;
	gap: 36px;
	padding-top: 32px;
	border-top: 1px solid var(--sdc-line);
	margin-top: 8px;
}
.sdc-stats__item { flex: 0 0 auto; }
.sdc-stats__n {
	font-family: var(--sdc-serif);
	font-size: 46px;
	line-height: 1;
	color: var(--sdc-terra);
	font-weight: 400;
}
.sdc-stats__l {
	font-family: var(--sdc-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sdc-ink-soft);
	margin-top: 8px;
}

/* Vibe column collapse for tablet/mobile — restore fixed rows once the
   columns stack, since the row no longer dictates height. */
@media (max-width: 880px) {
	.sdc-vibe-photos {
		grid-template-rows: 240px 180px;
		height: auto;
		min-height: 0;
	}
}
@media (max-width: 560px) {
	.sdc-stats { flex-wrap: wrap; gap: 24px; }
}

/* ------------------------------------------------------------------- */
/* Amenities section                                                    */
/* ------------------------------------------------------------------- */

.sdc-amenities-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--sdc-line);
	border: 1px solid var(--sdc-line);
	width: 100%;
}

.sdc-amenity {
	background: var(--sdc-sand);
	color: var(--sdc-ink);
	padding: 44px 36px;
	min-height: 340px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: relative;
	overflow: hidden;
	transition: background 0.4s ease, color 0.4s ease;
	margin: 0;
}
.sdc-amenity:hover {
	background: var(--sdc-night);
	color: var(--sdc-sand);
}
.sdc-amenity__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 10px;
}
.sdc-amenity__num {
	font-family: var(--sdc-mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	color: var(--sdc-terra);
	transition: color 0.4s ease;
}
.sdc-amenity:hover .sdc-amenity__num { color: var(--sdc-gold); }
.sdc-amenity__tag {
	font-family: var(--sdc-mono);
	font-size: 9.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.6;
}
.sdc-amenity__title {
	font-family: var(--sdc-serif);
	font-size: 30px;
	line-height: 1.1;
	font-weight: 400;
	margin: 0;
	color: inherit;
}
.sdc-amenity__body {
	font-family: var(--sdc-sans);
	font-size: 14.5px;
	line-height: 1.6;
	opacity: 0.78;
	margin: 0;
}

/* Starfield inside an amenity card — hidden until hover */
.sdc-amenity .sdc-starfield {
	opacity: 0 !important;
	transition: opacity 0.4s ease;
}
.sdc-amenity:hover .sdc-starfield {
	opacity: 0.4 !important;
}

@media (max-width: 880px) {
	.sdc-amenities-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------- */
/* Starscape — any dark section that wants the [sahara_starfield]       */
/* shortcode reparented up to cover its full background. Applied via    */
/* CSS Classes on the outer Elementor container.                        */
/* ------------------------------------------------------------------- */

.sdc-starscape {
	position: relative;
	overflow: hidden;
}
.sdc-starscape > .e-con-inner,
.sdc-starscape > .elementor-container {
	position: relative;
	z-index: 2;
}

/* ------------------------------------------------------------------- */
/* On-dark overrides — opt in by adding .sdc-on-dark to the outer       */
/* container; cascades into our headline/eyebrow/body classes inside.   */
/* ------------------------------------------------------------------- */

.sdc-on-dark .sdc-eyebrow,
.sdc-on-dark .sdc-eyebrow .elementor-heading-title,
.sdc-on-dark .elementor-widget-heading.sdc-eyebrow .elementor-heading-title {
	color: var(--sdc-gold);
}
.sdc-on-dark .sdc-section-headline,
.sdc-on-dark .sdc-section-headline .elementor-heading-title,
.sdc-on-dark .elementor-widget-heading.sdc-section-headline .elementor-heading-title {
	color: var(--sdc-sand);
}
.sdc-on-dark .sdc-section-headline em,
.sdc-on-dark .sdc-section-headline .elementor-heading-title em,
.sdc-on-dark .elementor-widget-heading.sdc-section-headline .elementor-heading-title em {
	color: var(--sdc-gold);
}
.sdc-on-dark .sdc-section-body,
.sdc-on-dark .sdc-section-body p,
.sdc-on-dark .sdc-section-body .elementor-widget-container > p,
.sdc-on-dark .elementor-widget-text-editor.sdc-section-body .elementor-widget-container > p {
	color: rgba(244, 234, 217, 0.7);
}

/* ------------------------------------------------------------------- */
/* Experiences section                                                  */
/* ------------------------------------------------------------------- */

.sdc-exp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.sdc-exp-card {
	display: flex;
	flex-direction: column;
	color: var(--sdc-sand);
	margin: 0;
}

.sdc-exp-card__photo {
	margin-bottom: 22px;
}
.sdc-exp-card__photo .sdc-photo {
	aspect-ratio: 4 / 5;
	min-height: 0;
}

.sdc-exp-card__title-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 10px;
}

.sdc-exp-card__title {
	font-family: var(--sdc-serif);
	font-size: 23px;
	line-height: 1.2;
	color: var(--sdc-sand);
	font-weight: 400;
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
}

.sdc-exp-card__time {
	font-family: var(--sdc-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sdc-gold);
	padding-top: 6px;
	flex: 0 0 auto;
	white-space: nowrap;
}

.sdc-exp-card__body {
	font-family: var(--sdc-sans);
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(244, 234, 217, 0.7);
	margin: 0;
}

@media (max-width: 1100px) and (min-width: 881px) {
	.sdc-exp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
	.sdc-exp-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------- */
/* CRO marquee — terracotta trust band scrolling between sections       */
/* ------------------------------------------------------------------- */

.sdc-marquee {
	width: 100%;
	overflow: hidden;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	color: var(--sdc-cream);
}

.sdc-marquee__track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: sdc-marquee 40s linear infinite;
	will-change: transform;
}

.sdc-marquee__item {
	display: inline-flex;
	align-items: center;
	padding: 0 32px;
	font-family: var(--sdc-mono);
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	white-space: nowrap;
	line-height: 1;
}

.sdc-marquee__dot {
	color: var(--sdc-gold);
	margin-right: 14px;
	font-size: 13px;
}

@keyframes sdc-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-33.3333%); }
}

/* Pause on hover so users can read the phrases */
.sdc-marquee:hover .sdc-marquee__track {
	animation-play-state: paused;
}

/* Reduced motion: stop entirely */
@media (prefers-reduced-motion: reduce) {
	.sdc-marquee__track { animation: none; }
}

/* ------------------------------------------------------------------- */
/* Rating block — 5 stars + score + tagline                             */
/* ------------------------------------------------------------------- */

.sdc-rating {
	display: inline-flex;
	align-items: center;
	gap: 18px;
}
.sdc-rating__stars {
	display: inline-flex;
	gap: 2px;
	color: var(--sdc-terra);
}
.sdc-rating__score {
	font-family: var(--sdc-serif);
	font-size: 26px;
	line-height: 1;
	color: var(--sdc-ink);
}
.sdc-rating__sub {
	font-family: var(--sdc-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sdc-ink-soft);
	margin-top: 6px;
}

/* ------------------------------------------------------------------- */
/* Testimonials grid                                                    */
/* ------------------------------------------------------------------- */

.sdc-testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.sdc-testi-card {
	background: var(--sdc-sand);
	padding: 44px 36px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 360px;
	margin: 0;
}

.sdc-testi-card__mark {
	font-family: var(--sdc-serif);
	font-size: 60px;
	line-height: 0.7;
	color: var(--sdc-terra);
	margin-bottom: 16px;
}

.sdc-testi-card__quote {
	margin: 0;
	font-family: var(--sdc-serif);
	font-size: 22px;
	line-height: 1.4;
	font-style: italic;
	color: var(--sdc-ink);
}

.sdc-testi-card__caption {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--sdc-line-strong);
}
.sdc-testi-card__who {
	font-family: var(--sdc-serif);
	font-size: 18px;
	color: var(--sdc-ink);
}
.sdc-testi-card__where {
	font-family: var(--sdc-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sdc-ink-soft);
	margin-top: 6px;
}

@media (max-width: 880px) {
	.sdc-testi-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------- */
/* Primary button — terra-filled, mono caps. The conversion button used */
/* on the CTA strip; reusable for any "do the thing" action. Renders as */
/* an anchor or a button element — works either way.                    */
/* ------------------------------------------------------------------- */

.sdc-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 20px 36px;
	background: var(--sdc-terra);
	color: var(--sdc-cream);
	border: 0;
	border-radius: 0;
	font-family: var(--sdc-mono);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.sdc-btn-primary:hover,
.sdc-btn-primary:focus-visible {
	background: var(--sdc-terra-deep);
	color: var(--sdc-cream);
	transform: translateY(-1px);
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}
.sdc-btn-primary svg { flex-shrink: 0; }

/* ------------------------------------------------------------------- */
/* Ghost button — outlined, mono caps. Used by the FAQ left column and  */
/* reusable wherever we want a secondary CTA on a light background.     */
/* ------------------------------------------------------------------- */

.sdc-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border: 1px solid var(--sdc-line-strong);
	color: var(--sdc-ink);
	font-family: var(--sdc-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	background: transparent;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
	width: max-content;
}
.sdc-btn-ghost:hover,
.sdc-btn-ghost:focus-visible {
	background: var(--sdc-ink);
	color: var(--sdc-cream);
	border-color: var(--sdc-ink);
}
.sdc-btn-ghost svg { flex-shrink: 0; }

/* ------------------------------------------------------------------- */
/* FAQ accordion                                                        */
/* ------------------------------------------------------------------- */

/* Quiet rule across the top of the FAQ section, design line 624 */
.sdc-faq-section {
	border-top: 1px solid var(--sdc-line);
}

.sdc-faq {
	width: 100%;
}

.sdc-faq__item {
	border-top: 1px solid var(--sdc-line-strong);
	padding: 26px 0;
}
.sdc-faq__item:last-child {
	border-bottom: 1px solid var(--sdc-line-strong);
}

.sdc-faq__toggle {
	width: 100%;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	color: inherit;
	font: inherit;
}
.sdc-faq__toggle:focus-visible {
	outline: 2px solid var(--sdc-terra);
	outline-offset: 4px;
}

.sdc-faq__q {
	font-family: var(--sdc-serif);
	font-size: 24px;
	line-height: 1.2;
	color: var(--sdc-ink);
}

.sdc-faq__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--sdc-line-strong);
	display: grid;
	place-items: center;
	color: var(--sdc-ink);
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.sdc-faq__item.is-open .sdc-faq__icon {
	transform: rotate(45deg);
	background: var(--sdc-ink);
	color: var(--sdc-cream);
	border-color: var(--sdc-ink);
}

.sdc-faq__panel {
	overflow: hidden;
	max-height: 0;
	margin-top: 0;
	transition: max-height 0.4s ease, margin-top 0.4s ease;
}
.sdc-faq__item.is-open .sdc-faq__panel {
	max-height: 480px;
	margin-top: 18px;
}

.sdc-faq__a {
	font-family: var(--sdc-sans);
	font-size: 16px;
	line-height: 1.7;
	color: var(--sdc-ink-soft);
	max-width: 60ch;
	margin: 0;
}

/* Inside the FAQ left column copy: the inline mailto picks up a quiet
   terra underline so the address feels like a writeable thing, not body. */
.sdc-faq-contact a {
	color: var(--sdc-terra);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}
.sdc-faq-contact a:hover { color: var(--sdc-terra-deep); }

@media (max-width: 600px) {
	.sdc-faq__q { font-size: 20px; }
	.sdc-faq__item.is-open .sdc-faq__panel { max-height: 800px; }
}

/* ------------------------------------------------------------------- */
/* CTA strip — dark night band with dense starfield, oversized headline */
/* and the conversion button. Reuses .sdc-starscape + .sdc-on-dark from */
/* earlier so the only new work is the headline scale + button.         */
/* ------------------------------------------------------------------- */

.sdc-cta {
	color: var(--sdc-sand);
	text-align: center;
}

/* The CTA's inner column constrains text + button to a readable width
   and centers them — Elementor's flex `align-items: center` does the
   widget-level centering, this just lays down a max-width band. */
.sdc-cta-inner {
	max-width: 720px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

/* The CTA headline is the biggest type on the site — bumps up to 88px
   max from the section default. Chain three classes to beat the base
   `.elementor-widget-heading.sdc-section-headline` cascade (0,3,0). */
.elementor-widget-heading.sdc-section-headline.sdc-cta-headline .elementor-heading-title,
.sdc-section-headline.sdc-cta-headline .elementor-heading-title,
.sdc-cta-headline .elementor-heading-title {
	font-size: clamp(44px, 6vw, 88px);
	line-height: 1;
	max-width: none;
}

/* The supporting paragraph is narrower than the body default (520 vs
   44ch) and horizontally centered in the column. */
.sdc-cta-paragraph,
.sdc-cta-paragraph .elementor-widget-container,
.sdc-cta-paragraph .elementor-widget-container > p,
.elementor-widget-text-editor.sdc-cta-paragraph .elementor-widget-container > p {
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	font-size: 18px;
	color: rgba(244, 234, 217, 0.75);
}

/* Trust microcopy under the button — quieter than .sdc-section-body */
.sdc-cta-trust {
	font-family: var(--sdc-mono);
	font-size: 10.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(244, 234, 217, 0.55);
	line-height: 1.4;
}

/* ------------------------------------------------------------------- */
/* Footer — dark ink band, 4-column grid (brand + 3 link cols), and a   */
/* thin bottom rule for copyright + legal links. Rendered entirely by   */
/* [sahara_footer] so the wrapper container only needs the bg + padding */
/* ------------------------------------------------------------------- */

.sdc-footer-cols {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.sdc-foot-brand {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.sdc-foot-brand__name {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--sdc-sand);
	font-family: var(--sdc-serif);
	font-size: 24px;
	line-height: 1.1;
}
.sdc-foot-brand__svg {
	width: 34px;
	height: 34px;
	color: var(--sdc-sand);
	flex-shrink: 0;
}
.sdc-foot-brand__tagline {
	font-size: 14px;
	line-height: 1.6;
	max-width: 320px;
	color: rgba(244, 234, 217, 0.7);
	margin: 0;
}
.sdc-foot-brand__addr {
	font-family: var(--sdc-mono);
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 2;
	color: rgba(244, 234, 217, 0.7);
}

.sdc-foot-col__title {
	font-family: var(--sdc-mono);
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.18em;
	color: var(--sdc-gold);
	margin-bottom: 18px;
	font-weight: 500;
}
.sdc-foot-col__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.sdc-foot-col__list a {
	color: rgba(244, 234, 217, 0.7);
	text-decoration: none;
	font-size: 14px;
	border-bottom: 1px solid transparent;
	padding-bottom: 1px;
	transition: border-color 0.2s ease, color 0.2s ease;
}
.sdc-foot-col__list a:hover {
	border-bottom-color: currentColor;
	color: var(--sdc-sand);
}

.sdc-foot-bottom {
	border-top: 1px solid rgba(244, 234, 217, 0.15);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	font-family: var(--sdc-mono);
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(244, 234, 217, 0.55);
}
.sdc-foot-bottom__legal {
	display: flex;
	gap: 24px;
}
.sdc-foot-bottom__legal a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.sdc-foot-bottom__legal a:hover { color: var(--sdc-sand); }

@media (max-width: 880px) {
	.sdc-footer-cols {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}
@media (max-width: 560px) {
	.sdc-footer-cols {
		grid-template-columns: 1fr;
	}
}

/* Global footer wrapper — mounted via wp_footer on every page so inner
   pages get the same brand-correct footer as the home page. */
.sdc-footer--global {
	background: var(--sdc-ink);
	color: rgba(244, 234, 217, 0.7);
	padding: 80px 0 40px;
}
.sdc-footer__container {
	width: 100%;
	max-width: var(--sdc-container-max);
	margin: 0 auto;
	padding: 0 var(--sdc-container-pad);
	box-sizing: border-box;
}

/* Social icons row inside the brand block */
.sdc-foot-social {
	display: flex;
	gap: 14px;
	margin-top: 8px;
}
.sdc-foot-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(244, 234, 217, 0.2);
	border-radius: 50%;
	color: rgba(244, 234, 217, 0.7);
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.sdc-foot-social a:hover {
	color: var(--sdc-ink);
	background: var(--sdc-sand);
	border-color: var(--sdc-sand);
}
.sdc-foot-social svg { width: 16px; height: 16px; }

/* ------------------------------------------------------------------- */
/* Stub page layout — rendered inside the Elementor Canvas template     */
/* on placeholder pages (Tents, Contact, Privacy, etc.) until those     */
/* pages get real content.                                              */
/* ------------------------------------------------------------------- */

.sdc-stub {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 140px 32px 100px;
	background: var(--sdc-cream);
}
.sdc-stub__inner {
	max-width: 540px;
	text-align: center;
}
.sdc-stub__eyebrow {
	color: var(--sdc-terra);
	margin-bottom: 18px;
}
.sdc-stub__title {
	font-family: var(--sdc-serif);
	font-size: clamp(40px, 6vw, 72px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	font-weight: 400;
	color: var(--sdc-ink);
	margin: 0 0 24px;
}
.sdc-stub__body {
	font-family: var(--sdc-sans);
	font-size: 17px;
	line-height: 1.6;
	color: var(--sdc-ink-soft);
	margin: 0 0 36px;
}
.sdc-stub__body a {
	color: var(--sdc-terra);
	border-bottom: 1px solid currentColor;
	text-decoration: none;
}
.sdc-stub__body a:hover { color: var(--sdc-terra-deep); }
.sdc-stub__back { display: inline-flex; }
