/* =========================================================================
   Linden Court — Dark Luxury design system
   ========================================================================= */

:root {
	--ink:      #0d0d0f;   /* page background */
	--ink-2:    #121215;   /* section alt */
	--ink-3:    #17171b;   /* card background */
	--ink-4:    #1d1d22;   /* elevated card / inputs */
	--line:     rgba(229, 220, 200, 0.10);
	--line-2:   rgba(229, 220, 200, 0.18);

	--brass:    #c5a572;
	--brass-2:  #d8bd8e;
	--brass-d:  #a98a55;

	--ivory:    #f4efe6;   /* primary text on dark */
	--muted:    #a7a298;   /* secondary text */
	--muted-2:  #7d7972;

	--serif:    "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--sans:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

	--container: 1240px;
	--gutter: clamp(20px, 5vw, 56px);
	--section-y: clamp(64px, 8vw, 132px);

	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----- reset-ish ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--ink);
	color: var(--ivory);
	font-family: var(--sans);
	font-weight: 300;
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--brass-2); }

::selection { background: var(--brass); color: #1a1408; }

/* ----- layout primitives ----- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.lc-section { padding: var(--section-y) 0; }
.lc-section--alt { background: var(--ink-2); }
.lc-section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.lc-head { max-width: 640px; }
.lc-head--center { margin: 0 auto; text-align: center; }
.lc-grid { display: grid; gap: clamp(24px, 3vw, 40px); }
.lc-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--sans); font-size: 12.5px; font-weight: 500;
	letter-spacing: .28em; text-transform: uppercase; color: var(--brass);
}
.lc-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--brass); opacity: .8; }
.lc-head--center .lc-eyebrow { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: .005em; color: #fff; margin: 0 0 .4em; }
.lc-h1 { font-size: clamp(2.6rem, 6.2vw, 5.2rem); }
.lc-h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.lc-h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.lc-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); font-weight: 300; max-width: 56ch; }
.lc-head--center .lc-lead { margin-inline: auto; }

/* ----- buttons ----- */
.lc-btn {
	display: inline-flex; align-items: center; gap: 12px;
	font-family: var(--sans); font-size: 13.5px; font-weight: 500;
	letter-spacing: .14em; text-transform: uppercase;
	padding: 17px 30px; border: 1px solid var(--brass); border-radius: 2px;
	background: var(--brass); color: #1a1408; cursor: pointer;
	transition: background .3s var(--ease), color .3s var(--ease), letter-spacing .3s var(--ease), transform .3s var(--ease);
}
.lc-btn:hover { background: var(--brass-2); color: #1a1408; letter-spacing: .18em; }
.lc-btn--ghost { background: transparent; color: var(--brass); }
.lc-btn--ghost:hover { background: var(--brass); color: #1a1408; }
.lc-link { display: inline-flex; align-items: center; gap: 10px; color: var(--brass); font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.lc-link svg, .lc-link .arr { transition: transform .3s var(--ease); }
.lc-link:hover .arr { transform: translateX(5px); }
.lc-row-btn { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* =========================================================================
   Header / navigation
   ========================================================================= */
.lc-header {
	position: fixed; inset: 0 0 auto 0; z-index: 100;
	padding: 22px 0;
	background: linear-gradient(180deg, rgba(13,13,15,.55), rgba(13,13,15,0));
	transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.lc-header.is-scrolled {
	background: rgba(11,11,13,.92);
	backdrop-filter: blur(10px);
	padding: 14px 0;
	box-shadow: 0 1px 0 var(--line);
}
.lc-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.lc-brand { display: flex; align-items: baseline; gap: 9px; font-family: var(--sans); }
.lc-brand__name { font-size: 17px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: #fff; }
.lc-brand__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brass); display: inline-block; }
.lc-brand__sub { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-2); }

.lc-nav { display: flex; align-items: center; gap: 34px; }
.lc-nav a { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ivory); position: relative; padding: 4px 0; }
.lc-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--brass); transition: width .3s var(--ease); }
.lc-nav a:hover { color: var(--brass-2); }
.lc-nav a:hover::after { width: 100%; }
.lc-nav .lc-btn { padding: 12px 22px; }

/* burger */
.lc-burger { display: none; flex-direction: column; gap: 5px; width: 30px; height: 22px; justify-content: center; background: none; border: 0; cursor: pointer; }
.lc-burger span { display: block; height: 1.5px; width: 100%; background: var(--ivory); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.lc-burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.lc-burger.is-active span:nth-child(2) { opacity: 0; }
.lc-burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile fullscreen menu */
#lc-mobile-menu {
	position: fixed; inset: 0; z-index: 95;
	background: var(--ink);
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
	opacity: 0; visibility: hidden; transform: translateY(-8px);
	transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
#lc-mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
#lc-mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--ivory); }
#lc-mobile-menu a:hover { color: var(--brass-2); }

/* =========================================================================
   Hero
   ========================================================================= */
.lc-hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.lc-hero__media { position: absolute; inset: 0; z-index: 0; }
.lc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.lc-hero__media::after {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(13,13,15,.55) 0%, rgba(13,13,15,.25) 35%, rgba(13,13,15,.85) 100%),
		linear-gradient(90deg, rgba(13,13,15,.82), rgba(13,13,15,.25));
}
.lc-hero__inner { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; max-width: 760px; }
.lc-hero h1 { margin-top: 22px; margin-bottom: 26px; }
.lc-hero h1 em { font-style: italic; color: var(--brass-2); }
.lc-hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(244,239,230,.85); max-width: 48ch; margin-bottom: 36px; }
.lc-hero__scroll { position: absolute; left: var(--gutter); bottom: 34px; z-index: 2; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 12px; }
.lc-hero__scroll::after { content: ""; width: 1px; height: 42px; background: linear-gradient(var(--brass), transparent); }

