/* =============================================
   COORG EMBER BREW — Stylesheet
   Tone: Warm editorial, earthy, boutique
   ============================================= */

:root {
  --green-deep:   #1a3528;
  --green-mid:    #2d5a3d;
  --green-light:  #4a7c5f;
  --cream:        #f5efe4;
  --cream-dark:   #ede3d2;
  --terracotta:   #b85c38;
  --brown:        #6b3d2e;
  --gold:         #c9a84c;
  --text-dark:    #1e1a16;
  --text-mid:     #4a3f35;
  --text-light:   #8a7a6a;
  --white:        #fdfaf6;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(26, 53, 40, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.75);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.btn-nav {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background var(--transition);
}
.btn-nav:hover { background: #e0bb5a; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  background: var(--green-deep);
}
.hero-img-wrap img {
  opacity: 0.6;
}
.hero-img-wrap.hero-placeholder {
  background: linear-gradient(160deg, #1a3528 0%, #2d5a3d 50%, #4a7c5f 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,15,0.85) 0%, rgba(10,20,15,0.2) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.eyebrow.light { color: rgba(201, 168, 76, 0.8); }
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(245, 239, 228, 0.8);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,239,228,0.4);
  writing-mode: vertical-rl;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: #c96840; transform: translateY(-2px); }
.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--green-mid);
  color: var(--green-deep);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--green-deep);
  color: var(--cream);
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 100px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-dark {
  background: var(--green-deep);
  padding: 100px 48px;
  color: var(--cream);
}
.section-dark .section-header h2,
.section-dark h2 { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
}
h2 em {
  font-style: italic;
  color: var(--green-mid);
}
.section-dark h2 em { color: var(--gold); }
h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
}
h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
p { color: var(--text-mid); margin-bottom: 16px; }

/* =============================================
   ABOUT
   ============================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { font-weight: 300; }
.about-text .btn-secondary { margin-top: 16px; }
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 75%;
  border-radius: var(--radius);
  background: var(--cream-dark);
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  background: var(--cream-dark);
}

/* =============================================
   AMENITIES
   ============================================= */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.amenity-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 36px 28px;
  transition: background var(--transition);
}
.amenity-card:hover { background: rgba(255,255,255,0.1); }
.amenity-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.amenity-card h4 { color: var(--gold); margin-bottom: 10px; }
.amenity-card p { color: rgba(245,239,228,0.7); font-size: 0.9rem; font-weight: 300; margin: 0; }

/* =============================================
   ROOMS
   ============================================= */
.rooms-info {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 56px;
  padding: 40px;
  background: var(--cream-dark);
  border-radius: var(--radius);
}
.room-detail {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1;
}
.detail-label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}
.rooms-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 340px;
  gap: 8px;
  margin-bottom: 24px;
}
.room-img {
  border-radius: var(--radius);
  background: var(--cream-dark);
  overflow: hidden;
}
.room-notes {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* =============================================
   QUICK LINKS
   ============================================= */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.qlink {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 32px;
  border-right: 1px solid rgba(201,168,76,0.15);
  transition: background var(--transition);
  gap: 8px;
}
.qlink:last-child { border-right: none; }
.qlink:hover { background: rgba(255,255,255,0.07); }
.qlink-icon { font-size: 2.2rem; margin-bottom: 8px; }
.qlink-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 400;
}
.qlink-sub {
  font-size: 0.8rem;
  color: rgba(201,168,76,0.8);
  letter-spacing: 0.5px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0f2019;
  color: rgba(245,239,228,0.7);
  text-align: center;
  padding: 64px 48px 40px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tag {
  font-size: 0.85rem;
  color: rgba(245,239,228,0.5);
  margin-bottom: 16px;
}
.footer-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-note {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(245,239,228,0.4);
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,239,228,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: rgba(245,239,228,0.25); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--green-deep);
  padding: 160px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(74,124,95,0.3) 0%, transparent 70%);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  color: rgba(245,239,228,0.7);
  max-width: 560px;
  margin: 16px auto 0;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* =============================================
   DIVIDERS
   ============================================= */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cream-dark), transparent);
  margin: 0;
}
.divider-dark {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .qlink { border-bottom: 1px solid rgba(201,168,76,0.15); }
  .qlink:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { 
    display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--green-deep); padding: 24px; gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .btn-nav { display: none; }
  
  .hero-content { padding: 0 24px; }
  .hero-scroll { display: none; }
  
  .section { padding: 64px 24px; }
  .section-dark { padding: 64px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
  
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  
  .rooms-info { flex-direction: column; gap: 32px; }
  .rooms-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .room-img { height: 240px; }
  
  .quick-links { grid-template-columns: 1fr 1fr; }
  
  .footer { padding: 48px 24px 32px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .quick-links { grid-template-columns: 1fr; }
  .qlink { border-right: none; }
}
