/* ============================================
   MAISON RÊVE — Main Stylesheet
   ============================================ */

:root {
  --dubloon: #D7B588;
  --dubloon-dim: rgba(215, 181, 136, 0.6);
  --dubloon-faint: rgba(215, 181, 136, 0.15);
  --cosmos: #65141F;
  --cosmos-mid: #8B2030;
  --dark: #1A1410;
  --dark-mid: #241c16;
  --cream: #F5EFE4;
  --text-light: rgba(232, 221, 208, 0.75);
  --text-faint: rgba(232, 221, 208, 0.4);
  --border: rgba(215, 181, 136, 0.15);
  --border-mid: rgba(215, 181, 136, 0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: #e8ddd0; font-family: 'Jost', sans-serif; font-weight: 300; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; color: var(--dubloon); line-height: 1.1; }
h1 { font-size: clamp(44px, 6vw, 80px); }
h2 { font-size: clamp(26px, 3.5vw, 44px); }
h3 { font-size: clamp(18px, 2vw, 24px); font-style: italic; }
p { font-size: 15px; line-height: 1.9; color: var(--text-light); }
.eyebrow { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cosmos-mid); margin-bottom: 12px; }

.btn-primary { display: inline-block; padding: 14px 44px; border: 0.5px solid rgba(215, 181, 136, 0.5); font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dubloon); background: transparent; cursor: pointer; transition: all 0.4s ease; margin-top: 32px; }
.btn-primary:hover { background: rgba(215, 181, 136, 0.08); border-color: var(--dubloon); }
.btn-text { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dubloon); border-bottom: 0.5px solid rgba(215, 181, 136, 0.3); padding-bottom: 2px; display: inline-block; transition: border-color 0.3s; margin-top: 12px; }
.btn-text:hover { border-color: var(--dubloon); }

/* NAV */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(26, 20, 16, 0.96); backdrop-filter: blur(12px); border-bottom: 0.5px solid var(--border); transition: all 0.3s ease; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 16px 48px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 81px; width: auto; object-fit: contain; filter: brightness(1.1); }
.hero-logo-img { height: 135px; width: auto; object-fit: contain; margin-bottom: 24px; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4)); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dubloon-dim); transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--dubloon); }
.nav-toggle { display: none; background: none; border: none; color: var(--dubloon); font-size: 20px; cursor: pointer; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.4; transition: transform 8s ease; }
.hero:hover .hero-bg img { transform: scale(1.03); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,20,16,0.4) 0%, rgba(26,20,16,0.25) 40%, rgba(26,20,16,0.7) 100%); }
.hero-corners { position: absolute; inset: 32px; pointer-events: none; }
.corner { position: absolute; width: 36px; height: 36px; border-color: rgba(215, 181, 136, 0.35); border-style: solid; }
.corner.tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.corner.tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.corner.bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.corner.br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.hero-content { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; animation: fadeUp 1.2s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-location { font-size: 12px; letter-spacing: 0.2em; color: var(--dubloon-dim); font-style: italic; font-family: 'Cormorant Garamond', serif; }
.hero-rule { width: 48px; height: 0.5px; background: rgba(215, 181, 136, 0.4); margin: 20px auto; }
.hero-tagline { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-faint); }

/* TEASER */
.teaser { max-width: 1200px; margin: 0 auto; padding: 96px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; border-bottom: 0.5px solid var(--border); }
.teaser-text h2 { margin-bottom: 20px; }
.teaser-text p { margin-bottom: 14px; }
.teaser-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 6px; }
.img-box { background: rgba(101, 20, 31, 0.12); border: 0.5px solid var(--border); overflow: hidden; transition: border-color 0.3s; }
.img-box:hover { border-color: var(--border-mid); }
.img-box.tall { grid-row: span 2; }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.img-box:hover img { transform: scale(1.04); }

