/* Rocky Tops — Fullscreen Menu widget. Self-contained. */

.rt-fsmenu {
	font-family: 'Inter', system-ui, sans-serif;
	display: flex;
	align-items: center;
}

/* Action button — sits before the hamburger. Look is fully overridable from
   the widget's Style → Action Button controls (Default / Scrolled-Open). ---- */
.rt-fsmenu__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-inline-end: 14px;
	padding: 10px 22px;
	border: 1px solid rgba(255, 255, 255, .6);
	border-radius: 999px;
	font-size: .95rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .02em;
	color: #fff;
	background-color: transparent;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: color .35s ease, background-color .35s ease, border-color .35s ease, opacity .2s ease;
}
.rt-fsmenu__cta:hover { opacity: .85; }

/* Trigger (hamburger toggles open AND close) ----------------------------- */
.rt-fsmenu__trigger {
	background-color: transparent!important;
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	background: none;
	border: 0;
	padding: .4rem;
	cursor: pointer;
	color: #1A1916;
	position: relative;
	z-index: 1;
}
.rt-fsmenu__bars {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 26px;
	height: 16px;
}
.rt-fsmenu__bars span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: currentColor;
	transition: transform .3s ease, opacity .2s ease;
}
/* Animate to an X while open. */
.rt-fsmenu__trigger.is-open .rt-fsmenu__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.rt-fsmenu__trigger.is-open .rt-fsmenu__bars span:nth-child(2) { opacity: 0; }
.rt-fsmenu__trigger.is-open .rt-fsmenu__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.rt-fsmenu__trigger-label {
	font-size: .95rem;
	letter-spacing: .04em;
}

/* Panel — opens UNDER the header (header is raised above it via JS) ------- */
.rt-fsmenu__overlay {
	position: fixed;
	inset: 0;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-12px);
	transition: opacity .4s ease, transform .4s ease, visibility 0s linear .4s;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: none;        /* Firefox */
	-ms-overflow-style: none;     /* IE/old Edge */
}
.rt-fsmenu__overlay::-webkit-scrollbar { width: 0; height: 0; display: none; } /* WebKit */
.rt-fsmenu__overlay.is-open {
	opacity: 1;
	visibility: visible;
	transform: none;
	transition: opacity .4s ease, transform .4s ease, visibility 0s;
}

/* Editor-only notice */
.rt-fsmenu__notice {
	padding: 1rem 1.25rem;
	background: #FAF7F1;
	border: 1px dashed #D2C7B4;
	color: #6B6A63;
	font-size: .9rem;
}

/* Body: [ items | sub ] | image ----------------------------------------- */
.rt-fsmenu__body {
	flex: 1;
	display: grid;
	grid-template-columns: 2.1fr 1.3fr;
	gap: 2rem;
	align-items: center;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 96px 2.5rem 3rem; /* top padding = header offset (overridable in widget) */
}

/* Items + sub-items grouped so they share a TOP edge (align-items: start),
   while the group as a whole stays vertically centered in the panel. This is
   what lets the sub-menu line its first item up with the first parent item. */
.rt-fsmenu__cols {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 2rem;
	align-items: start;
}

.rt-fsmenu__list { display: flex; flex-direction: column; }
.rt-fsmenu__link {
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 500;
	line-height: 1.1;
	color: #B5731A;
	text-decoration: none;
	transition: color .25s ease;
}
.rt-fsmenu__item:hover .rt-fsmenu__link,
.rt-fsmenu__item.is-active .rt-fsmenu__link { color: #8A9B6E; }

/* Item head: link + collapse toggle on one row. On desktop the toggle is
   hidden, so the link sits alone exactly as before. */
.rt-fsmenu__item-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

/* Collapse toggle (+ / −) — only visible in accordion (mobile/tablet) mode. */
.rt-fsmenu__toggle {
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	display: none;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	border: 0;
	box-shadow: none;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .06);
	color: inherit;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	transition: background-color .25s ease, color .25s ease;
}
/* Neutralise the theme/browser default button styling across states so it
   never leaks. The widget's Toggle controls have higher specificity and win. */
.rt-fsmenu__toggle:hover,
.rt-fsmenu__toggle:focus,
.rt-fsmenu__toggle:active {
	box-shadow: none;
	outline: none;
	color: inherit;
	background-color: rgba(0, 0, 0, .12);
}
.rt-fsmenu__toggle:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
.rt-fsmenu__toggle-icon {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
}
.rt-fsmenu__toggle-icon::before,
.rt-fsmenu__toggle-icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	background: currentColor;
	transition: transform .3s ease, opacity .3s ease;
}
.rt-fsmenu__toggle-icon::before { width: 100%; height: 2px; transform: translate(-50%, -50%); }            /* — (scales with Icon Size) */
.rt-fsmenu__toggle-icon::after  { width: 2px;  height: 100%; transform: translate(-50%, -50%); }            /* | → + (scales with Icon Size) */
/* Expanded: vertical bar rotates/fades, leaving a minus. */
.rt-fsmenu__item.is-expanded .rt-fsmenu__toggle-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

/* Accordion mode (JS adds .rt-fsmenu--accordion to the overlay at <=1024px):
   sub-items are moved under their parent and collapse/expand on tap. The
   desktop middle column is emptied + hidden. */
/* Accordion content flows from the TOP (not vertically centered) so expanding
   a parent grows downward and stays reachable / scrollable. */