/* =========================================================================
   Room / apartment cards
   ========================================================================= */
.lc-rooms-grid { grid-template-columns: repeat(3, 1fr); }
.lc-card {
	background: var(--ink-3); border: 1px solid var(--line); border-radius: 3px; overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.lc-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.lc-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.lc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.lc-card:hover .lc-card__media img { transform: scale(1.06); }
.lc-card__tag { position: absolute; top: 14px; left: 14px; background: rgba(13,13,15,.7); border: 1px solid var(--line-2); color: var(--brass-2); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; padding: 7px 11px; border-radius: 2px; backdrop-filter: blur(4px); }
.lc-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.lc-card__meta { display: flex; gap: 14px; font-size: 12px; letter-spacing: .04em; color: var(--muted-2); }
.lc-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.lc-card h3 { margin: 0; font-size: 1.6rem; }
.lc-card__desc { color: var(--muted); font-size: 15px; flex: 1; }
.lc-card__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; margin-top: 4px; border-top: 1px solid var(--line); }
.lc-card__price { font-family: var(--serif); font-size: 1.35rem; color: #fff; }
.lc-card__price span { font-family: var(--sans); font-size: 12px; color: var(--muted-2); letter-spacing: .05em; }

/* =========================================================================
   Amenities strip
   ========================================================================= */
.lc-amenities { grid-template-columns: repeat(4, 1fr); }
.lc-amen { text-align: center; padding: 26px 18px; border: 1px solid var(--line); border-radius: 3px; background: var(--ink-2); }
.lc-amen__ic { font-size: 26px; color: var(--brass); margin-bottom: 14px; }
.lc-amen__t { font-family: var(--serif); font-size: 1.3rem; color: #fff; margin-bottom: 4px; }
.lc-amen__d { font-size: 13.5px; color: var(--muted-2); }

/* =========================================================================
   Testimonials
   ========================================================================= */
.lc-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.5; color: var(--ivory); }
.lc-quote::before { content: "“"; color: var(--brass); }
.lc-quote::after { content: "”"; color: var(--brass); }
.lc-stars { color: var(--brass); letter-spacing: 3px; font-size: 14px; }
.lc-stars .off { color: var(--ink-4); }
.lc-testi-grid { grid-template-columns: repeat(3, 1fr); }
.lc-testi { padding: 30px; border: 1px solid var(--line); border-radius: 3px; background: var(--ink-3); display: flex; flex-direction: column; gap: 16px; }
.lc-testi__body { color: var(--muted); font-size: 15.5px; line-height: 1.7; flex: 1; }
.lc-testi__who { display: flex; align-items: center; gap: 14px; padding-top: 8px; border-top: 1px solid var(--line); }
.lc-testi__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink-4); color: var(--brass); display: grid; place-items: center; font-family: var(--serif); font-size: 18px; border: 1px solid var(--line-2); }
.lc-testi__name { font-weight: 500; color: #fff; font-size: 15px; }
.lc-testi__sub { font-size: 12px; color: var(--muted-2); letter-spacing: .04em; }

/* =========================================================================
   Statement / split feature
   ========================================================================= */
.lc-split { grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(36px, 6vw, 90px); }
.lc-split__media img { border-radius: 3px; box-shadow: 0 40px 80px -40px rgba(0,0,0,.9); }
.lc-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 34px; border-top: 1px solid var(--line); padding-top: 30px; }
.lc-stat__n { font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 2.8rem); color: var(--brass); line-height: 1; }
.lc-stat__l { font-size: 12.5px; color: var(--muted-2); letter-spacing: .06em; margin-top: 8px; }

