/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Marcellus&display=swap');

/* ===== GLOBAL VARIABLES ===== */
:root {
  --color-main: #3A1C01;
  --color-secondary: #B77423;
  --color-white: #FFFFFF;
  --color-black: #000000;

  --font-heading: 'Marcellus', serif;
  --font-body: 'Inter', sans-serif;

  --fs-h1: clamp(1.8rem, 5vw, 2.8rem);
  --fs-h2: clamp(1.8rem, 4vw, 2.4rem);
  --fs-h3: clamp(1.4rem, 3vw, 1.8rem);
  --fs-h4: clamp(1.1rem, 2vw, 1.3rem);
  --fs-content: clamp(0.9rem, 1vw, 1rem);

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.2;
  --lh-medium: 1.4;
  --lh-loose: 1.6;

  --section-padding: clamp(60px, 8vw, 100px);
  --container-width: 1400px;

  --gap-xs: 10px;
  --gap-s: 20px;
  --gap-m: 40px;
  --gap-l: 60px;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-transform: none !important;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-content);
  line-height: var(--lh-loose);
  color: var(--color-main);
  background-color: var(--color-white);
  overflow-x: hidden;
}

p,
span,
a,
button,
li,
div:not(.logo) {
  text-transform: capitalize;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  text-transform: capitalize;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: var(--fs-content);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gap-s);
  width: 100%;
}

.flex {
  display: flex;
}

.flex-col { display: flex; flex-direction: column; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.gap-s { gap: var(--gap-s); }
.bg-light { background-color: #fdfaf7; }
.w-fit { width: fit-content; }
.text-accent { color: var(--color-secondary); }

.gap-xs {
  gap: var(--gap-xs);
}

.gap-s {
  gap: var(--gap-s);
}

.gap-m {
  gap: var(--gap-m);
}

.section {
  padding: var(--section-padding) 0;
}

/* ===== BUTTONS ===== */
.btn-group {
  display: flex;
  gap: var(--gap-s);
}

.btn {
  padding: 15px 40px;
  border-radius: 0; /* Sharp edges */
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: 0.3s ease;
  border: none; /* No borders */
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}

.btn-outline {
  background-color: var(--color-main);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: clamp(500px, 75vh, 650px);
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-black);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5; /* Darker overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-s); /* Standardized gap */
}

.hero-content h1 {
  color: var(--color-white);
  line-height: 1.1;
  margin: 0;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0;
}

/* ===== GRID SECTION ===== */
.grid-section {
  background-color: var(--color-white);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--gap-l);
  gap: var(--gap-m);
}

.section-header-content {
  max-width: 700px;
}

@media (max-width: 768px) {
  :root {
    --gap-m: 25px;
    --gap-l: 40px;
    --section-padding: 50px;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }

  .split-section, .split-section.reverse, .arch-grid, .asym-grid, .exp-list, .info-table {
    flex-direction: column !important;
    display: flex !important;
    grid-template-columns: 1fr !important;
    gap: var(--gap-m) !important;
  }

  .arch-img-large, .asym-item, .asym-item.tall {
    height: 300px !important;
    width: 100% !important;
    position: relative !important;
  }

  .split-img {
    height: 300px !important;
    width: 100% !important;
  }

  .arch-images {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .arch-img-small {
    display: none; /* Removing small images on mobile as requested */
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px !important;
  }

  .card-content {
    padding: 20px !important;
  }

  .arch-content, .split-content {
    padding: 0 !important; /* Removing all padding on mobile as requested */
    gap: 15px !important;
  }

  .asym-overlay {
    padding: 20px !important;
  }

  .exp-item {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 15px !important;
    padding-bottom: 25px !important;
  }

  .exp-info {
    display: contents !important;
  }

  .exp-info h3 {
    flex: 1 !important;
    margin: 0 !important;
  }

  .exp-info p {
    width: 100% !important;
    margin: 0 !important;
  }
}

.section-header-content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}

.section-header h2 {
  margin-bottom: 0;
  color: var(--color-main);
  text-align: left;
}

