/* ============================================================
   ROSELAND — Design System
   Colors pulled from Ceylon Kahawa logo
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600&display=swap');

:root {
  /* Brand Palette */
  --forest-green:   #2d5a27;
  --leaf-green:     #4a7c3f;
  --light-green:    #7ab648;
  --sunrise-orange: #e8621a;
  --golden-yellow:  #f5a623;
  --warm-red:       #b5241c;
  --earth-brown:    #6b3a1f;
  --cream:          #fdf6ec;
  --warm-white:     #fffaf4;
  --dark:           #1a1a1a;
  --text-body:      #3a3a3a;
  --text-muted:     #7a7a7a;

  /* Typography */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Lato', sans-serif;
  --font-script:    'Dancing Script', cursive;

  /* Spacing */
  --section-pad:    80px;
  --container:      1180px;

  /* Transitions */
  --ease:           0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 246, 236, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--golden-yellow);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

/* Main Logo */
.header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo img {
  height: 56px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--forest-green);
  letter-spacing: 1px;
}
.logo-text .brand-tagline {
  font-family: var(--font-script);
  font-size: 0.85rem;
  color: var(--sunrise-orange);
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 6px; }

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--ease), background var(--ease);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--sunrise-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.main-nav a:hover { color: var(--sunrise-orange); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.active { color: var(--sunrise-orange); }
.main-nav a.active::after { transform: scaleX(1); }

/* Sub-brand badges in nav */
.nav-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: 4px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-badge.coffee   { background: var(--earth-brown); color: #fff; }
.nav-badge.kahawa   { background: var(--warm-red);   color: #fff; }

/* Book Now CTA */
.header-cta a {
  background: var(--sunrise-orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  border-radius: 30px;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
}
.header-cta a:hover { background: var(--warm-red); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--cream);
  padding: 20px 24px 30px;
  border-bottom: 2px solid var(--golden-yellow);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: color var(--ease);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--sunrise-orange); }
.mobile-nav .header-cta { margin-top: 16px; }
.mobile-nav .header-cta a { display: inline-block; }

/* Page offset for fixed header */
.page-content { padding-top: 76px; }


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--forest-green);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand img { height: 70px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: background var(--ease), border-color var(--ease);
  color: rgba(255,255,255,0.8);
}
.footer-social a:hover { background: var(--sunrise-orange); border-color: var(--sunrise-orange); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--golden-yellow);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--golden-yellow); }

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact p span { color: var(--golden-yellow); flex-shrink: 0; }

/* Sub-brand logos in footer */
.footer-brands {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  align-items: center;
}
.footer-brands a {
  opacity: 0.7;
  transition: opacity var(--ease);
}
.footer-brands a:hover { opacity: 1; }
.footer-brands img { height: 44px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--golden-yellow); }
.footer-bottom a:hover { text-decoration: underline; }


/* ============================================================
   HERO — Cottages
   ============================================================ */

.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45,90,39,0.55) 0%,
    rgba(26,26,26,0.25) 50%,
    rgba(107,58,31,0.45) 100%
  );
}



.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  animation: heroFadeUp 1s ease 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--golden-yellow);
  margin-bottom: 8px;
  display: block;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 em {
  color: var(--golden-yellow);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background: var(--sunrise-orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 36px;
  border-radius: 40px;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 20px rgba(232,98,26,0.4);
}
.btn-primary:hover {
  background: var(--warm-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,36,28,0.4);
}
.btn-outline {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 32px;
  border-radius: 40px;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  margin-left: 12px;
}
.btn-outline:hover { background: #fff; color: var(--dark); }

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.hero-dot.active { background: var(--golden-yellow); transform: scale(1.3); }


/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--sunrise-orange);
  margin-bottom: 8px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--forest-green);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px auto 0;
}
.divider-line { width: 60px; height: 2px; background: var(--golden-yellow); }
.divider-icon { color: var(--golden-yellow); font-size: 1rem; }


/* ============================================================
   INTRO STRIP
   ============================================================ */

.intro-strip {
  background: var(--forest-green);
  padding: 28px 0;
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.intro-stat {
  text-align: center;
  color: #fff;
}
.intro-stat .number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--golden-yellow);
  line-height: 1;
}
.intro-stat .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.intro-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }


/* ============================================================
   ROOMS SECTION
   ============================================================ */

.rooms-section { padding: var(--section-pad) 0; background: var(--warm-white); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform var(--ease), box-shadow var(--ease);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}
.room-img {
  height: 220px;
  background: var(--leaf-green);
  overflow: hidden;
  position: relative;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.06); }
.room-type {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--sunrise-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
}
.room-body { padding: 22px; }
.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.room-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.room-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.room-feature {
  font-size: 0.78rem;
  color: var(--forest-green);
  display: flex;
  align-items: center;
  gap: 4px;
}
.room-feature::before { content: '✓'; color: var(--light-green); }
.room-enquire {
  display: inline-block;
  background: var(--forest-green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 20px;
  border-radius: 30px;
  transition: background var(--ease);
}
.room-enquire:hover { background: var(--sunrise-orange); }


/* ============================================================
   EXPERIENCE / FEATURE SECTION
   ============================================================ */

.experience-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.experience-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.experience-img img { width: 100%; height: 480px; object-fit: cover; }
.experience-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--golden-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.experience-img-badge .badge-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.experience-img-badge .badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--earth-brown);
  line-height: 1.2;
}
.experience-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 16px;
  line-height: 1.2;
}
.experience-content p { color: var(--text-muted); margin-bottom: 20px; }
.feature-list { list-style: none; margin-bottom: 32px; }
.feature-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.feature-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--forest-green);
  color: var(--golden-yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}


/* ============================================================
   SUB-BRANDS SECTION (on homepage)
   ============================================================ */