/* =========================================================================
   CTA band
   ========================================================================= */
.lc-cta { position: relative; text-align: center; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lc-cta__bg { position: absolute; inset: 0; z-index: 0; }
.lc-cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.lc-cta__bg::after { content:""; position:absolute; inset:0; background: radial-gradient(120% 120% at 50% 0%, rgba(13,13,15,.5), var(--ink) 75%); }
.lc-cta .container { position: relative; z-index: 2; }
.lc-cta h2 { margin: 18px 0 14px; }
.lc-cta .lc-lead { margin-inline: auto; margin-bottom: 34px; }

/* =========================================================================
   Footer
   ========================================================================= */
.lc-footer { background: #09090b; border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 88px) 0 34px; }
.lc-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.lc-footer h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.lc-footer li { list-style: none; margin-bottom: 11px; }
.lc-footer a { color: var(--muted); font-size: 14.5px; }
.lc-footer a:hover { color: var(--brass-2); }
.lc-footer ul { padding: 0; margin: 0; }
.lc-footer__about p { color: var(--muted-2); font-size: 14px; max-width: 34ch; margin-top: 16px; }
.lc-footer__contact li { display: flex; gap: 10px; align-items: baseline; }
.lc-social { display: flex; gap: 12px; margin-top: 18px; }
.lc-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--muted); }
.lc-social a:hover { color: var(--brass-2); border-color: var(--line-2); }
.lc-footer__bottom { margin-top: clamp(40px,5vw,64px); padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: 12.5px; }

/* =========================================================================
   Page header (interior pages)
   ========================================================================= */