.rt-fsmenu--accordion .rt-fsmenu__body {
	grid-template-columns: 1fr;
	align-items: start;
	align-content: start;
}
.rt-fsmenu--accordion .rt-fsmenu__cols { grid-template-columns: 1fr; }
.rt-fsmenu--accordion .rt-fsmenu__sub { display: none; }
.rt-fsmenu--accordion .rt-fsmenu__item--has-sub .rt-fsmenu__toggle { display: inline-flex; }
/* Same row height whether or not an item has the +toggle, so spacing between
   parent items stays uniform (the 38px toggle no longer makes those rows taller). */
.rt-fsmenu--accordion .rt-fsmenu__item-head { min-height: 44px; }
.rt-fsmenu--accordion .rt-fsmenu__subgroup {
	display: block;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	margin-top: 0;
	transition: max-height .35s ease, opacity .3s ease, margin-top .35s ease;
}
.rt-fsmenu--accordion .rt-fsmenu__item.is-expanded .rt-fsmenu__subgroup {
	max-height: 70vh;
	opacity: 1;
	margin-top: .85rem;
}

/* Sub-items (middle column) — top-aligned via .rt-fsmenu__cols. */
.rt-fsmenu__sub { position: relative; }
.rt-fsmenu__subgroup {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
}
.rt-fsmenu__subgroup.is-active { display: block; }
.rt-fsmenu__subgroup li + li { margin-top: 1rem; }
/* Scoped to .rt-fsmenu__subgroup (NOT .rt-fsmenu__sub) so the styles still
   apply on mobile, where the accordion JS moves each subgroup out of the
   middle column and into its parent item. */
.rt-fsmenu__subgroup a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	color: #1A1916;
	text-decoration: none;
	font-size: 1rem;
	transition: color .2s ease;
}
.rt-fsmenu__subgroup a:hover { color: #B5731A; }
.rt-fsmenu__sub-arrow {
	display: inline-flex;
	flex-shrink: 0;
	opacity: 0;
	transform: translateX(-6px);
	transition: transform .25s ease, opacity .25s ease;
}
.rt-fsmenu__subgroup a:hover .rt-fsmenu__sub-arrow {
	opacity: 1;
	transform: translateX(5px);
}

/* Image (right column) */
.rt-fsmenu__media {
	position: relative;
	height: 460px;
	overflow: hidden;
	background-color: #F1ECE3;
}
.rt-fsmenu__img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.03);
	transition: opacity .5s ease, transform .6s ease;
}
.rt-fsmenu__img.is-active { opacity: 1; transform: none; }

/* Search ----------------------------------------------------------------- */
.rt-fsmenu__search {
	display: flex;
	align-items: center;
	gap: .75rem;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2.5rem 2.5rem;
	color: #6B6A63;
}
.rt-fsmenu__search input {
	flex: 1;
	border: 1px solid #E5DDCF;
	border-radius: 6px;
	padding: .9rem 1rem;
	font-size: 1rem;
	color: #1A1916;
	background: #fff;
}
.rt-fsmenu__search input:focus { outline: none; border-color: #B5731A; }

/* Panel actions (repeatable button row at the bottom of the panel) -------- */
.rt-fsmenu__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	--rt-actions-gap: 16px;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 20px 40px 32px; /* fallback — overridden by the Container Padding control */
	border-top: 1px solid #E5DDCF;
}
.rt-fsmenu__actions--no-divider { border-top: 0; }

/* Each action is a button. */
.rt-fsmenu__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	box-sizing: border-box;
	padding: 12px 22px;
	border: 1px solid #1A1916;
	border-radius: 8px;
	background-color: transparent;
	color: #1A1916;
	text-decoration: none;
	font-size: 1rem;
	line-height: 1.2;
	white-space: nowrap;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
.rt-fsmenu__action:hover {
	color: #fff;
	background-color: #B5731A;
	border-color: #B5731A;
}

/* Per-button width: auto (fit), half, full. Half uses the gap so two sit
   neatly side by side. */
.rt-fsmenu__action--auto { flex: 0 0 auto; }
.rt-fsmenu__action--full { flex: 1 1 100%; }
.rt-fsmenu__action--half { flex: 1 1 calc(50% - (var(--rt-actions-gap, 16px) / 2)); }

.rt-fsmenu__action-icon {
	display: inline-flex;
	align-items: center;
	font-size: 1.1em;
}
.rt-fsmenu__action-icon svg { width: 1.1em; height: 1.1em; fill: currentColor; }

/* Body scroll lock (added to <html>) */
.rt-fsmenu-lock { overflow: hidden; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1024px) {
	.rt-fsmenu__body { grid-template-columns: 1fr 1fr; }
	.rt-fsmenu__media { grid-column: 1 / -1; height: 320px; }
}
@media (max-width: 640px) {
	.rt-fsmenu__body { grid-template-columns: 1fr; gap: 1.25rem; padding: 88px 10px 10px; }
	.rt-fsmenu__media { height: 220px; }
}

/* Per-device visibility (button, label, image, actions) is now driven by the
   widget's Elementor responsive controls (device icons) via inline display
   rules — no custom .rt-fsmenu--hide-* classes needed here. */

@media (prefers-reduced-motion: reduce) {
	.rt-fsmenu__overlay,
	.rt-fsmenu__img { transition: opacity .2s ease; transform: none; }
}



.square-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.square-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.square-list span:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}