.sub-brands-section {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.sub-brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sub-brand-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 380px;
  cursor: pointer;
}
.sub-brand-card .card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.sub-brand-card:hover .card-bg { transform: scale(1.06); }
.sub-brand-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%);
}
/* Fallback bg colors */
.sub-brand-card.factory .card-bg  { background-color: #6b3a1f; background-image: url('../images/factory-card.jpg'); }
.sub-brand-card.kahawa .card-bg   { background-color: #b5241c; background-image: url('../images/kahawa-card.jpg'); }

.sub-brand-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.sub-brand-logo { height: 60px; margin-bottom: 12px; object-fit: contain; object-position: left; }
.sub-brand-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.sub-brand-content p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.btn-white {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  border-radius: 30px;
  transition: background var(--ease), color var(--ease);
  width: fit-content;
}
.btn-white:hover { background: #fff; color: var(--dark); }


/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--forest-green);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -20px; left: 40px;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.testimonials-section .section-header h2 { color: #fff; }
.testimonials-section .section-label    { color: var(--golden-yellow); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
  transition: background var(--ease);
}
.testimonial-card:hover { background: rgba(255,255,255,0.12); }
.stars { color: var(--golden-yellow); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--golden-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--earth-brown);
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.author-info .origin { font-size: 0.8rem; color: rgba(255,255,255,0.5); }


/* ============================================================
   PAGE HERO (for inner pages)
   ============================================================ */

.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,90,39,0.7), rgba(107,58,31,0.6));
}
.page-hero-content {
  position: relative; z-index: 2;
  color: #fff;
  animation: heroFadeUp 0.8s ease both;
}
.page-hero .page-logo { height: 80px; margin: 0 auto 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 500px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 0.83rem; color: rgba(255,255,255,0.65);
  margin-top: 14px;
}
.breadcrumb a { color: var(--golden-yellow); }
.breadcrumb span { color: rgba(255,255,255,0.4); }


/* ============================================================
   COFFEE FACTORY PAGE
   ============================================================ */

.factory-section { padding: var(--section-pad) 0; }
.factory-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--cream);
  border-radius: 12px;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.process-step::after {
  content: '→';
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--golden-yellow);
  font-weight: 700;
  z-index: 1;
}
.process-step:last-child::after { display: none; }
.process-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--forest-green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.88rem; color: var(--text-muted); }
.step-number {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
  line-height: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.product-img {
  height: 200px;
  background: var(--earth-brown);
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 20px; }
.product-body h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--dark); margin-bottom: 6px; }
.product-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.product-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--earth-brown);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}


/* ============================================================
   CEYLON KAHAWA PAGE
   ============================================================ */

.menu-section { padding: var(--section-pad) 0; background: var(--cream); }
.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid var(--warm-red);
  background: transparent;
  color: var(--warm-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.menu-tab:hover, .menu-tab.active { background: var(--warm-red); color: #fff; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.menu-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow var(--ease);
}
.menu-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.menu-item-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--cream);
  overflow: hidden;
}
.menu-item-icon img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-info h4 { font-family: var(--font-display); font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.menu-item-info p { font-size: 0.83rem; color: var(--text-muted); }
.menu-item-price {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--warm-red);
  white-space: nowrap;
}

.atmosphere-section {
  padding: var(--section-pad) 0;
  background: #1a0a05;
}
.atmosphere-section .section-header h2 { color: #fff; }
.atmosphere-section .section-label { color: var(--golden-yellow); }
.atm-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 500px;
}
.atm-item {
  border-radius: 10px;
  overflow: hidden;
  background: var(--earth-brown);
}
.atm-item img { width: 100%; height: 100%; object-fit: cover; }
.atm-item.large { grid-row: 1 / 3; }


/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-section { padding: var(--section-pad) 0; }
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery-filter {
  padding: 9px 22px;
  border-radius: 30px;
  border: 2px solid var(--forest-green);
  background: transparent;
  color: var(--forest-green);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.gallery-filter:hover,
.gallery-filter.active { background: var(--forest-green); color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--leaf-green);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(45,90,39,0.7);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--ease);
  color: #fff;
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Gallery tall items */
.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 2; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1;
  transition: color var(--ease);
}
.lightbox-close:hover { color: var(--golden-yellow); }
.lightbox-caption {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section { padding: var(--section-pad) 0; background: var(--warm-white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest-green);
  margin-bottom: 8px;
}
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: #fff;
  transition: border-color var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--forest-green); }
.form-group textarea { resize: vertical; min-height: 120px; }

.submit-btn {
  background: var(--forest-green);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 40px;
  border-radius: 40px;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  box-shadow: 0 4px 20px rgba(45,90,39,0.3);
}
.submit-btn:hover { background: var(--sunrise-orange); transform: translateY(-2px); }

.contact-info-wrap { padding-top: 12px; }
.contact-info-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest-green);
  margin-bottom: 24px;
}
.contact-info-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--forest-green);
  color: var(--golden-yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.contact-info-item strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--dark); margin-bottom: 3px; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  background: #ddd;
  margin-top: 20px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }


/* ============================================================
   UTILITY
   ============================================================ */

.section-bg-green  { background: var(--forest-green); }
.section-bg-cream  { background: var(--cream); }
.text-center       { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.hidden { display: none !important; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .experience-grid { grid-template-columns: 1fr; gap: 40px; }
  .factory-process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2)::after { display: none; }
  .atm-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .atm-item.large { grid-row: auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .sub-brands-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .factory-process { grid-template-columns: 1fr; }
  .process-step::after { content: '↓'; right: 50%; top: auto; bottom: -18px; transform: translateX(50%); }
  .form-row { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .intro-divider { display: none; }
}