/* DESIGNED FOR */
.designed-for { border-bottom: 0.5px solid var(--border); padding: 72px 48px; background: var(--dark-mid); }
.designed-for-inner { max-width: 1200px; margin: 0 auto; }
.designed-for-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 40px; margin-top: 24px; }
.designed-for-list li { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; color: var(--dubloon-dim); padding-left: 20px; position: relative; line-height: 1.4; }
.designed-for-list li::before { content: '—'; position: absolute; left: 0; color: var(--cosmos-mid); font-size: 14px; }

/* CORPORATE CALLOUT */
.callout-section { padding: 72px 48px; border-bottom: 0.5px solid var(--border); }
.callout-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.callout-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2.5vw, 24px); font-weight: 300; font-style: italic; color: rgba(215, 181, 136, 0.7); line-height: 1.7; margin-top: 16px; margin-bottom: 8px; }

/* PRESERVATION NOTE */
.preservation-note { text-align: center; padding: 28px 48px; border-top: 0.5px solid var(--border); }
.preservation-note p { font-size: 11px; letter-spacing: 0.12em; color: rgba(215, 181, 136, 0.25); font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* PREVIEW STRIPS */
.preview-strips { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.preview-strip-item { position: relative; height: 480px; overflow: hidden; }
.preview-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.preview-strip-item:hover img { transform: scale(1.04); }
.preview-strip-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,20,16,0.85) 0%, rgba(26,20,16,0.2) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; }
.preview-strip-overlay h3 { font-size: clamp(20px, 2.5vw, 28px); font-style: normal; color: var(--dubloon); margin-bottom: 12px; line-height: 1.2; }

/* IMAGE STRIP */
.image-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.strip-item { height: 300px; background: rgba(101, 20, 31, 0.1); display: flex; align-items: flex-end; padding: 24px; position: relative; overflow: hidden; }
.strip-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,20,16,0.7) 0%, transparent 55%); }
.strip-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.strip-item:hover img { transform: scale(1.04); }
.strip-label { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: rgba(215, 181, 136, 0.8); position: relative; z-index: 1; }

/* QUOTE */
.quote-section { text-align: center; padding: 80px 48px; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.quote-section p { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 3vw, 30px); font-weight: 300; font-style: italic; color: rgba(215, 181, 136, 0.65); line-height: 1.5; max-width: 700px; margin: 0 auto; }

/* PAGE HERO */
.page-hero { padding: 160px 48px 80px; max-width: 1200px; margin: 0 auto; border-bottom: 0.5px solid var(--border); }
.page-hero--short { padding-bottom: 48px; }
.page-hero-sub { font-size: 16px; color: var(--text-faint); margin-top: 20px; max-width: 480px; font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* ROOMS */
.rooms { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.room-item { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 80px 0; border-bottom: 0.5px solid var(--border); }
.room-item--reverse { direction: rtl; }
.room-item--reverse > * { direction: ltr; }
.room-images { display: flex; flex-direction: column; gap: 6px; }
.room-img-main { height: 380px; overflow: hidden; border: 0.5px solid var(--border); }
.room-img-secondary { height: 180px; overflow: hidden; border: 0.5px solid var(--border); }
.room-img-main img, .room-img-secondary img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-img-main:hover img, .room-img-secondary:hover img { transform: scale(1.03); }
.room-text h2 { margin-bottom: 16px; }
.room-text p { margin-bottom: 14px; }
.room-details { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.room-details span { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cosmos-mid); border: 0.5px solid rgba(139, 32, 48, 0.3); padding: 6px 14px; }

/* SHARED SPACES */
.shared-spaces { background: var(--dark-mid); padding: 96px 48px; border-top: 0.5px solid var(--border); }
.shared-header { max-width: 1200px; margin: 0 auto 56px; }
.shared-header h2 { margin-bottom: 12px; }
.shared-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.shared-item h3 { font-size: 18px; font-style: normal; margin: 16px 0 8px; color: var(--dubloon); }
.shared-item p { font-size: 13px; }
.shared-img { height: 220px; overflow: hidden; border: 0.5px solid var(--border); }
.shared-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.shared-img:hover img { transform: scale(1.04); }
.accom-cta { text-align: center; padding: 96px 48px; border-top: 0.5px solid var(--border); }
.accom-cta h2 { margin: 8px 0 16px; }

/* EVENTS */
.event-types { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.event-item { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 80px 0; border-bottom: 0.5px solid var(--border); }
.event-item--reverse { direction: rtl; }
.event-item--reverse > * { direction: ltr; }
.event-img { height: 480px; overflow: hidden; border: 0.5px solid var(--border); }
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.event-img:hover img { transform: scale(1.03); }
.event-text h2 { margin-bottom: 16px; }
.event-text p { margin-bottom: 14px; }
.event-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.event-highlights span { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cosmos-mid); border: 0.5px solid rgba(139, 32, 48, 0.3); padding: 6px 14px; }

/* VENUE HIGHLIGHTS */
.venue-highlights { background: var(--dark-mid); padding: 96px 48px; border-top: 0.5px solid var(--border); }
.vh-header { max-width: 1200px; margin: 0 auto 56px; }
.vh-header h2 { margin-top: 8px; }
.vh-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.vh-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--dubloon); margin-bottom: 10px; font-style: normal; }
.vh-item p { font-size: 13px; color: var(--text-faint); }
.events-cta { text-align: center; padding: 96px 48px; border-top: 0.5px solid var(--border); }
.events-cta h2 { margin: 8px 0 16px; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; padding: 3px; }
.g-item { height: 320px; background: rgba(101, 20, 31, 0.1); border: 0.5px solid var(--border); overflow: hidden; transition: border-color 0.3s; }
.g-item:hover { border-color: var(--border-mid); }
.g-item.g-tall { grid-row: span 2; height: auto; min-height: 643px; }
.g-item.g-wide { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.03); }