.section-header p {
  text-align: left;
  opacity: 0.8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-m);
}

.card {
  background: #fdfaf7; /* Very light brand tint */
  padding: 0; /* Removing padding to allow image to span top */
  display: flex;
  flex-direction: column;
  transition: 0.4s ease;
  border: 1px solid rgba(58, 28, 1, 0.05);
  overflow: hidden;
}

.card-content {
  padding: var(--gap-m);
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
  flex-grow: 1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(58, 28, 1, 0.08);
}

.card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card h3 {
  color: var(--color-main);
  font-size: var(--fs-h3);
  text-align: left;
}

.card p {
  color: var(--color-main);
  opacity: 0.8;
  text-align: left;
}

.card-link {
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

/* ===== HEADER ===== */
header {
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(58,28,1,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 90px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--gap-m);
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  color: var(--color-main);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  cursor: pointer;
}

.dropdown {
  position: absolute;
  top: 90px; 
  left: 0;
  background: var(--color-white);
  min-width: 240px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  padding: 10px 0; /* Reduced padding for desktop */
  gap: 0; /* Removed gap for desktop */
  border: 1px solid rgba(58,28,1,0.05);
  z-index: 100;
}

.dropdown-link {
  padding: 10px 20px;
  font-size: var(--fs-content);
  transition: background 0.3s ease;
}

.dropdown-link:hover {
  background-color: rgba(183, 116, 35, 0.05);
  color: var(--color-secondary);
}

.nav-item.active .dropdown {
  display: flex; /* Show only when active */
}

.dropdown-link {
  color: var(--color-main);
  font-size: 0.95rem;
  padding: 6px 0;
  display: block;
}

.dropdown-link:hover {
  color: var(--color-secondary);
}

.menu-btn, .close-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-main);
  cursor: pointer;
}

/* ===== HEADER MOBILE ===== */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: 80px var(--gap-m) var(--gap-l);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
    gap: var(--gap-s);
  }

  .nav-links.active {
    right: 0;
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  }

  .menu-btn, .close-btn { display: block; }
  .close-btn { position: absolute; top: 25px; right: 25px; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 var(--gap-s);
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    border: none;
    display: flex;
  }

  .nav-item.active .dropdown {
    max-height: 500px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .desktop-lang { display: none; }
}

/* ===== DIVERSE SECTION DESIGNS ===== */

/* 1. Split Feature (Liked Style) */
.split-section {
  display: flex;
  align-items: center;
  gap: var(--gap-l);
}

.split-section.reverse { flex-direction: row-reverse; }

.split-img {
  flex: 1;
  height: 500px;
  object-fit: cover;
  border: 1px solid rgba(58,28,1,0.05);
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
}

/* 2. Architectural Grid (Redesign) */
.arch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-l);
  align-items: center;
}

.arch-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-s);
}

.arch-img-large {
  grid-column: span 2;
  height: 350px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(58,28,1,0.05);
}

.arch-img-small {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(58,28,1,0.05);
}

.arch-content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
}

/* 3. Asymmetrical Grid (Gallery) */
.asym-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--gap-m);
}

.asym-item {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.asym-item.tall { height: 641px; grid-row: span 2; }

.asym-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.asym-item:hover .asym-img { transform: scale(1.05); }

.asym-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,28,1,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--gap-m);
  color: var(--color-white);
  gap: var(--gap-xs); /* Using gap method */
}

/* 4. Experience List */
.exp-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-l);
}

.exp-item {
  display: flex;
  gap: var(--gap-m);
  padding-bottom: var(--gap-m);
  border-bottom: 1px solid rgba(58,28,1,0.1);
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-secondary);
  opacity: 0.3;
}

.exp-info { display: flex; flex-direction: column; gap: 10px; }

/* ===== SECTION: INFO TABLE (Planning) ===== */
.info-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-l);
  border-top: 1px solid rgba(58,28,1,0.1);
  padding-top: var(--gap-m);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-label {
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.logo img {
  width: clamp(140px, 15vw, 180px);
}

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: var(--gap-m);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
  cursor: pointer;
}

