/* -- SHARED COMPONENTS -- */
.page-hero {
  position: relative; height: 75vh;
  display: flex; align-items: flex-end; padding: 60px 40px;
  overflow: hidden; border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.9);
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -1; transition: transform 0.8s ease; }
.page-hero:hover .page-hero-bg { transform: scale(1.05); }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, transparent 100%); }
.page-hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 8vw, 6rem); color: #fff; line-height: 1; margin: 0; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.eyebrow { font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 20px; font-weight: 500; }
.gold-rule { width: 60px; height: 2px; background: var(--gold); margin: 25px 0; }
.gold-rule.center { margin: 25px auto; }

/* -- SHARED SUBPAGE LAYOUTS -- */
.sub-intro-text { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; background: var(--dark2); }
.sub-intro-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); color: #fff; line-height: 1.15; margin-bottom: 24px; }
.sub-intro-text p { color: rgba(255,255,255,0.7); line-height: 1.85; margin-bottom: 20px; font-size: 0.97rem; }

@media (max-width: 991px) {
  .page-hero { height: 60svh; padding: 40px 24px; border-radius: 0 0 30px 30px; }
  .page-hero h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .sub-intro-text { padding: 40px 24px; border-radius: 30px; margin-top: -30px; position: relative; z-index: 20; }
}

/* -- PAGE SPECIFIC: ABOUT -- */
.about-story { padding: 120px 0; background: #050201; }
.about-story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4.5vw, 4rem); color: #fff; line-height: 1.1; margin-bottom: 30px; }
.about-story-text h2 em { color: var(--gold); font-style: italic; }
.about-story-text p { color: rgba(255,255,255,0.7); line-height: 1.9; margin-bottom: 25px; font-size: 1.05rem; }

.about-story-img { position: relative; border-radius: 40px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.6); }
.about-story-img img { width: 100%; height: auto; display: block; transition: transform 0.8s ease; }
.about-story-img:hover img { transform: scale(1.05); }

.vision-section { padding: 120px 0; background: #080504; border-top: 1px solid rgba(255,255,255,0.05); }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.vision-card { background: #0d0907; padding: 50px 36px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
.vision-card:hover { background: var(--dark3); transform: translateY(-5px); }
.vision-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 24px; }
.vision-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: #fff; margin-bottom: 14px; }
.vision-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.75; }

/* -- PAGE SPECIFIC: GALLERY -- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.grid-card { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.grid-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.grid-card:hover img { transform: scale(1.1); }
.grid-card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; transition: opacity 0.4s; display: flex; align-items: center; justify-content: center; }
.grid-card:hover .grid-card-overlay { opacity: 1; }

/* -- PAGE SPECIFIC: RESTAURANT -- */
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.hour-card { background: #0d0907; padding: 40px; border: 1px solid rgba(255,255,255,0.05); text-align: center; }

/* -- PAGE SPECIFIC: CONTACT -- */
.contact-section { padding: 120px 0; background: #050201; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }

.contact-info { padding-right: 40px; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4.5vw, 4rem); color: #fff; line-height: 1.1; margin-bottom: 30px; }
.contact-info h2 em { color: var(--gold); font-style: italic; }
.contact-info p { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 50px; font-size: 1.05rem; }

.ci-list { display: flex; flex-direction: column; gap: 40px; }
.ci-item { display: flex; align-items: flex-start; gap: 24px; }
.ci-icon { width: 50px; height: 50px; flex-shrink: 0; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); 
           display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; border-radius: 50%; }
.ci-content label { display: block; font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.ci-content span, .ci-content a { color: #fff; font-size: 1.1rem; text-decoration: none; transition: color 0.3s; }
.ci-content a:hover { color: var(--gold); }

.contact-form-panel { background: #0d0907; border: 1px solid rgba(255,255,255,0.05); padding: 60px; border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.form-hd { margin-bottom: 40px; }
.form-hd h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #fff; margin-bottom: 8px; }
.form-hd p { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.cf-row.full { grid-template-columns: 1fr; }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-field label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.cf-field input, .cf-field textarea { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 16px; color: #fff; 
                                       font-family: 'Jost', sans-serif; transition: all 0.3s; border-radius: 2px; }
.cf-field input:focus, .cf-field textarea:focus { border-color: var(--gold); outline: none; background: rgba(255,255,255,0.06); }
.cf-field textarea { min-height: 140px; resize: none; }
.cf-submit { width: 100%; padding: 20px; background: var(--gold); border: none; font-size: 0.75rem; letter-spacing: 4px; 
             text-transform: uppercase; font-weight: 600; cursor: pointer; transition: all 0.4s; color: #000; margin-top: 20px; }
.cf-submit:hover { background: #fff; color: #000; }

.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success.active { display: block; }
.form-success i { font-size: 4rem; color: var(--gold); margin-bottom: 24px; }
.form-success h3 { font-size: 2rem; color: #fff; margin-bottom: 12px; }

.map-section { height: 500px; width: 100%; filter: grayscale(1) invert(0.9) contrast(1.2); opacity: 0.7; }
.map-section iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 991px) {
  .about-story { padding: 80px 0; }
  .about-story-split { grid-template-columns: 1fr; gap: 50px; }
  .vision-grid, .gallery-grid, .hours-grid { grid-template-columns: 1fr; gap: 15px; }
  .vision-card { padding: 40px 30px; text-align: center; }
  .contact-section { padding: 80px 0; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 60px; }
  .contact-info { padding-right: 0; text-align: center; }
  .ci-item { flex-direction: column; align-items: center; text-align: center; }
  .contact-form-panel { padding: 40px 24px; }
  .cf-row { grid-template-columns: 1fr; }
}