/* CONTACT */
.contact-page { min-height: 80vh; display: flex; align-items: flex-start; justify-content: center; padding: 160px 48px 96px; }
.contact-inner { text-align: center; display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 1100px; }
.contact-mark { width: 48px; height: 48px; margin-bottom: 36px; opacity: 0.4; }
.contact-page h1 { margin-bottom: 12px; }
.contact-subtitle { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-faint); }
.contact-rule { width: 32px; height: 0.5px; background: rgba(215, 181, 136, 0.3); margin: 40px auto; }
.contact-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
.contact-email { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2.5vw, 26px); font-weight: 400; color: var(--dubloon); letter-spacing: 0.05em; margin-bottom: 28px; transition: opacity 0.3s; display: block; }
.contact-email:hover { opacity: 0.75; }
.contact-address { font-style: normal; font-size: 13px; letter-spacing: 0.1em; color: rgba(215, 181, 136, 0.3); line-height: 2; margin-bottom: 20px; }
.contact-note { font-size: 13px; font-style: italic; font-family: 'Cormorant Garamond', serif; color: rgba(215, 181, 136, 0.35); line-height: 1.8; }
.contact-two-col { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; width: 100%; text-align: left; margin-top: 0; }
.contact-info-col { display: flex; flex-direction: column; }
.contact-info-col .contact-label { margin-bottom: 12px; }

/* INQUIRY FORM */
.inquiry-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: span 2; }
.form-group label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }
.form-group input, .form-group select, .form-group textarea { background: rgba(215, 181, 136, 0.04); border: 0.5px solid rgba(215, 181, 136, 0.2); color: #e8ddd0; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 300; padding: 12px 16px; outline: none; transition: border-color 0.3s; width: 100%; appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(215, 181, 136, 0.2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(215, 181, 136, 0.5); }
.form-group select option { background: var(--dark); color: #e8ddd0; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* RETREATS PAGE */
.retreat-intro { max-width: 1200px; margin: 0 auto; padding: 96px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; border-bottom: 0.5px solid var(--border); }
.retreat-intro-text h2 { margin-bottom: 20px; }
.retreat-intro-text p { margin-bottom: 14px; }
.retreat-intro-image { height: 500px; overflow: hidden; border: 0.5px solid var(--border); }
.retreat-intro-image img { width: 100%; height: 100%; object-fit: cover; }
.retreat-uses { background: var(--dark-mid); padding: 96px 48px; border-bottom: 0.5px solid var(--border); }
.retreat-uses-inner { max-width: 1200px; margin: 0 auto; }
.retreat-uses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 40px; }
.retreat-use-item h3 { font-size: 20px; font-style: normal; color: var(--dubloon); margin-bottom: 12px; }
.retreat-use-item p { font-size: 14px; color: var(--text-light); }
.retreat-spaces { padding: 0 48px 96px; }
.retreat-spaces-header { max-width: 1200px; margin: 0 auto; padding: 96px 0 56px; border-bottom: 0.5px solid var(--border); margin-bottom: 0; }
.retreat-spaces-header h2 { margin: 8px 0 16px; }
.retreat-spaces-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-top: 56px; }
.retreat-space-item h3 { font-size: 18px; font-style: normal; margin: 16px 0 10px; color: var(--dubloon); }
.retreat-space-item p { font-size: 14px; color: var(--text-light); }
.retreat-space-img { height: 240px; overflow: hidden; border: 0.5px solid var(--border); margin-bottom: 4px; }
.retreat-space-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.retreat-space-img:hover img { transform: scale(1.03); }