.nav-link {
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* Desktop Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(58, 28, 1, 0.05);
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}

/* Icons */
.nav-link svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Mobile Menu Buttons */
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: none;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
}

.menu-btn svg,
.close-btn svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-main);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: var(--gap-s);
}

.lang-btn {
  font-weight: var(--fw-medium);
}

.lang-btn.active {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--color-main);
  color: var(--color-white);
  padding-top: var(--section-padding);
  padding-bottom: var(--gap-s);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--gap-l);
}

.footer-logo img {
  width: 160px;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}

.footer-title {
  color: var(--color-white);
  font-size: var(--fs-h4);
  margin-bottom: 20px;
  font-weight: var(--fw-semibold);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link,
.footer-desc {
  font-size: var(--fs-content);
  color: var(--color-white);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-link:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--color-secondary);
  text-align: center;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-btn {
    display: block;
  }

  .close-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 80px 25px 40px;
    gap: 0;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 2000;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-item {
    height: auto;
    padding: 0;
    border-bottom: 1px solid rgba(58, 28, 1, 0.1);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    padding: 15px 0;
    justify-content: space-between;
    font-size: 1.05rem;
  }

  /* Mobile Submenu Fix */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0 !important; /* Total removal of padding to prevent jump */
  }

  .nav-item.active .dropdown {
    max-height: 1000px;
  }

  .nav-item.active .nav-link {
    color: var(--color-secondary);
  }

  .nav-item.active .nav-link svg {
    transform: rotate(180deg);
    color: var(--color-secondary);
  }

  .nav-item:not(.active) .nav-link svg {
    transform: rotate(0deg);
  }

  .dropdown-link {
    padding: 12px 0 12px 20px !important; /* Uniform padding for all links */
    font-size: 0.95rem;
    border: none;
    border-left: 1px solid var(--color-secondary);
  }

  .mobile-lang {
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }

  .desktop-lang {
    display: none;
  }

  .hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .hero-content p {
    max-width: 100%;
  }

  .btn-group {
    flex-direction: row; /* Back to row or stack if narrow */
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-s);
  }

  .section-header-content {
    max-width: 100%;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-s);
  }
}

@media (min-width: 1025px) {
  .mobile-lang {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-m);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ SECTION ===== */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-m);
}

.faq-item {
  border-left: 3px solid var(--color-secondary);
  padding-left: var(--gap-s);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-q {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-main);
  line-height: var(--lh-medium);
}

.faq-a {
  color: var(--color-main);
  opacity: 0.85;
  line-height: var(--lh-loose);
}

.faq-a strong {
  color: var(--color-main);
  font-weight: var(--fw-semibold);
  opacity: 1;
}

@media (max-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}
/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
  background: #fdfaf7;
  border-bottom: 1px solid rgba(58,28,1,0.08);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin: 0 8px;
  opacity: 0.4;
}
.breadcrumb a { color: var(--color-secondary); }
.breadcrumb li:last-child { opacity: 0.65; }

/* ===== PAGE HERO (text only — no image) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--color-main) 0%, #5c2d0e 55%, #8b4a1a 100%);
  padding: clamp(60px, 8vw, 100px) 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(183,116,35,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
}
.page-hero-content > h1,
.page-hero-content > p,
.page-hero-content > .hero-tags {
  max-width: 820px;
}
.page-hero h1 { color: var(--color-white); line-height: 1.1; }
.page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 660px;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}
.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.hero-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--color-white);
  padding: 5px 15px;
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.4px;
  border-radius: 2px;
}

/* ===== QUICK FACTS GRID ===== */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--gap-s);
}
.fact-card {
  background: var(--color-white);
  border: 1px solid rgba(58,28,1,0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 3px solid var(--color-secondary);
}
.fact-label {
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  letter-spacing: 1px;
  text-transform: uppercase !important;
}
.fact-value {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-main);
  line-height: 1.3;
}