.lc-pagehead { padding: 180px 0 clamp(40px,6vw,72px); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.lc-breadcrumbs { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 20px; }
.lc-breadcrumbs a:hover { color: var(--brass-2); }
.lc-prose { max-width: 760px; }
.lc-prose p { color: var(--muted); margin: 0 0 1.3em; font-size: 17px; }
.lc-prose h2 { margin-top: 1.6em; }

/* =========================================================================
   MotoPress overrides — make the booking engine match the brand
   ========================================================================= */
.mphb-room-type, .mphb-single-room-type, .mphb-archive-room-types { background: transparent; }
.mphb-room-type h3, .mphb-room-type-title, .mphb-single-room-type h1, .mphb-single-room-type h2 { font-family: var(--serif); color: #fff; }
.mphb-room-type .mphb-price { color: var(--brass-2); }
.mphb .mphb-recommendation, .mphb-booking-form, .mphb-booking-details, .mphb-check-information {
	background: var(--ink-3) !important; border: 1px solid var(--line) !important; border-radius: 3px; color: var(--ivory);
}
.mphb input[type="text"], .mphb input[type="email"], .mphb input[type="number"], .mphb select {
	background: var(--ink-4) !important; border: 1px solid var(--line) !important; color: var(--ivory) !important; border-radius: 2px;
}
.mphb .button, .mphb button[type="submit"], .mphb-submit-btn, a.mphb-button, .mphb-reserve-btn {
	background: var(--brass) !important; color: #1a1408 !important; border: 1px solid var(--brass) !important;
	border-radius: 2px; font-family: var(--sans); font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
	font-size: 13px; padding: 13px 22px; cursor: pointer;
}
.mphb .button:hover { background: var(--brass-2) !important; }
.mphb-calendar .datepick .mphb-date-cell { color: var(--ivory); }
.mphb-attribute, .mphb-room-type-attributes { color: var(--muted); }

/* availability search widget */
.mphb-search-form { background: var(--ink-3); border: 1px solid var(--line); border-radius: 3px; padding: 22px; }
.mphb-search-form label { color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

/* =========================================================================
   Elementor widget overrides — Elementor-edited pages inherit the look
   ========================================================================= */
.elementor-widget-heading h1, .elementor-widget-heading h2, .elementor-widget-heading h3 { font-family: var(--serif); color: #fff; }
.elementor-widget-text-editor { color: var(--muted); }
.elementor a.elementor-button {
	background: var(--brass); color: #1a1408; border-radius: 2px;
	font-family: var(--sans); font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
}
.elementor a.elementor-button:hover { background: var(--brass-2); }

/* icon-box (amenities grid) */
.elementor-widget-icon-box .elementor-icon-box-title { color: #fff; font-family: var(--serif); font-size: 1.45rem; margin-bottom: 6px; }
.elementor-widget-icon-box .elementor-icon-box-description { color: var(--muted); font-size: 14px; line-height: 1.6; }
.elementor-widget-icon-box .elementor-icon i { color: var(--brass); font-size: 30px; }
.elementor-widget-icon-box .elementor-icon-box-wrapper { text-align: center; padding: 14px; }
.elementor-widget-icon-box .elementor-icon-box-icon { margin-bottom: 16px; }
.elementor-widget-icon-box { padding: 8px; }
.elementor-widget-button { text-align: center; }
.elementor-widget-button .elementor-button { margin-top: 18px; }
/* hero headings on inner pages */
.elementor-widget-heading h1 { font-size: clamp( 2.4rem, 5.5vw, 4rem ); line-height: 1.1; }
/* the eyebrow row (div heading) — style the small label */
.elementor-widget-heading h5, .elementor-widget-heading .elementor-heading-title { word-wrap: break-word; }
/* div used as eyebrow: tone down a plain heading div */
.elementor-section .elementor-widget-heading:first-child .elementor-heading-title[class] { font-family: var(--sans); }

/* =========================================================================
   Responsive — mobile-first refinements
   ========================================================================= */
@media (max-width: 1024px) {
	.lc-rooms-grid, .lc-testi-grid { grid-template-columns: repeat(2, 1fr); }
	.lc-amenities { grid-template-columns: repeat(2, 1fr); }
	.lc-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
	.lc-nav { display: none; }
	.lc-burger { display: flex; }
	.lc-split { grid-template-columns: 1fr; }
	.lc-stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 680px) {
	.lc-rooms-grid, .lc-testi-grid, .lc-amenities { grid-template-columns: 1fr; }
	.lc-footer__grid { grid-template-columns: 1fr; gap: 30px; }
	.lc-hero { min-height: 92svh; }
	.lc-hero__inner { padding-top: 110px; }
	.lc-card__foot { flex-direction: column; align-items: flex-start; gap: 14px; }
	.lc-stats { grid-template-columns: repeat(3,1fr); gap: 12px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