/* FOOTER */
footer { border-top: 0.5px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 40px 48px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 16px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(215, 181, 136, 0.4); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(215, 181, 136, 0.3); transition: color 0.3s; }
.footer-links a:hover { color: var(--dubloon); }
.footer-email { font-size: 11px; letter-spacing: 0.1em; color: rgba(215, 181, 136, 0.3); }
.footer-bottom { border-top: 0.5px solid var(--border); padding: 16px 48px; text-align: center; }
.footer-bottom p { font-size: 10px; letter-spacing: 0.1em; color: rgba(215, 181, 136, 0.2); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .shared-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-grid { grid-template-columns: repeat(2, 1fr); }
  .designed-for-list { grid-template-columns: repeat(2, 1fr); }
  .retreat-uses-grid { grid-template-columns: repeat(2, 1fr); }
  .retreat-spaces-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-inner { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; gap: 16px; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: rgba(26,20,16,0.98); padding: 24px; border-bottom: 0.5px solid var(--border); }
  .nav-toggle { display: block; }
  .hero-corners { inset: 16px; }
  .hero-logo-img { height: 94px; }
  .nav-logo-img { height: 57px; }
  .teaser { grid-template-columns: 1fr; padding: 64px 24px; gap: 48px; }
  .teaser-images { grid-template-rows: 180px 180px; }
  .preview-strips { grid-template-columns: 1fr; }
  .preview-strip-item { height: 320px; }
  .image-strip { grid-template-columns: 1fr; }
  .strip-item { height: 220px; }
  .room-item, .event-item { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .room-item--reverse, .event-item--reverse { direction: ltr; }
  .rooms, .event-types { padding: 0 24px; }
  .room-img-main { height: 280px; }
  .event-img { height: 300px; }
  .shared-spaces, .venue-highlights { padding: 64px 24px; }
  .shared-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item.g-tall { grid-row: span 1; min-height: 280px; }
  .g-item.g-wide { grid-column: span 1; }
  .footer-inner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer-bottom { padding: 16px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .quote-section, .accom-cta, .events-cta { padding: 56px 24px; }
  .contact-page { padding: 120px 24px 80px; }
  .contact-two-col { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .designed-for { padding: 56px 24px; }
  .designed-for-list { grid-template-columns: 1fr; }
  .callout-section { padding: 56px 24px; }
  .preservation-note { padding: 20px 24px; }
  .retreat-intro { grid-template-columns: 1fr; padding: 64px 24px; gap: 40px; }
  .retreat-intro-image { height: 300px; }
  .retreat-uses { padding: 64px 24px; }
  .retreat-uses-grid { grid-template-columns: 1fr; gap: 32px; }
  .retreat-spaces { padding: 0 24px 64px; }
  .retreat-spaces-header { padding: 64px 0 40px; }
  .retreat-spaces-grid { grid-template-columns: 1fr; }
  .retreat-space-img { height: 200px; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item { height: 260px; }
  .shared-grid { grid-template-columns: 1fr; }
}

/* PHOTO WIRING */
.img-label { display: none !important; }