/* ===== STATS GRID ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--gap-s);
  text-align: center;
}
.stat-item {
  padding: var(--gap-m) var(--gap-s);
  border: 1px solid rgba(58,28,1,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  background: #fdfaf7;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-secondary);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  opacity: 0.7;
  line-height: 1.4;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(58,28,1,0.03), rgba(183,116,35,0.07));
  border-left: 4px solid var(--color-secondary);
  padding: var(--gap-m);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.highlight-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  font-style: italic;
}

/* ===== TIMINGS TABLE ===== */
.timings-table-wrap { overflow-x: auto; }
.timings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.timings-table th {
  background: var(--color-main);
  color: var(--color-white);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}
.timings-table td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(58,28,1,0.07);
  vertical-align: middle;
}
.timings-table tr:nth-child(even) td { background: #fdfaf7; }
.timings-table tr:last-child td { border-bottom: none; }
.t-open  { color: #2a7a2a; font-weight: var(--fw-semibold); }
.t-free  { color: var(--color-secondary); font-weight: var(--fw-semibold); }

/* ===== INFO ROW LIST ===== */
.info-list {
  border: 1px solid rgba(58,28,1,0.08);
  display: flex;
  flex-direction: column;
}
.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid rgba(58,28,1,0.07);
}
.info-row:last-child { border-bottom: none; }
.info-key {
  background: #fdfaf7;
  padding: 13px 20px;
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  font-size: 0.88rem;
  border-right: 1px solid rgba(58,28,1,0.07);
  display: flex;
  align-items: flex-start;
}
.info-val {
  padding: 13px 20px;
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ===== REACH CARDS ===== */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--gap-m);
}
.reach-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--gap-m);
  border: 1px solid rgba(58,28,1,0.08);
  border-top: 3px solid var(--color-main);
}
.reach-card h4 { color: var(--color-main); margin-bottom: 2px; }

/* ===== COMING SOON ===== */
.coming-soon-wrap {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-m);
}
.coming-soon-wrap h1 { max-width: 620px; }
.coming-soon-wrap > p {
  max-width: 520px;
  opacity: 0.7;
  line-height: 1.75;
}
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap-s);
  width: 100%;
  max-width: 960px;
  text-align: left;
}
.chapter-item {
  padding: 16px 20px;
  border: 1px solid rgba(58,28,1,0.08);
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0.45;
  background: #fdfaf7;
}
.chapter-num {
  font-size: 0.72rem;
  color: var(--color-secondary);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.8px;
  text-transform: uppercase !important;
}
.chapter-name { font-family: var(--font-heading); font-size: 0.92rem; }

/* ===== NEARBY ATTRACTIONS ===== */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap-m);
}
.nearby-card {
  border: 1px solid rgba(58,28,1,0.08);
  padding: var(--gap-m);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.nearby-dist {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-secondary);
  color: white;
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  padding: 3px 10px;
  letter-spacing: 0.3px;
}
.nearby-card h3 { padding-right: 70px; }

/* ===== MONTH GRID ===== */
.month-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap-s);
}
.month-card {
  padding: 20px;
  border: 1px solid rgba(58,28,1,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.month-name {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-main);
}
.month-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  padding: 3px 10px;
  letter-spacing: 0.4px;
}
.badge-ideal    { background: rgba(42,122,42,0.1);  color: #2a7a2a; }
.badge-good     { background: rgba(183,116,35,0.12); color: #a05c10; }
.badge-hot      { background: rgba(192,57,43,0.1);  color: #c0392b; }
.badge-festival { background: rgba(58,28,1,0.08);   color: var(--color-main); }

/* ===== RESPONSIVE for new components ===== */
@media (max-width: 768px) {
  .info-row { grid-template-columns: 1fr; }
  .info-key { border-right: none; border-bottom: 1px solid rgba(58,28,1,0.07); }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .timings-table th, .timings-table td { padding: 10px 14px; }
}
@media (max-width: 480px) {
  .quick-facts { grid-template-columns: 1fr; }
  .stat-grid   { grid-template-columns: 1fr 1fr; }
}

/* ===== BREADCRUMB INSIDE DARK HERO (HI pages) ===== */
.page-hero .breadcrumb-nav {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb li:last-child { color: rgba(255,255,255,0.5); opacity: 1; }
.page-hero .breadcrumb li:not(:last-child)::after { color: rgba(255,255,255,0.4); }

/* ===== CONTENT BODY SPACING ===== */
.section .container > p { margin-top: var(--gap-s); }
.section .container > p:first-child { margin-top: 0; }
.section .container > p + p { margin-top: var(--gap-s); }
.section .container > .section-header + p { margin-top: 0; }
.section .container > .highlight-box,
.section .container > .timings-table-wrap,
.section .container > .info-list,
.section .container > .reach-grid,
.section .container > .stat-grid,
.section .container > .quick-facts,
.section .container > .faq-list,
.section .container > .nearby-grid,
.section .container > .month-grid,
.section .container > .exp-list,
.section .container > .coming-soon-wrap { margin-top: var(--gap-m); }
.section .container > h2,
.section .container > h3 { margin-top: var(--gap-m); }
.section .container > h3 + p,
.section .container > h2 + p { margin-top: var(--gap-s); }

/* ===== HERO SUBTITLE (used in HI/GU inner pages) ===== */
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  max-width: 660px;
  margin-top: var(--gap-s);
}

/* ===== SECTION HEADER — standalone h2 variant (no button/content wrapper) ===== */
.section-header > h2 {
  color: var(--color-main);
}
/* When section-header directly wraps h2 (no .section-header-content), reduce bottom gap */
.section-header:has(> h2) {
  margin-bottom: var(--gap-m);
  display: block;
}

/* ===== INNER PAGE PARAGRAPH SPACING ===== */
.section .container > p {
  line-height: 1.8;
  color: var(--color-main);
}

/* ===== GU NAV — ul/li structure compatibility ===== */
.nav-links .nav-list {
  display: flex;
  gap: var(--gap-m);
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.nav-links .nav-list .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
  cursor: pointer;
}
.nav-links .nav-list .nav-item > a.nav-link {
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links .nav-list .has-dropdown:hover > ul.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links ul.dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links ul.dropdown li { padding: 0; }
.lang-switch {
  display: flex;
  gap: var(--gap-s);
}
@media (max-width: 1024px) {
  .nav-links .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    width: 100%;
  }
  .nav-links .nav-list .nav-item {
    height: auto;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(58,28,1,0.1);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links .nav-list .nav-item > a.nav-link {
    padding: 15px 0;
    justify-content: space-between;
    width: 100%;
    font-size: 1.05rem;
  }
  .lang-switch { display: none; }
}
@media (min-width: 1025px) {
  .lang-switch { display: flex; }
}

/* ===== TIMINGS TABLE MOBILE ===== */
@media (max-width: 600px) {
  .timings-table th:nth-child(3),
  .timings-table td:nth-child(3) { display: none; }
}

/* ===== SECTION GAPS & ELEMENT SPACING ===== */
.section-header {
  margin-bottom: var(--gap-l);
}
.section-header.no-btn {
  display: block;
}
.section-header.no-btn .section-header-content {
  max-width: 100%;
}

/* ===== MOBILE SECTION PADDING ===== */
@media (max-width: 480px) {
  :root { --section-padding: 40px; }
  .page-hero { padding: clamp(50px, 8vw, 80px) 0; }
  .quick-facts { gap: 12px; }
  .fact-card { padding: 16px; }
  .stat-grid { gap: 12px; }
  .stat-item { padding: var(--gap-s); }
  .reach-grid { gap: var(--gap-s); }
  .reach-card { padding: var(--gap-s); }
  .highlight-box { padding: var(--gap-s); }
  .faq-list { gap: var(--gap-s); }
  .exp-list { gap: var(--gap-m); }
}
